summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config
Commit message (Collapse)AuthorAgeFilesLines
* The ioconf.c is no longer generated.ru2004-12-161-4/+1
| | | | Submitted by: Craig Rodrigues
* Allow multiple devices to be specified on one device / nodevice line.des2004-10-241-7/+27
| | | | | | Also allow "device" / "nodevice" to be spelled "devices" / "nodevices". MFC after: 2 weeks
* If the file specified in an "include" line does not exist in the currentdes2004-10-241-1/+9
| | | | | | | | directory, and its name does not begin with a period or a forward slash, go look for it in ../../conf. Wished for by: scottl MFC after: 2 weeks
* We accept both "option" and "options" so also accept both "nooption"phk2004-10-121-0/+1
| | | | and "nooptions".
* Kill count device support from config. I've changed the last fewpeter2004-08-306-205/+12
| | | | | | | | | | | | | | | | | remaining consumers to have the count passed as an option. This is i4b, pc98/wdc, and coda. Bump configvers.h from 500013 to 600000. Remove heuristics that tried to parse "device ed5" as 5 units of the ed device. This broke things like the snd_emu10k1 device, which required quotes to make it parse right. The no-longer-needed quotes have been removed from NOTES, GENERIC etc. eg, I've removed the quotes from: device snd_maestro device "snd_maestro3" device snd_mss I believe everything will still compile and work after this.
* Per letter dated July 22, 1999, delete clause 3 from code directlyimp2004-08-077-28/+0
| | | | from Berkeley.
* Static device counts will not be supported in 6.x so place the generatedbrooks2004-06-301-0/+2
| | | | | | macros (N<driver>) under BURN_BRIDGES. Discussed with: peter, imp, scottl, ...
* Assorted markup, spelling, and grammar fixes.ru2004-06-161-2/+3
|
* Document the "files" directive.cognet2004-05-131-0/+4
| | | | Reminded by: jmg
* Fix a few glitches in my previous commit.cognet2004-05-112-3/+2
| | | | This makes config(8) WARNS?=6 compliant.
* Add a new "files" directive, which allows to include a files.foo file directlycognet2004-05-096-28/+62
| | | | | from a kernel config file. Bump config version to reflect this change.
* Whitespace nit.des2004-02-171-1/+1
|
* Fixed spurious syntax errors for including files that don't begin withbde2003-11-141-3/+4
| | | | | | | | | | a SEMICOLON token (a newline or semicolon, or one of these preceded by a comment and/or whitespace). The input stream was switched too early and the parser was expecting a SEMICOLON in the included file instead of after the filename in the include directive. Submitted by: Stefan Farfeleder <stefan@fafoe.narf.at> Kept alive by: Adam C. Migus <adam@migus.org>
* Add a reference to config(5) in the SEE ALSO section.simon2003-08-061-0/+2
| | | | | Suggested by: dcs Approved by: ceri (mentor)
* Eliminate non-existent word.jkoshy2003-07-131-1/+1
| | | | Submitted by: jwd
* "towards" -> "toward". According to dictionary.com, the use of "towards"jkoshy2003-07-081-2/+2
| | | | | | | | | | is common in British English, while "toward" is the preferred form in American English. Use the American form for consistency. Correct the date on the manual page. Submitted by: Tom Rhodes <trhodes@freebsd.org>, underway@comcast.net (Gary W. Swearingen)
* Disallow multiple 'machine' directives in a kernel configurationjkoshy2003-07-061-0/+3
| | | | | | file. Reviewed by: ru, bde
* New section 5 manual page detailing our kernel configuration filejkoshy2003-07-061-0/+343
| | | | | | | format. Reviewed by: Ruslan Ermilov <ru@freebsd.org>, Jens Schweikhardt <schweikh@schweikhardt.net>
* Not particularly pretty hack to generate rules to make .ln filesmarkm2003-06-161-2/+10
| | | | | | | from .c files. Actually, this is overkill, as the .ln file targets are assumed from .? (any) files. This is not a problem in practice, merely a bit untidy, as the linting rules DTRT. See the sys/conf/* and sys/mk/* files for usage.
* Check the return values of opendir() and unlink() in cleanheaders().tmm2003-06-121-2/+4
| | | | If unlink() fails, just print a warning for now.
* Best we can do is WARNS=1 due to lex.obrien2003-06-111-0/+1
|
* Do not refer to the non-existant BDECFLAGS.obrien2003-06-111-1/+0
|
* Don't convert the kernel ident to uppercase when writing the Makefile.des2003-04-241-1/+1
|
* Grammar fixbrueffer2003-04-201-1/+1
| | | | | | PR: 51164 Submitted by: Jeff Ito <jeffi@rcn.com> MFC after: 3 days
* Bump the config version to force people to upgrade their config(8)phk2003-04-151-1/+1
| | | | | so the fix for emitting multiple instances of .o files will prevent link errors on LINT.
* Avoid emitting duplicate makefile entries.phk2003-04-121-1/+4
|
* Print FYI messages on stderr. Previously, they were printed on stdout,des2003-03-091-1/+3
| | | | | | | | | and due to buffering they would sometimes come out after the actual error message when mkheaders() failed due to an unknown device, so you'd get an error messages followed by 20 or 30 lines of harmless warnings. There are lots of other warning messages in config(8) that are printed on stdout, but these were the most egregious (at least with LINT).
* Implemented "nooption" and "nomakeoption" config(8) tokens.ru2003-02-262-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | Fixed memory leak in the "nodevice" option implementation. Use these instead of sed(1) in MD NOTES. Use a single makefile (sys/conf/makeLINT.mk) to generate LINT for all architectures. (Previous versions missed the LINT dependency on Makefile, and i386 version also missed the dependency on ${NOTES}.) Fixed bugs in the previous NOTES conversion using the "nodevice" token and sed(1): - i386 LINT lost "device pst". - pc98 LINT lost SC_*, MAXCONS and KBD_DISABLE_KEYMAP_LOAD options, and got needless DPT_* options. - Added nooptions PPC_DEBUG, PPC_PROBE_CHIPSET, KBD_INSTALL_CDEV to sparc64 LINT so that it has a chance to config(8). This basically returns us to where we were before.
* Allow for boolean make options (``makeoptions NO_MODULES'').ru2003-02-211-1/+4
| | | | Fixed the potential bug in rmopt().
* Bring the suggested command for extracting a configuration file from theceri2003-02-181-1/+1
| | | | | | | | kernel into line with that suggested in LINT. PR: bin/48157 Submitted by: naddy MFC After: 4.8
* Implemented a simple "nodevice" config(8) command that cancelsru2003-02-152-1/+49
| | | | | | | the effect of the "device" command, and use it to generate the OLDCARD from GENERIC. Suggested by: bde
* Convert to using <sys/queue.h> macros.ru2003-02-156-85/+76
|
* Remove this Makefile, these docs are built by the Makefiles in ↵trhodes2003-02-011-11/+0
| | | | src/share/doc/smm.
* Uniformly refer to a file system as "file system".ru2002-12-121-2/+2
| | | | Approved by: re
* mdoc(7) police: Removed redundant .Ns calls.ru2002-08-131-2/+2
|
* Remove stray function prototype. I wrote and removed this function butpeter2002-07-211-1/+0
| | | | | | forgot the prototype. Submitted by: dd
* Check for missing static unit 'count' declarations as well.peter2002-07-211-7/+13
|
* Check that we are not supplying 'device foo N' to devices that do not takepeter2002-07-211-2/+27
| | | | a statuc unit count.
* The .Nm utilitycharnier2002-07-141-8/+12
|
* Moved the setting of all profiling-related variables except the key onebde2002-07-132-12/+8
| | | | | | | | (PROFLEVEL) to kern.pre.mk so that it is easier to manage. Bumped config version to match. Moved the check for cputype being configured to a less bogus place in mkmakefile.c.
* We don't need to hit the user over the head so strong now that we'veobrien2002-07-061-1/+0
| | | | | | fixed all the known warnings suffiently to not require NO_WERROR. Ok'ed by: peter
* Clean up hex() and octal() to return and work with unsigned integers sincejmallett2002-06-211-8/+8
| | | | | they scan values of unsigned types, and since they do not need otherwise, have them take const char * arguments.
* Consistancy check: s/file system/filesystem/gtrhodes2002-05-161-2/+2
|
* Add a hint about -DNO_WERRORpeter2002-02-251-0/+1
|
* Commit some infrastructure for turning on -Werror for kernel compiles.peter2002-02-203-4/+13
| | | | | | It doesn't actually do it yet though. This adds a flag to config so that we can exclude certain vendor files from this even when the rest of the kernel has it on. make -DNO_WERROR would also bypass all of it.
* Bump configvers for different handling of maxusers.peter2001-12-141-1/+1
|
* Allow maxusers to be specified as 0 in the kernel config, which willdillon2001-12-091-2/+1
| | | | | | | cause the system to auto-size to between 32 and 512 depending on the amount of memory. MFC after: 1 week
* mdoc(7) police:ru2001-10-261-38/+49
| | | | | | - Bump document date. - Remove hard sentence breaks. - Fix markup.
* Use includes to get prototypes for hints and env arrays.peter2001-09-171-0/+8
| | | | Submitted by: bde
* Enable hardwiring of things like tunables from embedded enironmentspeter2001-08-275-14/+61
| | | | that do not start from loader(8).
OpenPOWER on IntegriCloud