Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-29 | Mention that some alpha models only work from serial console. | Miod Vallat | |
2001-09-29 | Merge remaining local changes, correct build issues | Thorsten Lockert | |
2001-09-28 | Merge local changes; work in progress | Thorsten Lockert | |
2001-09-28 | and mention XP1000 in the right place | Theo de Raadt | |
2001-09-28 | Latest from Cyclic Software | Thorsten Lockert | |
2001-09-28 | Latest from Cyclic Software | Thorsten Lockert | |
2001-09-28 | Hack to work around bootpaths like: | Jason Wright | |
bootpath: /pci@1f,4000/ide@3,0/ata@0,0/cmdk@0,0 The val[0] of ata appears to be the channel number, and cmdk is disk (cmdk@channel,disk) | |||
2001-09-28 | cold is now staticly initialized. | Miod Vallat | |
2001-09-28 | Variable declarations in .h files without extern keywords suck. | Miod Vallat | |
Especially when not all of these variables are used. | |||
2001-09-28 | Typos of the day. | Miod Vallat | |
2001-09-28 | More cleaning, some style changes. | Miod Vallat | |
2001-09-28 | "sys/foo.h" -> <sys/foo.h> | Miod Vallat | |
2001-09-28 | No need duplicating defines. | Miod Vallat | |
2001-09-28 | add pidfile(3) prototype | Jakob Schlyter | |
2001-09-28 | multiple calls to pidfile(3) are actually ok, but there are problems if you ↵ | Jakob Schlyter | |
change the basename | |||
2001-09-28 | add pidfile(3) - write a daemon pid file. ok deraadt@, millert@. | Jakob Schlyter | |
2001-09-28 | sparc64 has shared libs | Jason Wright | |
2001-09-28 | Typo; spotted by Jussi Laako <jussi@jlaako.pp.fi> | Heikki Korpela | |
ok mickey@, dm@ | |||
2001-09-28 | bug: read user config first; report kaukasoi@elektroni.ee.tut.fi | Markus Friedl | |
2001-09-28 | proper values for long double type (from NetBSD) | Jason Wright | |
2001-09-28 | proper values for ieee rounding modes (from NetBSD) | Jason Wright | |
2001-09-28 | Almost half of this file was ifdef DEBUG. Everybody knows that debugging | Artur Grabowski | |
code is just there for debugging so it doesn't need to be pretty or really correct. In most cases it's just a bunch of printfs that only the author understands for two hours after writing them. Remove all that noise to make this file actually readable and as a bouns fix a bug where any user could crash the kernel (not really crash, but triggering ddb from userland is equivalent to crash in my world even if you can just press 'c'). | |||
2001-09-28 | Support underscores in macro names and document it in the man page. | Daniel Hartmeier | |
2001-09-28 | Fix a DIAGNOSTIC check. | Artur Grabowski | |
2001-09-28 | Random cleanup (I don't like Ms in my tree). | Artur Grabowski | |
2001-09-28 | QBITS is always defined, no point in having all those cofusing ifdefs. | Artur Grabowski | |
2001-09-28 | Don't spam the console with userland alignemnt errors. | Artur Grabowski | |
2001-09-28 | bzero private key after loading to smartcard; ok markus@ | Damien Miller | |
2001-09-28 | Remove debugging scaffolding | Marc Espie | |
2001-09-28 | Fix segv when smartcard communication error occurs during key load. ok markus@ | Damien Miller | |
2001-09-28 | Redundant prototypes. | Artur Grabowski | |
2001-09-28 | upgrade twe to untested, add ami to broken | Michael Shalayeff | |
2001-09-28 | semicolon -> colon | Jan-Uwe Finck | |
detected by mihaak@lecturax.tmfweb.nl | |||
2001-09-28 | zs serial now works on some systems. Does not work with modems | Dale Rahn | |
on some newer system due to power control issues. Has carrier detect problems with incoming (getty) on most/all systems. Outgoing seems to work fine (unless modem power issues prevent). | |||
2001-09-28 | Commit a ugly, widespread change. | Dale Rahn | |
Problem: no MI soft interrupts. Bad solution: use old hack that was never fully implemented to hook in zs soft interrupts. This allows zs to work almost reasonably. Still has issues with getty (carrier detect) and modems on newer machines (power control). Post 3.0 this must be cleaned up with real soft interrupts. | |||
2001-09-28 | update sizes | Jason Wright | |
2001-09-28 | remove dups w/ conf.h | Michael Shalayeff | |
2001-09-28 | sync;sync;sync | Jason Wright | |
2001-09-28 | remove dups w/ conf.h | Michael Shalayeff | |
2001-09-28 | move cdev_decl(pf) into it's proper place, kill cdev_decl(ipl) at the same time | Michael Shalayeff | |
2001-09-28 | Use the new KERN_SYSVIPC_*_INFO sysctls; simonb@netbsd.org | Todd C. Miller | |
2001-09-28 | sysctl() support for getting the SYSV *info structs and the associated | Todd C. Miller | |
SYSV structs. To be used by ipcs(1). Based on work by simonb@netbsd.org | |||
2001-09-28 | more emacs regexps in -g mode. Ok millert@ | Marc Espie | |
With this, some autoconf 2.52 scripts are now working completely. | |||
2001-09-27 | Overhaul /tmp handling; collaboration with solar@openwall.com | Todd C. Miller | |
o nuke cpmod stuff since we have no cpmod(1) o don't allow user togzexe sed (it is a dependency) o repair gzexe of files with whitespace in the name o use mktemp -d and make a temp dir, not temp file which allows the basename of the command that is actually executed to have the expected value instead of a mktemp name. | |||
2001-09-27 | Use POSIX :space: character class as suggested by solar@openwall.com | Todd C. Miller | |
Also add a sepatate case for --suffix= to keep the regex exact | |||
2001-09-27 | Disable getty on tty00 for macppc, on most machines this will be | Dale Rahn | |
connected to a modem. | |||
2001-09-27 | weird testcases... | Marc Espie | |
2001-09-27 | pass all properties of builtins when defn... | Marc Espie | |
2001-09-27 | Two workarounds for the zs serial driver. | Dale Rahn | |
Enable Interrupts (recieve/status) initially. Code currently does not enable them elsewhere. Use a timeout to scedule the soft interrupt, since no MI soft interrupt scheme works yet. This will have issues with high receive rates. | |||
2001-09-27 | Simplify comstart a bit. | Artur Grabowski | |