cjs
957075b57b
Change ipsec.conf not to be world-readable and nodiff, so we don't expose keys
...
if they happen to be in that file. Also add /etc/racoon stuff.
2003-04-16 03:16:38 +00:00
briggs
755a56f62f
Protect use of __RCSID() with a check to ensure that it's defined.
...
Suggested by Ian Lance Taylor on tech-userlevel@ to help cross-compilation
on Red Hat 7.3.
2003-04-16 01:32:07 +00:00
darrenr
0b2e3c6317
add missing setting of b_error (thanks Manuel)
2003-04-16 00:07:17 +00:00
augustss
44a844916d
Regen.
2003-04-15 23:15:47 +00:00
augustss
155de892db
Another VIA device.
2003-04-15 23:15:23 +00:00
augustss
b855d8716e
Add another VIA CPU-AGP bridge.
2003-04-15 23:13:50 +00:00
tron
78a6a01cac
Pullup short mbuf in wm_tx_cksum() instead of dropping it which fixes
...
PR kern/21190 by myself. Jason R. Thorpe code reviewed the changes.
2003-04-15 22:52:40 +00:00
dsl
c327a133c6
Significantly faster memcpy/memmove/bcopy and memset/bzero
2003-04-15 22:49:50 +00:00
dsl
7c8e4cdaea
Add interface to boot password checking code that takes password parameter.
2003-04-15 22:26:42 +00:00
rjs
c0cc8d30c1
Regen.
2003-04-15 21:43:56 +00:00
pooka
f6df7f31f2
where __RCSID is not defined (some cross hosts), use FILE_RCSID instead
2003-04-15 21:36:18 +00:00
rjs
dd9495f867
Add ID for ITE IT8152 companion chip.
2003-04-15 21:32:28 +00:00
thorpej
b2beaa1fbd
wm_tx_cksum(): Set the initial offset correctly for packets using
...
802.1Q encap.
2003-04-15 21:12:24 +00:00
wiz
571cc9f1c1
Dd month argument should not be abbreviated.
2003-04-15 20:40:28 +00:00
jdolecek
6080567943
bump date, and fix typo in macro name (.Nx, not .Nm)
2003-04-15 19:49:30 +00:00
jdolecek
938f344d52
add POSIX.2 patchchk(1) utility - check pathnames
...
from FreeBSD via Jonathan Perkin
fixes PR standards/11198 by Ben Harris
2003-04-15 19:46:38 +00:00
jdolecek
32fe26329b
fix a minor formatting bug - use "@var{fmt}, @var{expr-list}",
...
not "@var{fmt, expr-list}"
probably only matters when the output is something else than info
file
2003-04-15 19:41:16 +00:00
nathanw
ad743e234b
Add a missing paren.
2003-04-15 19:14:58 +00:00
darrenr
8745a98a43
Don't forget to increment the iterator when going around a loop
2003-04-15 19:07:37 +00:00
darrenr
543eb62ec5
Add a note to "retry" option about device requirements.
2003-04-15 18:39:58 +00:00
darrenr
8dac8843a5
Implement (and document!) "dkctl <dev> badsector .." to `manage' the bad
...
sector information in the kernel. Doing this uncovered some shortcomings
that should have been pretty obvious with the code committed prior, addressing
the major kludge with a new struct - disk_bacsecinfo to be passed into
DIOCBSLIST.
2003-04-15 18:27:26 +00:00
dogcow
277607fced
fix typos
2003-04-15 17:42:44 +00:00
uwe
c7bbfa679e
Mark 'ram' MEMORY as allocatable instead of explicitly placing
...
sections into it. This also ensures that sections, not mentioned in
the linker script (currenty - link_set_*), end up in the correct
place. Otherwise kernel panics very early, trying to access link_set
info.
2003-04-15 16:29:12 +00:00
dsl
8c4da2e486
Use htole32 so host endianness independant
2003-04-15 14:35:57 +00:00
dsl
ed45ba76c7
Change the way -o options are parsed, now done in MI code with a check after
...
all the options have been processed that they are supported my the
specific system.
Add i386 MD options (console, password, speed and timeout)
(Approved by christos and lukem)
2003-04-15 14:22:13 +00:00
darrenr
f4965045a0
Automatically build up a list of bad sectors from failed read operations and
...
prempt read operations on matching regions with a failure rather than waiting
for the device to return a failure. The I/O operation must have already failed
MAXRETRIES times before being added to the list - this can generally take up
to 12 seconds.
List is made accessible to userspace via DIOCBSLIST and DIOCBSFLUSH.
2003-04-15 14:11:00 +00:00
dsl
57d5f20055
Add definitions for i386 boot parameters
2003-04-15 13:59:35 +00:00
yamt
0012a58814
fix indent.
2003-04-15 13:51:11 +00:00
yamt
63de87c34b
remove line-wrapping that is no longer needed.
2003-04-15 13:48:40 +00:00
skrll
ab7df78c6d
ANSIfy proc_unstop
2003-04-15 12:11:25 +00:00
itojun
3fbac68bea
use snprintf. there are more...
2003-04-15 08:20:17 +00:00
itojun
01757d86d6
make char array bigger where it seems too small and may overrun.
2003-04-15 08:07:10 +00:00
itojun
faef962caf
need 12 chars for %d; deraadt
2003-04-15 08:02:58 +00:00
itojun
e6a384fc32
%d is 12 chars, not 10 chars. hinted by deraadt
2003-04-15 07:40:56 +00:00
itojun
64e132e781
array seems too small
2003-04-15 07:37:34 +00:00
itojun
84490858f9
correct questionable use of strncpy().
2003-04-15 07:36:14 +00:00
itojun
781846fcdb
use NI_MAX*. 10 is not enough for port number. sync w/kame
2003-04-15 07:32:06 +00:00
itojun
670e872d62
10 char is not sufficient here. sync w/ kame
2003-04-15 07:31:23 +00:00
itojun
c2a20cc150
%d is not 10 chars, but 12 chars. uwse NI_MAXSERV. sync w/ kame. from openbsd
2003-04-15 07:23:19 +00:00
elric
3c7e4881c4
Fix typo. params files are not stored in /dev/cgd/
2003-04-15 06:43:36 +00:00
lukem
a1e70625a5
remove superfluous "uname=root gname=wheel" from etc/postfix/** entries
2003-04-15 06:21:51 +00:00
erh
6070c46916
Add a regression test to check that forced unmounts work correctly.
...
Bug described in PR kern/5683
2003-04-15 06:19:57 +00:00
grant
6dbbe09cdf
in delete_package(), always warn if there is a checksum mismatch,
...
improve text.
2003-04-14 23:42:21 +00:00
fvdl
7b402ff9df
If an alternate superblock is used, update the standard one correctly.
2003-04-14 18:50:52 +00:00
kleink
901550cf82
Following the pci(9) example, list cardbusreg.h here as well.
2003-04-14 18:34:26 +00:00
agc
9878b0d124
The "default" case usually occurs at the end of all other options, so change
...
it to follow convention.
Add /* NOTREACHED */ comments, per share/misc/style.
2003-04-14 17:40:07 +00:00
perry
5f549c5ea8
Add a quirk for the Tandberg SLR/5
...
Fix supplied by Rex McMaster in PR kern/13603
2003-04-14 16:18:23 +00:00
rtr
0c265012d6
Added myself
2003-04-14 15:24:43 +00:00
itojun
5a6a4446f8
avoid hardcoded SOCK_xx; with markus; should allow ssh over SCTP
2003-04-14 14:36:47 +00:00
rjs
971ce6c243
Remove membase and memsize device config parameters.
2003-04-14 14:20:10 +00:00