summaryrefslogtreecommitdiff
path: root/usr.sbin/config
AgeCommit message (Collapse)Author
2001-01-31Dont write kernel if nothing has changed. ok @deraadt. -mojMats O Jansson
2001-01-25alpha is (will be) ELF.Artur Grabowski
2001-01-25Make this elf-size independent.Artur Grabowski
config -e works on my alpha.
2001-01-24Include err.h for warnx.Artur Grabowski
2001-01-24NULL-terminate the nlistArtur Grabowski
2001-01-23KNF stuff which angelos is too much of a baby to get rightTheo de Raadt
2001-01-23Allow entries like "foo at bar enable", which override previousAngelos D. Keromytis
entries like "foo bar bar disable"; useful for kernel config lamers like myself who don't like to use 'config -e' or 'bsd -c' to manually enable USB. Tested with uhci/ohci on i386.
2001-01-15Fix bug that sometime ignored first command in -e mode. -mojMats O Jansson
2001-01-05Generate Makefiles that don't get confused if the source layout (withAngelos D. Keromytis
regards to depth and symbolic links) is not what's expected.
2000-12-06Add a 'saving modified kernel' message. (deraadt@ ok)Hakan Olsson
2000-11-15Last commit introduced extra space (lame)Angelos D. Keromytis
2000-11-15Fix bug introduced with overriding of pseudo-devices.Angelos D. Keromytis
2000-10-29Eek, typo in my last commit; noticed by huynh.29@osu.eduAaron Campbell
2000-10-28Close PR 1419, use modified patch (original from peter.galbavy@knowledge.com)Angelos D. Keromytis
2000-09-30Some format string problems that were missed during initial audit; deraadt@ andAaron Campbell
millert@ ok
2000-08-08permit changing flagsTheo de Raadt
2000-07-07document timezone command, as in boot_config(8)Theo de Raadt
2000-05-31Remove hard sentence breaks.Aaron Campbell
2000-05-29More text about config file format, some of it unfortunately at theAngelos D. Keromytis
expense of Theo's artistic expression.
2000-05-29start to describe config file formatTheo de Raadt
2000-04-12Trailing whitespace begone!Aaron Campbell
2000-04-04more details, and a UKC(8) linkTheo de Raadt
2000-03-19Remove hard sentence breaks. Add $OpenBSD$ tags where appropriate. Some otherAaron Campbell
cleanup along the way.
2000-03-14Suffix "i.e." and "e.g." with a comma. Just another really picky man pageAaron Campbell
commit, as we want our documentation to be as consistently formatted as possible (it's getting there :-)).
2000-02-27-Wall on alphaTheo de Raadt
2000-01-08Allow UKC to change tz with 'timezone' command.David Leonard
2000-01-04Add rmoption/rmoptions; useful for people who want a slightlyAngelos D. Keromytis
modified version of GENERIC.
2000-01-03Use warnx() instead of the error() kludgeAngelos D. Keromytis
2000-01-03Allow for duplicate maxusers definitions (so one can include a GENERICAngelos D. Keromytis
and use a different value). config will print a warning that there has been a duplicate entry, and will use the second definition. More generally, config will end up using the last maxusers definition in the config file.
1999-11-27re-enable config without arguments; fix usageDavid Leonard
1999-10-17Remove some redundant .Pp.Aaron Campbell
1999-10-16Fix typo.Aaron Campbell
1999-10-16Improved config(8) man page; deraadt@ okAaron Campbell
1999-10-12document config -e. -mojMats O Jansson
1999-10-05compileTheo de Raadt
1999-10-04config -e support; ukc from maja@Theo de Raadt
1999-10-02extraloc[] support; majaTheo de Raadt
1999-07-22document kernel building; stolen from afterboot.8Theo de Raadt
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-04-18Make -W -Wall happier.Marc Espie
Classical modern C type-checking, signed vs. unsigned.
1999-03-17i386, sparc, hp300 not vax, tahoe, hp300Todd C. Miller
1999-02-24We are OpenBSDArtur Grabowski
1999-01-19Retry sane probe ordering, i.e. ordered like the attachmentsNiklas Hallqvist
found in the various config files.
1998-11-08usr.sbin/ man page repairs, a-iAaron Campbell
1998-06-27No way, not yet. You did not even test, did you, davidTheo de Raadt
1998-06-12warn when ../../../ appears in include directive, since includes are ↵David Leonard
relative to srcdir and kludge code is still active.
1998-05-25missing :; tvTheo de Raadt
1998-05-18understand makeoption as makeoptionsArtur Grabowski
1998-05-14more careful scanfTheo de Raadt
1998-05-11Formerly reuse of unit numbers of detached devices was impossible, withNiklas Hallqvist
this change starred devices will search from the first allowed unit for such devices and up for free units when attaching. This means you have to rerun config(8) before yopu compile current kernels. FYI, this is a necessity when doing PCMCIA flashcard reading, otherwise you soon run out of unit numbers. I have also added a way to detach all children of a certain device, used in a new PCMCIA framework to come, so you detach all functions on a single PCMCIA card when pulling it out. A few bugs wrt starred devices fixed in the autoconfig_verbose code too. Last and least, fixed some panic messages.