Commit Graph

68500 Commits

Author SHA1 Message Date
imp
042c0966a7 Add note about daily security checks moving to periodic(8) 2001-12-28 05:33:34 +00:00
imp
1bd17a93c0 Add note to 20010924 entry that tells people about the COMPAT4X option
in /etc/make.conf, since sometimes these libraries are updated.

Submitted by: ru
2001-12-28 05:09:19 +00:00
kuriyama
870bf8787e Merge the changes in the English version (1.239 --> 1.242). 2001-12-28 05:07:23 +00:00
bmah
095e9da8dc Fix typo in example.
PR:		33260
Submitted by:	Dan Peterson <danp@danp.net>
2001-12-28 03:59:19 +00:00
imp
fee6647360 Novac DVD/CD Station(Portable DVD/CD-ROM player
Submitted by: moment@pluto.dti.ne.jp
2001-12-28 03:42:41 +00:00
imp
ca762a10b9 Xircom RealPort RE-10
Submitted by: Willem van Engen <wvengen@stack.nl>
2001-12-28 03:39:13 +00:00
imp
6875a0c06c Add Proxim Harmony card (from Bob)
Also fix a minor disordering of a wi card while I'm here.

Submitted by: bob bobing <this_is_my_act@yahoo.com>
2001-12-28 03:34:05 +00:00
cjc
c939887237 Fix some leftover stray characters from expr(1)-to-$(()) sweeps.
PR:		bin/33158
Submitted by:	Adrian Filipi-Martin <adrian@ubergeeks.com>
MFC after:	1 day
2001-12-27 22:41:35 +00:00
joerg
d10f66f0eb Clean up half a dozen of header files that are no longer needed now that
we use struct sppp_parms instead of struct sppp for userland programs.

MFC after:	1 month
2001-12-27 22:40:01 +00:00
joerg
d18dbbbe9a Break out the relevant fields from struct sppp into a struct
sppp_parms that are needed for the SPPPIO[GS]DEFS ioctl commands.
This allows it to keep struct sppp inside #ifdef _KERNEL (where it
belongs), and prevents userland programs that wish to include
<net/if_sppp.h> from including the earth, the hell, and the universe
before the are able to resolve all the kernel-internal stuff that's in
struct sppp.

Discussed with:	hm
MFC after:	1 month
2001-12-27 22:38:50 +00:00
bmah
3664910955 At least I'm consistent. Back out the last accidental rev to this file on
HEAD too.

Noticed by:		ben
Another pointy hat to:	bmah
2001-12-27 22:32:33 +00:00
bmah
df953cc4df New release note: network filesystems can now be listed in
/etc/fstab.

Submitted by:	sheldonh
2001-12-27 21:55:02 +00:00
bmah
7aa2007499 New release notes: pseudofs-ize procfs(5), libstand can write to UFS
filesystems, sysinstall(8) auto-partition updates.
2001-12-27 21:37:38 +00:00
joerg
72844dd106 Userland part of making the LCP restart timer configurable.
Obtained from:	i4b (with changes)
2001-12-27 21:20:33 +00:00
joerg
c3e53c63c1 Make the LCP restart timer configurable.
This (effectively) merges rev 1.36 of i4b's old if_spppsubr.c, albeit
in a slightly different manner (we export the timer in millisecond
values as exposed to tick values from/to userland).

Obtained from:	i4b
MFC after:	1 month
2001-12-27 21:20:05 +00:00
bmah
d9b94dd6a7 New release notes found while trying to catch-up RELENG_4 to reality:
whois(1) -c, pkg_delete -r, rc.conf(5) support for IPFilter state tables.
2001-12-27 21:18:36 +00:00
alfred
3026a8036d brace by itself after function declaration.
Mandated by: style(9)
Pointed out by: rwatson
2001-12-27 20:16:21 +00:00
alfred
c9720c8175 put function return types on a line by themselves as per style(9) 2001-12-27 20:12:03 +00:00
alfred
ee6e4df9d2 Make it explicit that the opening brace of a function body be on a line
by itself.
2001-12-27 20:05:47 +00:00
bmah
02953f81a4 Add nsmb.conf to list of files that sysinstall preserves on an upgrade. 2001-12-27 19:59:57 +00:00
dillon
2cc743e124 nfs_nget() does no locking whatsoever when looking up a vnode. If the
vget() sleeps we have to retry the operation to avoid racing against
a deletion.

