summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Document that we now implement VJ header compression.joerg2001-12-271-7/+8
|
* Implement VJ header compression for sppp.joerg2001-12-272-5/+158
| | | | | | | | | | This is the logical merge of rev 1.32 of i4b's old if_spppsubr.c (which was based on PR misc/11767), plus (i4b) rev 1.6 of i4b's if_ispppsubr.c, albeit with numerous stylistic and cosmetic changes. PR: misc/11767 Submitted by: i4b, Joachim Kuebart MFC after: 1 month
* Remove nonstandard floppy device nodes. Only keep the base device node,joerg2001-12-271-85/+0
| | | | | | | plus the symbolic links to the fake BSD partitions. Also remove the rfd* devices, they are neither necessary nor documented anymore.
* Re-introduce the fix that delays mounting of network filesystems untilsheldonh2001-12-273-1/+44
| | | | | | | | | | | | | | | | | | the network is initialized. This was first implemented in rev 1.268 of src/etc/rc, but was backed out at wollman's request. The objection was that the right place for the fix is in mount(8). Having looked at that problem, I find it hard to believe that the hoops one would have to jump through can be justified by the desire for purity alone. Note that there are reported issues surrounding nfsclient kernel support and mount_nfs(8), which currently make NFS an ugly exception to the general case. With this change, systems with non-NFS network filesystems configured for mounting on startup in /etc/fstab are no longer guaranteed to fail on startup.
* Fix a typo. While 'iff' might make sense in a mathematics-related text,roam2001-12-271-1/+1
| | | | | | | 'if and only iff' does not. PR: 33242 Submitted by: Eric Yu <ericyu@mail2000.com.tw>
* Fix the msinfo command, as mentioned in several PR's.sos2001-12-271-5/+8
|
* sync AUTHNAMELEN with AUTHNAMELEN in <machine/i4b_isppp.h>hm2001-12-271-2/+2
|
* Fix potential fclose nullpointer core dumpshm2001-12-273-19/+28
| | | | MFC after: 1 month
* Ugh, I forgot to bump "Original revision" header...kuriyama2001-12-272-2/+2
|
* Merge the changes in the English version (1.4 --> 1.6).kuriyama2001-12-272-6/+4
|
* Merge the changes in the English version (1.205 --> 1.239).kuriyama2001-12-271-41/+192
| | | | Finally, English and Japanese version are sync'ed in HEAD branch!
* Remove a stale entry related to passing ARP with bridging and ipfw.luigi2001-12-271-2/+0
| | | | | | | | | This feature has been removed since 4.1 times and it is only a source of confusion. Same needs to be done on -stable. MFC after: 1 day
* Longshire LCS-8634TBimp2001-12-271-0/+6
| | | | Submitted by: "Frank W. Josellis" <josellis@dynamics.claranet.de>
* Remove unwanted(?) 0xa0 characters.kuriyama2001-12-272-8/+8
|
* Document UFS and FFS options and features.chris2001-12-273-0/+274
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Merge the changes in the English version (1.204 --> 1.205).kuriyama2001-12-271-57/+57
| | | | (Structure changes only.)
* Merge the changes in the English version (1.187 --> 1.204).kuriyama2001-12-271-31/+135
|
* Some new cards:imp2001-12-271-5/+19
| | | | | | | | | o uncommnent joy stuff (me) o Add BONDWELL B236 joystick card (me) o Add Buffalo WLI-CF-S11G wi card (me) o CNF CD-m (submitted by gda) Submitted by: Dmitry A Goncharov <gda@sani.ru>
* Add nsmb.conf to the resurrection list.sheldonh2001-12-271-0/+1
| | | | | Submitted by: olgeni Approved by: re
* Remove doubled "ability to" word.kuriyama2001-12-272-2/+2
|
* Flesh out cdboot release note a little bit, note MFC.bmah2001-12-262-4/+10
|
* New release note: ipfw(8) precedence matching.bmah2001-12-262-2/+8
| | | | Updated release note: smbfs userland 1.4.3.
* Update function definitions and required include files to reflectdavidc2001-12-2661-118/+191
| | | | | | the current state of the system. Approved by: alfred
* Don't log RXJ+ protocol rejects unless we are in debug mode. (RXJ-joerg2001-12-261-6/+7
| | | | | events are always logged.) This stops sppp from spamming the syslog files in case the remote peer is not configured to negotiate IPv6.
* Fix some pseudo-enumeration constants in the IPv6 implementation sojoerg2001-12-261-2/+2
| | | | | | | they are unique and thus actually usable as flagbits. I wonder how it even worked so far... MFC after: 1 week
* Ignore (and silently conf-ack) conf-reqs for an Async-Control-joerg2001-12-261-11/+15
| | | | | | | Character-Map. RFC 1662 demands it for the sake of async to sync PPP protocol converters (like Win9* :). This merges rev 1.26/1.27 of the old i4b sppp changes.
* - Make it possible to turn on RES_INSECURE[12] with /etc/resolv.conf.ume2001-12-262-1/+13
| | | | | | | | - Don't connect datagram socket if RES_INSECURE1. - Needed to implement IPv6 anycast UDP DNS queries as documented in <draft-ietf-ipngwg-dns-discovery-03.txt>. Obtained from: KAME
* For SIOCSIFADDR, don't call if_up() since it would attempt to add thejoerg2001-12-261-1/+2
| | | | | | | | | route to the destination twice. Now that brian has fixed route.c to no longer accept this second route, this long-standing nuisance became a showstopper bug for sppp users. In retrospect, this is the same fix as the one in rev 1.78 of if_sl.c; most likely the original version of sppp has been cloned from SLIP. ;-)
* s/sonewconn3/sonewconn/ forgotten by the modifier.green2001-12-261-1/+1
|
* o Add a comment indicating that if /tmp==/var/tmp in rc.diskless2, therwatson2001-12-265-0/+20
| | | | | | | | md device and file system creation occurs *after* mtree is run, and as such an /var/tmp/* or /tmp/* entries will be under the mountpoint (or fail) rather than appearing in the md filesystems. This prevents the creation of vi.recover, and might affect other localizations that rely on the mtree calls affecting these directories.
* Remove incorrect comments about the population of /etc: no attempt isrwatson2001-12-263-15/+3
| | | | | made to copy the NFS-mounted on to /tmp/etc, instead, it is populated entirely from /conf/default, then overriden from /conf/IP.
* Now that smbfs is fully integrated into the base system, createsheldonh2001-12-261-0/+7
| | | | | | | /dev/nsmb* device nodes, which used to be done by the port installation. PR: 33068 Submitted by: Dimitry Andric <dim@xs4all.nl>
* This commit was generated by cvs2svn to compensate for changes in r88492,sheldonh2001-12-263-9/+13
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import smbfs-1.4.3.sheldonh2001-12-263-9/+13
| |
* | Merge the changes in the English version (1.186 --> 1.187).kuriyama2001-12-261-76/+76
| | | | | | | | (Structure changes only.)
* | Separate entries with blank line.kuriyama2001-12-262-0/+2
| |
* | Merge the changes in the English version (1.178 --> 1.186).kuriyama2001-12-261-20/+60
| |
* | Merge the changes in the English version (1.177 --> 1.178).kuriyama2001-12-261-49/+49
| | | | | | | | (Structure changes only.)
* | Merge the changes in the English version (1.170 --> 1.177).kuriyama2001-12-261-9/+49
| |
* | Merge the changes in the English version (1.169 --> 1.170).kuriyama2001-12-261-83/+83
| |
* | Merge the changes in the English version (1.168 -> 1.169).kuriyama2001-12-261-647/+647
| | | | | | | | This is structure changes only. Thanks, Bruce!
* | Second round of floppy disk driver documentation updates: document thejoerg2001-12-252-117/+312
| | | | | | | | | | | | | | changes in the userland utilities. For fdcontrol(8), i now finally keep my promise made more than 7 years ago that ``the fdcontrol utility is currently under development and the user interface will likely change''. :-)
* | Unbreak de_CH.ISO8859-{1,15} locales (add missing categories defintions)phantom2001-12-254-3/+40
| |
* | Add support for even more SiS chipsets.sos2001-12-252-101/+74
| | | | | | | | Misc cosmetics.
* | Fix yet another fake slave problem for PCCARD devices.sos2001-12-251-6/+11
| |
* | Merge the changes in the English version (1.155 -> 1.168).kuriyama2001-12-251-55/+107
| | | | | | | | Add local configuration for psgml-emacs.
* | Fix unbalanced paren.kuriyama2001-12-252-2/+2
| |
* | Unbreak af_ZA locale by aliasing its LC_TIME category to en_US's.phantom2001-12-251-0/+4
| |
* | Optimize locale data Makefiles as well as make their style more consistent.phantom2001-12-256-121/+99
| |
* | Add "except the handling of errors" into "equivalent to" paragraph.ache2001-12-253-0/+8
| | | | | | | | | | Pointed by: bde Inspired by: POSIX
OpenPOWER on IntegriCloud