summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_userconf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* options(4), config(8): drop dst/timezone knobs; ok kettenis@ deraadt@ jca@cheloha2019-09-061-29/+1
|
* Rename Debugger() into db_enter().mpi2017-04-301-2/+2
| | | | | | | Using a name with the 'db_' prefix makes it invisible from the dynamic profiler. ok deraadt@, kettenis@, visa@
* Change device locators type from int to long, for the sake of 64-bit portsmiod2015-09-111-57/+64
| | | | | | | | | without proper device trees. Be sure to build and install config(8) and rerun it before attempting to build a kernel. ok kettenis@ deraadt@ jasper@ visa@
* pass size argument to free()deraadt2014-11-031-5/+6
| | | | ok doug tedu
* Set the console input in polling mode before entering ukc.mpi2014-07-231-1/+4
| | | | ok miod@, deraadt@, shadchin@
* use mallocarray where arguments are multipled. ok deraadttedu2014-07-131-2/+2
|
* add a size argument to free. will be used soon, but for now default to 0.tedu2014-07-121-2/+2
| | | | after discussions with beck deraadt kettenis.
* bzero -> memsettedu2014-01-211-3/+3
|
* printf(variable) --> printf("%s", variable)guenther2013-12-121-2/+2
| | | | ok deraadt@
* Kill the nearly-15-years-dead cf_ivstubs field from struct cfdata.matthew2011-06-011-2/+2
| | | | | | | ok miod@, deraadt@ N.B.: If you're following -current, you MUST recompile config(8) and re-config your kernel or else ioconf.c will fail to compile.
* truncated format strings; found by Parfait and gccderaadt2009-06-021-3/+3
| | | | ok maja oga guenther
* Make it possible to disable/enable pseudo devices in UKC, config file andmaja2008-03-241-7/+28
| | | | at config -e. -moj ok deraadt@
* ansi and deregister. No binary change.jsg2005-12-091-64/+27
|
* remove clause 3 and 4. -mojmaja2003-06-021-7/+1
|
* string fixes; tedu okderaadt2003-05-031-2/+2
|
* Try to gracefully handle out of memory conditions.art2002-07-291-1/+5
| | | | | Not that it will help much, but what the hell. noticed by: tedu <grendel@zeitbombe.org>
* Modify lvalue only once between sequence points. ok deraadt@nordin2002-07-251-3/+3
|
* In UKC, when adding a fixed unit device (foo0) by cloning a star devicemiod2002-05-021-5/+30
| | | | | | | | | (foo*), be sure to update all cf_starunit1 fields for related star devices, so that they will not compete for the foo0 probe. This fixes the new sparc bsd.scsi3 behaviour. Tested by brad@ and myself, ok maja@
* Final __P removal plus some cosmetic fixupsmillert2002-03-141-2/+2
|
* First round of __P removal in sysmillert2002-03-141-27/+27
|
* Repair bad printf (-Wall cleanup)miod2001-06-131-2/+2
|
* KNFderaadt2001-02-131-67/+60
|
* If kernel is compile with support for DDB add a ddb command to entermaja2001-02-051-1/+14
| | | | ddb from boot -c. -moj
* Add support for pseudo devices. Based on the new code in config.maja2001-02-041-10/+112
| | | | | | | N.B. this change requires the kernel to be configured with a new config since it need new information from ioconf.c. -moj ok @deraadt
* permit changing flagsderaadt2000-08-081-2/+4
|
* printf %stodd2000-07-061-4/+2
|
* Add enable to history when enable command i used. Reported by itojun@ and David Brownlee <abs@mono.org>. -mojmaja2000-05-191-2/+2
|
* Allow UKC to change tz with 'timezone' command.d2000-01-081-1/+29
|
* save user configuration in some magic buffer, which config -e can read; majaderaadt1999-10-041-8/+87
|
* initialize an incorrectly uninitialized variableart1999-08-171-2/+2
|
* add autoconfig_verbose toggling command to boot_configderaadt1999-04-281-2/+11
|
* cleanup printfsderaadt1998-03-031-11/+10
|
* GCC 2.8 -Wallryker1998-03-031-2/+2
|
* indentderaadt1998-01-041-244/+216
|
* Added support for enable/disable attr value. eg disable irq 10. -mojmaja1998-01-041-38/+105
|
* export struct cfdata cfdata[];mickey1996-11-211-2/+1
|
* Fixed another bug niklas found. -mojmaja1996-09-061-2/+4
|
* Call me "Pedant"! prototype mismatches fixed and unused var removedniklas1996-09-061-2/+3
|
* Added support for add device in subr_userconf. Not perfect but a good start.maja1996-09-061-12/+227
| | | | | This needed changes in config, so if your kernel uses BOOT_CONFIG you need to rebuild config before a new kernel can be built. -moj
* loop till quitderaadt1996-09-021-4/+5
|
* -Wall, -Wstrict-prototypes and some KNF cleanupniklas1996-08-151-38/+70
|
* subr_userconf.c only for BOOT_CONFIG optionderaadt1996-07-271-9/+1
|
* -Wall & -Wstrict-prototype fixesniklas1996-07-021-1/+4
|
* More bugs fixed. Replaced lots of "|" and "&" with the correct "||" and "&&".maja1996-06-271-29/+30
|
* New safer userconf_number, more can be terminated with q, if more than onemaja1996-06-261-65/+118
| | | | device uses the same slots, allocates new space. /moj
* Added support for user modifiable kernel at boot (-c) /majamaja1996-06-231-0/+790