MFC maybe: submitted to re's
2001-12-27 19:40:34 +00:00
joerg
82f548fd19 Implement knobs to enable/disable VJ header compression.
Submitted by:	i4b (modified)
MFC after:	1 month
2001-12-27 16:52:23 +00:00
joerg
3f447117b1 Document that we now implement VJ header compression. 2001-12-27 16:49:54 +00:00
joerg
5a94a8f0c9 Implement VJ header compression for sppp.
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
2001-12-27 16:49:31 +00:00
joerg
5a63bf2b84 Remove nonstandard floppy device nodes. Only keep the base device node,
plus the symbolic links to the fake BSD partitions.

Also remove the rfd* devices, they are neither necessary nor documented
anymore.
2001-12-27 15:03:25 +00:00
sheldonh
3aee09fd5e Re-introduce the fix that delays mounting of network filesystems until
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.
2001-12-27 13:41:27 +00:00
roam
7ee6de3f93 Fix a typo. While 'iff' might make sense in a mathematics-related text,
'if and only iff' does not.

PR:		33242
Submitted by:	Eric Yu <ericyu@mail2000.com.tw>
2001-12-27 13:33:10 +00:00
sos
7ebd5ff8ee Fix the msinfo command, as mentioned in several PR's. 2001-12-27 10:10:56 +00:00
hm
737d7ac81c sync AUTHNAMELEN with AUTHNAMELEN in <machine/i4b_isppp.h> 2001-12-27 09:18:52 +00:00
hm
04e8094fce Fix potential fclose nullpointer core dumps
MFC after:	1 month
2001-12-27 08:41:10 +00:00
kuriyama
05b3080b8f Ugh, I forgot to bump "Original revision" header... 2001-12-27 08:33:47 +00:00
kuriyama
0ed4e7546c Merge the changes in the English version (1.4 --> 1.6). 2001-12-27 08:31:05 +00:00
kuriyama
4432a3f1de Merge the changes in the English version (1.205 --> 1.239).
Finally, English and Japanese version are sync'ed in HEAD branch!
2001-12-27 08:28:40 +00:00
luigi
a3fca633a5 Remove a stale entry related to passing ARP with bridging and ipfw.
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
2001-12-27 05:40:09 +00:00
imp
cef523d0d4 Longshire LCS-8634TB
Submitted by: "Frank W. Josellis" <josellis@dynamics.claranet.de>
2001-12-27 03:59:21 +00:00
kuriyama
30c6aad787 Remove unwanted(?) 0xa0 characters. 2001-12-27 03:18:24 +00:00
chris
6224939f9b Document UFS and FFS options and features.
Obtained from:	TrustedBSD Project
Sponsored by:	DARPA, NAI Labs
2001-12-27 03:05:44 +00:00
kuriyama
481e61c8ea Merge the changes in the English version (1.204 --> 1.205).
(Structure changes only.)
2001-12-27 02:33:54 +00:00
kuriyama
83a6ed1f20 Merge the changes in the English version (1.187 --> 1.204). 2001-12-27 02:27:21 +00:00
imp
9d6a170316 Some new cards:
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>
2001-12-27 02:12:32 +00:00
sheldonh
c2a383a55d Add nsmb.conf to the resurrection list.
Submitted by:	olgeni
Approved by:	re
2001-12-27 01:57:18 +00:00
kuriyama
4e16adff26 Remove doubled "ability to" word. 2001-12-27 01:38:02 +00:00
bmah
467039933f Flesh out cdboot release note a little bit, note MFC. 2001-12-26 23:41:20 +00:00
bmah
600e6f6dc2 New release note: ipfw(8) precedence matching.
Updated release note:  smbfs userland 1.4.3.
2001-12-26 23:27:54 +00:00
davidc
6b067561b6 Update function definitions and required include files to reflect
the current state of the system.

Approved by: alfred
2001-12-26 23:14:04 +00:00
joerg
70547e89ed Don't log RXJ+ protocol rejects unless we are in debug mode. (RXJ-
events are always logged.)  This stops sppp from spamming the syslog
files in case the remote peer is not configured to negotiate IPv6.
2001-12-26 22:36:59 +00:00
joerg
1dba1c03d6 Fix some pseudo-enumeration constants in the IPv6 implementation so
they are unique and thus actually usable as flagbits.  I wonder how
it even worked so far...

MFC after:	1 week
2001-12-26 22:35:10 +00:00
joerg
df14212885 Ignore (and silently conf-ack) conf-reqs for an Async-Control-
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.
2001-12-26 22:00:13 +00:00
ume
32d91b30d9 - Make it possible to turn on RES_INSECURE[12] with /etc/resolv.conf.
- 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
2001-12-26 21:21:10 +00:00
joerg
eb6c6922fc For SIOCSIFADDR, don't call if_up() since it would attempt to add the
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. ;-)
2001-12-26 20:28:41 +00:00