George V. Neville-Neil
842c485bf8
Remove the documentation from the Makefile as well.
2006-05-14 02:01:59 +00:00
George V. Neville-Neil
990e7e2b52
Removed the deprecated lance driver, lnc, from files.
2006-05-14 01:59:12 +00:00
George V. Neville-Neil
d72e36b914
Remove documentation for the deprecated lnc driver.
...
Reviewed By: simon
2006-05-14 01:55:20 +00:00
Simon L. B. Nielsen
fb8fb5b5fe
Remove autogeneration of lnc(4) hardware notes before gnn blows it away.
2006-05-14 01:55:06 +00:00
Craig Rodrigues
5250012a1d
For nmount(), if "rw" is specified as a mount option,
...
add "noro" to the list of mount options. This allows
a read-only mount to be converted to read-write via:
mount -u -o rw
Requested by: kris
2006-05-14 01:51:38 +00:00
George V. Neville-Neil
db49408b2b
Remove the old, and now deprecated lnc driver. The Lance style hardware
...
is supported by the le and pnc drivers.
Reviewed by: jmg
2006-05-14 01:47:51 +00:00
George V. Neville-Neil
3f0c418ad9
Prefer the le device driver for Lance (AMD7990 et al) hardware over the
...
older, and less capable lnc driver.
Reviewed by: imp
2006-05-14 01:40:41 +00:00
Olivier Houchard
d5d776c16b
Resurrect Skyeye support :
...
Add a new option, SKYEYE_WORKAROUNDS, which as the name suggests adds
workarounds for things skyeye doesn't simulate. Specifically :
- Use USART0 instead of DBGU as the console, make it not use DMA, and manually provoke an interrupt when we're done in the transmit function.
- Skyeye maintains an internal counter for clock, but apparently there's
no way to access it, so hack the timecounter code to return a value which
is increased at every clock interrupts. This is gross, but I didn't find a
better way to implement timecounters without hacking Skyeye to get the
counter value.
- Force the write-back of PTEs once we're done writing them, even if they
are supposed to be write-through. I don't know why I have to do that.
2006-05-13 23:41:16 +00:00
Dag-Erling Smørgrav
9fd9594daf
Add a manual dependency on ssh_namespace.h.
...
Discussed with: ru
2006-05-13 21:38:16 +00:00
Tor Egge
b405cb5ea5
Expunge traces of unlinked snapshot files when making a new snapshot.
2006-05-13 20:41:37 +00:00
Maxim Sobolev
684e75f7c3
o Add an option allowing to start search from some offset instead of offset 0;
...
o mesure distance between UFS1 and UFS2 superblocks independently.
MFC after: 1 week
2006-05-13 20:23:06 +00:00
Alan Cox
8f8790a76d
Simplify the implementation of vm_fault_additional_pages() based upon the
...
object's memq being ordered. Specifically, replace repeated calls to
vm_page_lookup() by two simple constant-time operations.
Reviewed by: tegge
2006-05-13 20:05:44 +00:00
Colin Percival
1e1de0e499
Fix typo.
...
Pointed out by: ceri
2006-05-13 18:04:48 +00:00
Colin Percival
d600d37002
Add a mechanism for constructing INDEX files which include local ports.
...
Requested by: brooks
2006-05-13 15:56:35 +00:00
Hellmuth Michaelis
c6a39ce216
PR: bin/71663
...
Submitted by: Dan Lukes
Reviewed by: hm@
fix compile warnings in isdnd and isdntest. some more
compile time warnings also mentioned in this PR were
already fixed in an earlier commit today.
2006-05-13 14:59:58 +00:00
Hellmuth Michaelis
9b861a1f96
PR: kern/76611
...
Submitted by: Mauritz Sundell and Sergio de Souza Prallon
Reviewed by: hm@
fix several constants for the Tiger320 ISDN chip
2006-05-13 14:39:35 +00:00
Dag-Erling Smørgrav
ed22e27d8a
Introduce a namespace munging hack inspired by NetBSD to avoid polluting
...
the namespace of applications which inadvertantly link in libssh (usually
through pam_ssh)
Suggested by: lukem@netbsd.org
MFC after: 6 weeks
2006-05-13 13:47:45 +00:00
Hajimu UMEMOTO
2d39807f07
Comment out the function prototypes which our libc actually
...
doesn't have.
2006-05-13 12:43:12 +00:00
Hellmuth Michaelis
93ad0725db
fix conflicting types for log(), add some prototypes to isdnd.h
2006-05-13 12:42:55 +00:00
Pawel Jakub Dawidek
564084e489
Correct various mistakes in the last commit.
2006-05-13 11:58:58 +00:00
Pawel Jakub Dawidek
4c4090f533
Include other AES key lengths in the comment.
2006-05-13 09:13:58 +00:00
Dag-Erling Smørgrav
d54e67565d
Remove alpha from the HEAD lineup.
2006-05-13 08:25:31 +00:00
Max Laier
a0a9755e09
Update UPDATING and bump __FreeBSD_version for the ip6fw removal.
2006-05-13 06:08:25 +00:00
Max Laier
0794df7c73
Update for ip6fw removal.
2006-05-13 05:51:52 +00:00
Warner Losh
9c5b312952
Tidy up a bit...
2006-05-13 02:47:39 +00:00
Chuck Lever
5f396e80f0
Add better sanity checking to the logic that handles ioctl processing
...
for nfsclient and nfs4client in order to prevent local root users
from panicing the system.
PR: kern/77463
Submitted by: Wojciech A. Koszek
Reviewed by: cel, rees
MFC after: 2 weeks
Security: Local root users can panic the system at will
2006-05-13 00:16:35 +00:00
Marcel Moolenaar
ace86f3f27
o A divisor of 0 is perfectly valid. Reserve -1 for an invalid
...
divisor. This allows us to set the line speed to the maximum
of 1/4 of the device clock.
o Disable the baudrate generator before programming the line
settings, including baudrate, and enable it afterwards.
2006-05-12 23:24:45 +00:00
Giorgos Keramidas
cb9dec9ec1
Check the return code of sc_clean_up() in the only place where it
...
was not checked at all. There is only one case when sc_clean_up()
can fail, because of wait_scrn_saver_stop(), but it doesn't hurt
to check anyway.
Reviewed by: rodrigc
Found by: Coverity Prevent
2006-05-12 22:43:07 +00:00
Peter Wemm
374757c7cb
Test commit after repoman upgrade. Remove one of my many email addresses
...
from a copyright message.
2006-05-12 22:41:58 +00:00
Peter Wemm
b02a3351e8
Test commit after repoman upgrade. Remove one of my many email addresses
...
from a coyright message.
2006-05-12 22:38:53 +00:00
Max Laier
656faadcb8
Remove ip6fw. Since ipfw has full functional IPv6 support now and - in
...
contrast to ip6fw - is properly lockes, it is time to retire ip6fw.
2006-05-12 20:39:23 +00:00
John-Mark Gurney
b0d081a0b4
drop D_MEMDISK, not used in the tree...
2006-05-12 19:40:54 +00:00
Bruce A. Mah
83b5ab40f9
Fix typo in last commit: traceroute(8) -e, not traceroute(8) -c.
...
Submitted by: Rong-En Fan grafan at gmail dot com
Pointy hat to: Thunderbird, for a too-small default font size
Not ready for reading glasses yet: bmah
2006-05-12 19:31:29 +00:00
Max Laier
9277da52e1
Move etc/rc.firewall6 to ipfw2+v6, update related rc.d and periodic scripts.
...
Since ipfw2 now does dual-stack, statistics for IPv6 come from the ipfw
scripts as well.
2006-05-12 19:17:34 +00:00
Dag-Erling Smørgrav
8a7c7f9cc3
Forgot to add RELENG_6_1 here as well.
2006-05-12 19:06:22 +00:00
Max Laier
270404f55a
Update manpage for net.inet6.ip6.fw.enable sysctl.
...
Requested by: bz
2006-05-12 18:09:33 +00:00
Ariff Abdullah
8f982aec7b
Unbreak build. es1888.c (alpha bit) no longer exist.
2006-05-12 18:05:35 +00:00
Giorgos Keramidas
6ac5e06ca3
Fix the web-appearance of Hardware notes, in the simplest way
...
possible; by re-arranging a couple of sentences in the ath(4)
HARDWARE section.
Clue by: bmah
MFC after: 1 week
2006-05-12 17:58:11 +00:00
Giorgos Keramidas
52fc88b53b
apropos(1) does not expand *roff macros that should appear in .Nd
...
text and, as a result, 'FreeBSD' is not visible in apropos output
when security(7) is displayed. Fix this buglet by using a
literal 'FreeBSD' string in .Nd
PR: docs/85986
Submitted by: Matthias Schmidt <schmidtm@mathematik.uni-marburg.de>
MFC after: 1 week
2006-05-12 17:42:48 +00:00
Bruce A. Mah
4b46cf2cab
New release notes: alpha support removed, jail(8) -s, traceroute(8)
...
-c, tzdata2006g.
2006-05-12 17:04:18 +00:00
Max Laier
210c3cc4c3
Put debugging messages related to inconsistent ticket numbers under misc and
...
wrap it __FreeBSD__ specific as I couldn't figure out which version of
OpenBSD I got it from.
Reported by: Scott Ullrich
2006-05-12 16:15:34 +00:00
Hajimu UMEMOTO
3da59cd007
Fix gethostbyaddr() prototype to conform to IEEE Std 1003.1:
...
http://www.opengroup.org/onlinepubs/009695399/functions/gethostbyaddr.html
gethostbyaddr_r() is changed as well.
It breaks ABI backward compatibility on 64 bit arch. So, we fix it
on 32 bit arch only for now.
Reported by: Rostislav Krasny <rosti.bsd@gmail.com>
2006-05-12 15:37:23 +00:00
Matteo Riondato
b484e04bf9
correct strtol(3) usage and style(9)
...
Reviewed by: maxim
MFC after: 2 weeks
2006-05-12 15:14:43 +00:00
Giorgos Keramidas
ab7350b7de
After a mini-discussion with Sam Leffler, remove the hardcoded
...
list of Atheros-based cards from ath(4). The online list is
always more up to date, anyway.
This invalidates:
PR: docs/95360
Submitted by: Erik Nordstr:om Andersen <erik@erik-n-andersen.dk>
2006-05-12 12:55:56 +00:00
Colin Percival
343c554c88
Use 'rm -rf foo/bar' to remove a port instead of 'rm -rf foo/bar/'.
...
When /usr/ports/foo/bar is a symlink pointing outside the tree, this
deletes the symlink instead of the directory it points to.
Requested by: delphij
2006-05-12 10:42:40 +00:00
Benno Rice
e2c1a4e909
Document VERBOSE_SYSINIT in NOTES.
...
Requested by: Niclas Zeising <lothrandil at n00b dot apagnu dot se>
2006-05-12 10:25:54 +00:00
John Baldwin
73dbd3da73
Remove various bits of conditional Alpha code and fixup a few comments.
2006-05-12 05:04:46 +00:00
Max Laier
e93187482d
Reintroduce net.inet6.ip6.fw.enable sysctl to dis/enable the ipv6 processing
...
seperately. Also use pfil hook/unhook instead of keeping the check
functions in pfil just to return there based on the sysctl. While here fix
some whitespace on a nearby SYSCTL_ macro.
2006-05-12 04:41:27 +00:00
John Baldwin
3e20eaf592
Remove the snd_ess identify routine for the sound device in Alpha PWS
...
machines.
2006-05-12 04:11:25 +00:00
John Baldwin
3279122dc2
Remove some tga bits I missed.
2006-05-12 04:10:38 +00:00