Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-06-28 | disable adw (Advansys Ultra Wide) driver that is now too big for RAMDISK but ↵ | Kenneth R Westerback | |
still fits on RAMDISKB | |||
2000-06-28 | enable adw (Advansys Ultra Wide) driver that is now too big for RAMDISK but ↵ | Kenneth R Westerback | |
still fits on RAMDISKB | |||
2000-06-28 | Remove information that's NetBSD-specific. | Artur Grabowski | |
2000-06-28 | Add some missing words and some other fixes. | Artur Grabowski | |
2000-06-28 | use strtol() in getn(); millert@ and me | Michael Shalayeff | |
2000-06-28 | look in kbd.h to see whether we have configured a keyboard | mjacob | |
2000-06-28 | make the kbd have a kbd.h file (needs-flag) | mjacob | |
2000-06-28 | Use strtol(), not atoi() when converting a decimal string to an integer. | Todd C. Miller | |
That way we can catch typos when people say 'kill -HUP 65Q' and not send the signal to process 65. Theo and myself. | |||
2000-06-28 | Remove outdated comment about having to change kernel config | Artur Grabowski | |
to be able to swap to vnds. This was fixed in 2.6. | |||
2000-06-28 | correct COPTS whacking code; wd@ics.nara-wu.ac.jp | Theo de Raadt | |
2000-06-28 | integrate USE_SSL into real settings; wd@ics.nara-wu.ac.jp | Theo de Raadt | |
2000-06-28 | repair panic message; bugfix@163.net | Theo de Raadt | |
2000-06-28 | Fix path to KerberosIV database files. | Hans Insulander | |
Reported by landy@alumni.caltech.edu. If you run a KDC on OpenBSD you need these two last commits to be backwards- compatible with 2.6 and earlier. (Sorry about that). | |||
2000-06-28 | Fix path to master key file (/etc/kerberosIV/master_key, not /.k) | Hans Insulander | |
Reported by landy@alumni.caltech.edu | |||
2000-06-28 | Fix /usr/libexec/kauthd log formatting bug. | Hans Insulander | |
Reported by mhpower@mit.edu | |||
2000-06-28 | Remove pointless variable. It is set to 0, then returned without modification. | Todd C. Miller | |
2000-06-28 | Make suspend -> eject card -> resume work. | Aaron Campbell | |
On suspend, the apm code calls each function in its powerhook list. This list contains pointers to functions that are to be executed on PWR_SUSPEND and PWR_RESUME. One of these functions is pcmcia_power() which calls xxx_activate() for each PC Card that is connected with the action DVACT_ACTIVATE (where xxx is the name of the driver for the PC Card). On resume, the same thing happens, except the action is DVACT_ACTIVATE. Clearly, if a card is gone when we resume, trying to activate it is a bad idea. This commit adds a pcic_power() function that runs before pcmcia_power(). On resume, it uses pcic_intr_socket() to detect any events that occurred while we were suspended. (I had to split pcic_event_thread() into a threaded part and a non-threaded part, since the thread will not run when we are in interrupt context, but I need the events to be processed before pcmcia_power() runs.) So, by the time pcic_power() is through, all events that occurred during suspend have been processed, and pcmcia_power() will not try to activate cards that are not there since they have already been completely and properly detached. Note that event handling for card removals first calls the deactivate functions on the card then the detach functions. When we suspend, apm does the deactivate for us. So on resume, if we detect a card has been removed, we skip the deactivation step and just detach. We use the DVF_ACTIVE bit to determine whether or not deactivation has already occurred. Deactivating a device that has already been deactivated causes a panic. | |||
2000-06-28 | restrict editrc lookup to home directory, thanks kris@freebsd.org. ok deraadt@ | Dug Song | |
2000-06-28 | prevent endless looping on looping fat chains | Michael Shalayeff | |
2000-06-28 | Don't call the drivers' xxx_activate() function directly -- use the system | Aaron Campbell | |
config_activate() and config_deactivate() routines instead. This way, the DVF_ACTIVE bit gets updated appropriately. | |||
2000-06-28 | document signal 0 | Theo de Raadt | |
2000-06-28 | -U option. | Oleg Safiullin | |
Does nothing, just for compatibility with aout ldconfig. | |||
2000-06-28 | Improve remove_search_dir(), avoid memory leak. | Oleg Safiullin | |
Add support for -U option: Unconfigure directories specified on the command line or remove inaccessible directories from search path if no directories spec- ified. This option cannot be used with -m. - this option helps to correctly pkg_delete packages like postgresql, mysql (with shared libs in package's own directory). ok espie@ | |||
2000-06-28 | unsigned -> unsigned int (implicit int is deprecated) | Marc Espie | |
hv is a u_int32_t. Add __BEGIN_DECLS/__END_DECLS Remove unused macro (hash_to_info). Add documentation for the hash functions. | |||
2000-06-28 | Fix stupid bug in argument handling. Problem found by fries@ | Marc Espie | |
Jason, that's a candidate for stable... | |||
2000-06-28 | kldload ng_ether if we need to under FreeBSD. | brian | |
2000-06-28 | Add scrt0.o which was just added to the powerpc port. (should this file be mi?) | Dale S. Rahn | |
2000-06-28 | Powerpc was missing the scrt.o startup file. now used by the ramdisk instbin. | Dale S. Rahn | |
also scrt does not support c++ ctors/dtors thus does not require crtbegin.o/crtend.o which it normally does. | |||
2000-06-28 | While I'm reading this, complete the NAME section and fix a typo. | Aaron Campbell | |
2000-06-27 | nab latest CellServDB from arla; made sure all our local changes are in it | Todd T. Fries | |
per art's recommendation. Now we are uptodate :-) | |||
2000-06-27 | Move ac97 register defines into ac97.h | Artur Grabowski | |
2000-06-27 | Make this driver work. When I ported it from FreeBSD, somehow a line got left | Aaron Campbell | |
out. :-( It was never noticed until now since I didn't have an actual D-Link 550TX card to test with. Thanks to Gardner Cohen for sending me one of these. | |||
2000-06-27 | change IP for citi.umich.edu; from rees@umich.edu | Niels Provos | |
2000-06-27 | forward declaration of struct timespec to avoid warning | Artur Grabowski | |
2000-06-27 | Slight optimization of wakeup. | Artur Grabowski | |
2000-06-27 | Tyop | Artur Grabowski | |
2000-06-27 | sync | Theo de Raadt | |
2000-06-27 | initialize result. this fixes the recent problem that makes ftp coredump | Federico G. Schwindt | |
if epsv4 is disabled. problem reported by price@netdoor.com on misc. | |||
2000-06-26 | fix pasto; noted by art | Hugh Graham | |
2000-06-26 | timeout is in seconds, not ticks. | Artur Grabowski | |
2000-06-26 | New timeouts. | Artur Grabowski | |
2000-06-26 | Instead of using an ugly hack with timeouts to wake up the process | Artur Grabowski | |
waiting for resources, use the built-in facilities in tsleep. | |||
2000-06-26 | Convert nfs_timer to new timeouts. | Artur Grabowski | |
2000-06-26 | Make the check for !usermode in syscal a DIAGNOSTIC. | Artur Grabowski | |
2000-06-26 | Make the definition of tcpstat in tcp_var.h extern. | Artur Grabowski | |
2000-06-26 | Convert to new timeouts. | Artur Grabowski | |
2000-06-26 | MaxStartups: limit number of unauthenticated connections, work by theo and me | Markus Friedl | |
2000-06-26 | talk about legacy data and swap encryption as suggested by theo | Niels Provos | |
2000-06-26 | let svnd deal with sparse files, okay art@ deraadt@ | Niels Provos | |
2000-06-26 | various additions and cleanups written in denver airport | Theo de Raadt | |