summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-09-06MD Installation notes updates for 3.4, 1/3Miod Vallat
This mainly includes an hopefully helpful section about i386 upgrades, which I urge knowledgeable people and native english speakers to check out, in order to polish it soon enough.
2003-09-06oopsMiod Vallat
2003-09-06.Xr;Jason McIntyre
2003-09-06Various cosmetics.Miod Vallat
2003-09-06Add mvme88k to the "allarchs" target.Miod Vallat
2003-09-06Add wi_detach, use it in pcmcia so that the shutdownhook is properly removed.Dale Rahn
ok miod@ millert@ deraadt@
2003-09-06Disable AFS for m88k again - it's unlikely that libpthread/arla-lwp supportMiod Vallat
gets debugged in time for the release.
2003-09-06- interval specified with -i flag, not -wJason McIntyre
- no -M or -N options - sync usage() and SYNOPSIS from Jeff Ito (PRs 3452 and 2453)
2003-09-06fix a few errors; jmc@ okAnil Madhavapeddy
2003-09-06Fix boot -a, add protected cnpollc(). ok deraadt@Dale Rahn
2003-09-06Large cleaning of exception handling:Miod Vallat
- faster code paths in eh.S, especially for 88110 cpus - do not service data access exceptions more than one time; also, be sure that interrupts are disabled while servicing them. - cleanup the 88110 trap handler in the same way the 88100 flavour has been cleaned recently. This spotted two bugs, which are fixed there as well: - add systrace support to the 88110 syscall code - add emulation support to the 88100 syscall code
2003-09-06restore undocumented -u# support for the old schoolers. :)Ted Unangst
noticed by itojun@, ok deraadt@
2003-09-06zap ?; jeffi@rcn.comTheo de Raadt
2003-09-06sync in fingerprints from p0f v2.0 release. a little bit sparse on the Win95Mike Frantzen
fingerprints, please go to http://lcamtuf.coredump.cx/p0f-help/ with any and all Win95 boxes. thanks!
2003-09-05cd(4) supports ATAPI as well as SCSI devices; from fgs@Jason McIntyre
ok henning@ millert@ miod@
2003-09-05add a few fingerprints from J.Smith <lbalbalba AT hotmail.com> thanks!Mike Frantzen
2003-09-05Solaris 2.5.1 fingerprint. pcap from Alec.Thomas AT optus.net.au. thanks!Mike Frantzen
2003-09-05spacing;Jason McIntyre
2003-09-05KNF nit pointed out by theoHenning Brauer
2003-09-05no longer warn on '0' bound size, add new test for the negative caseAnil Madhavapeddy
2003-09-05dont error out when the input file is a symlink AND output goes to stdoutHenning Brauer
inspired by PR3409, ckuethe@ualberta.ca, tho fixed differently matches gnu gzip behaviour ok millert@ tedu@ deraadt@
2003-09-05Stop the bounds checker warning on a bound of 0, so now it only triggersAnil Madhavapeddy
on negative values. Suppresses some warnings on code which is useless but legal. deraadt@ ok
2003-09-05Never enable interrupts just before processing data exceptions, but ratherMiod Vallat
afterwards... and only if this is a wise thing to do!
2003-09-05Do not clean twice during make cleandirMiod Vallat
ok deraadt@
2003-09-05one check return from sysconf, one off by one vnsprintf, and one missing free.Ted Unangst
all from Patrick Latifi in pr3414
2003-09-05replace some groff macros with -mdoc versions;Jason McIntyre
a .br survives until i work out what to do with it...
2003-09-05sync those shiny little markers telling you which drivers are (not)Henning Brauer
on which floppy with reality; ok miod@
2003-09-05-t missing in synopsisHenning Brauer
pr3444 jeffi@rcn.com ok jmc@
2003-09-05document -w timeout; from cedric@Jason McIntyre
ok deraadt@
2003-09-05add some spacing after displays;Jason McIntyre
2003-09-05correct an .Sx;Jason McIntyre
2003-09-05macro cleanup and some typos;Jason McIntyre
2003-09-05Do not drop the user into DDB without a really, really good reason.Miod Vallat
2003-09-05remove some erroneous backslashes, and add some indent;Jason McIntyre
2003-09-05socket leak on error paths. from Patrick Latifi. ok deraadt@ ho@Ted Unangst
2003-09-05- add gzcat to SYNOPSIS and DESCRIPTIONJason McIntyre
- add -g flag to zcat in SYNOPSIS - .Nm cat -> .Xr cat 1 from myself and tedu@
2003-09-05more spacing, less macro;Jason McIntyre
ok miod@
2003-09-05typo from naddy@;Jason McIntyre
2003-09-05we kind of need this new file from canacarTheo de Raadt
2003-09-05add a null compressor from canacar@ that lets gzcat work with uncompressedTed Unangst
files. also introduce SMALLness that removes null and Z compressors to save floppy space. ok deraadt@
2003-09-05Put in workaround for alpha so that non-lazy binding seems to work,Dale Rahn
however it is using some of the lazy binding values. With this patch LD_BIND_NOW=yes make does not core. ok deraadt@
2003-09-05fp leak. from Patrick Latifi. ok beck@ deraadt@Ted Unangst
2003-09-04typo.Thierry Deval
ok jmc@
2003-09-04put escapes in the right place;Jason McIntyre
(i.e. stuff I got wrong the first time, or missed) this includes some .Cd's with missing quotes and .Nm abuse in man4;
2003-09-04update lists of packages for 3.4Peter Valchev
2003-09-04typo;Jason McIntyre
2003-09-04- document LD_BIND_NOWJason McIntyre
- new sentence, new line - comment out comments patch from (and ok) drahn@
2003-09-04fix crash and add new icmpnames. based on pr3439. some input fgsch@.Ted Unangst
ok deraadt@ fgsch@
2003-09-04Fix W^X mistake. If the dynamic linker is workin in non-lazy mode, itDale Rahn
should still mprotect the GOT and PLT as appropriate. ok deraadt@ miod@
2003-09-04Symbol cache for GOT lookup. When a symbol is found it is saved in a cacheDale Rahn
for future lookups in the same GOT relocation table. Uses static buffer for small symbol tables, mmap for larger ones. ok deraadt@