Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-18 | Get rid of #ifdef KSH since we don't care about building a V7 style sh and | Todd C. Miller | |
the #ifdef KSH code is required to make a POSIX sh. From Matthias Kilian | |||
2004-12-18 | Use _POSIX_VDISABLE directly instead of assigning it to a variable. | Todd C. Miller | |
2004-12-18 | Remove unused OS dependent #ifdef blocks, #defines and macro abstraction. | Todd C. Miller | |
First step in making the ksh code easier to read. From Matthias Kilian | |||
2004-12-18 | cleanup and indent examples. ok jmc | Jared Yanovich | |
2004-12-18 | Use SIU_TASKMGMT_* defines from scsi_all.h rather than local duplicates. | Kenneth R Westerback | |
2004-12-18 | Add SPI status information unit structure and defines, along with some | Kenneth R Westerback | |
command information unit 'Task Management Flags' defines. From FreeBSD with a few tweaks. For ahd. ok tdeval@ marco@. | |||
2004-12-18 | when parsing an RCS date, adjust the year by 1900 in the tm structure | Jean-Francois Brousseau | |
so we can use this data with asctime(), mktime() and friends spotted and patch by Joris Vink | |||
2004-12-18 | reflect reality. | Marc Espie | |
2004-12-18 | kitchensink mode will proceed if it can't find a dependent package... | Marc Espie | |
2004-12-18 | if we can't find a package, and it's there to solve a dependency, | Marc Espie | |
say so. | |||
2004-12-18 | Add tc_init(9) page, a description of the timecounters. With some | Alexander Yurchenko | |
help from jmc@. | |||
2004-12-18 | document kitchensink option | Marc Espie | |
2004-12-18 | display something when files ought to get moved in -n. | Marc Espie | |
2004-12-18 | ignore size issues in kitchensink pretend mode. | Marc Espie | |
Be consistent: show added files and deleted files if pretending. | |||
2004-12-18 | oops, don't compute fullname unless we know we can. | Marc Espie | |
2004-12-18 | implement special `kitchensink' option for testers. | Marc Espie | |
2004-12-18 | basic code to handle legacy .libs-* packages: figure out what collisions | Marc Espie | |
the new package actually has with old libs. If none is found, we can proceed. Prepare pkg_add to deal with it: switch into replacing mode as soon as something fishy is going on. Todo: code to actually delete replaced libraries. Please note: if you don't play games such as going back to old packages using replace, this code is enough. If you update your whole system and remove old .libs-* package without going back, this code isn't even needed... | |||
2004-12-18 | use tick instead of ticks. thanks to hannes at mehnert dot org. | Reyk Floeter | |
2004-12-18 | Print error codes in panic message. | Brad Smith | |
From NetBSD ok miod@ | |||
2004-12-18 | Use more standard TIOCGSIZE instead of the older TIOCGWINSZ. | Todd C. Miller | |
They are the same thing on OpenBSD anyway... | |||
2004-12-18 | Decrement carp_suppress_preempt when detaching an interface that has | Christopher Pascoe | |
been experiencing output errors. ok mcbride@ | |||
2004-12-18 | Better wording. | Ryan Thomas McBride | |
2004-12-17 | Temporary fix to get IPv6 working again. | Marco Pfatschbacher | |
v6 advertisements are still received the old-fashioned way. ok mcbride@ | |||
2004-12-17 | * increase the initial parse buffer size to 16384 bytes | Jean-Francois Brousseau | |
* grow the parse buffer as required in rcs_gettok() * fix line counting offset tested by Joris Vink and myself | |||
2004-12-17 | Descriptions of 98548A and 98549A were swapped. Also, all models other | Todd C. Miller | |
than 98544 have an 'A' suffix. Verified with hardware in my garage ;-) | |||
2004-12-17 | fix an off-by-one and a case of snprintf() misuse. | Moritz Jodeit | |
ok pjanzen@, henning@ | |||
2004-12-17 | ICMP state entries use the ICMP ID as port for the unique state key. When | Daniel Hartmeier | |
checking for a usable key, construct the key in the same way. Otherwise, a colliding key might be missed or a state insertion might be refused even though it could be inserted. The second case triggers the endless loop fixed by 1.474, possibly allowing a NATed LAN client to lock up the kernel. Report and test data by Srebrenko Sehic. | |||
2004-12-17 | Add watchdog API documentation, from Michael Knudsen, with tweaks. ok ↵ | Jared Yanovich | |
grange jmc | |||
2004-12-17 | knf cleanup, convert old k&r-style functions to ansi-style for a | Reyk Floeter | |
consistent style in sys/net/bpf.c. ok henning@, "looks fine" canacar@ | |||
2004-12-17 | Fix printf in loadfirmware error path. | Alexander Yurchenko | |
2004-12-17 | Reorder code in the ethernet output path, and enhance unicast address | Christopher Pascoe | |
matching in the bridge receive path to make CARP operate correctly on physical interfaces that are participating in a bridge. ok mcbride@ henning@ dlg@ | |||
2004-12-17 | Michael Knudsen <e@molioner.dk> says: | Henning Brauer | |
"I think you messed something up when you committed this." and he is right, I lost a word. Dang! And Thanks :) | |||
2004-12-17 | can postpone grabbing conflict keys. | Marc Espie | |
2004-12-17 | better collision reports. | Marc Espie | |
- in validate_plist, don't re-add a file that exists. - allows the virtual file system to put marks on existing files - use a \$pkgname the first time a file is added (space constraints: don't duplicate the pkgname). - in CollisionReport, first check the vfs, so that we don't look at installed packages when the collision only concerns newly added pkgs. Makes pkg_add -n report collision reports correctly. | |||
2004-12-17 | note the effect of `$' and `~' in configuration file, and how to | Jason McIntyre | |
escape them; based on netbsd -r 1.316, pr 42762, from peter pentchev; | |||
2004-12-17 | slight sync w/ fbsd; | Jason McIntyre | |
ok marc@ jaredy@ millert@ | |||
2004-12-17 | - 5705 does not support jumbo frames | Jason McIntyre | |
- this device supports 5750/5751 (from brad@) ok brad@ | |||
2004-12-17 | .Xr watchdog 4 | Jason McIntyre | |
2004-12-17 | Support for the eap MIDI UART from NetBSD. | Jonathan Gray | |
Tested by serveral people. ok millert@, mickey@ | |||
2004-12-17 | Remember to decrement carp_suppress_preempt when detaching. | Ryan Thomas McBride | |
ok pascoe@ | |||
2004-12-17 | Ensure that 'addrs' is always initialized before use (from Yamamoto | Kenneth R Westerback | |
Takashi). If no broadcast networks are found then just return RPC_CANTSEND. Eliminate perror() calls (suggested by Yamamoto Takashi and seconded by deraadt@, otto@ and millert@) and just let return values speak. ok millert@ | |||
2004-12-17 | rev 1.62 | Brad Smith | |
Possibloe fix for some bge chip revisions taking a long time to reset (e.g., polling for a half-second or more at splnet(), blocking most interrupts, durin an ifconfig down/ifconfig up). Appears to help for a 5704C rev A3, which is the only chip I've ever seen that had even a mild version of the reported problem. rev 1.61 Check for BGE_PCI_PCISTATE register failing to revert on reset. if it occurs, print a message indicating why the reset took so long. From NetBSD | |||
2004-12-17 | add missing braces. | Brad Smith | |
From FreeBSD | |||
2004-12-17 | sync usage | Jared Yanovich | |
manpage: - indent examples - document exit status ok jmc | |||
2004-12-17 | Add a new page about hardware watchdog devices, under a BSD license. | Jared Yanovich | |
From: Michael Knudsen ok various | |||
2004-12-16 | De-reference pointer *after* checking if it is NULL. | Kenneth R Westerback | |
ok millert@. | |||
2004-12-16 | plug some memory leaks on error cases | Jean-Francois Brousseau | |
2004-12-16 | Add rcs_gethead() to easily retrieve the head revision of an RCS | Jean-Francois Brousseau | |
file. | |||
2004-12-16 | make cvs_connect() print an error message and return with an error | Jean-Francois Brousseau | |
code if an unsupported connection method is specified in the root specification, and warn that pserver will never be supported due to its poor security | |||
2004-12-16 | Fix logic botch in dmacomputeipl() introduced in rev 1.14. | Miod Vallat | |