Commit Graph

4136 Commits

Author SHA1 Message Date
bde
1af84f88ca Fixed previous fix (dad -> rda via rad). 1999-06-07 16:36:41 +00:00
jkoshy
f6c90a57fe Correct typos.
PR:		docs/12068
Submitted by:	Steve Coltrin <spcoltri@io.com>
1999-06-07 05:18:24 +00:00
mjacob
caa5cbc03b Add a clarification in the man page suggesting that some tapes
(QIC) written under 2.X may not be easily read under the current
driver without explicitly setting to variable mode or to the blocksize
these tapes were written under 2.X with.

PR: 6681
1999-06-06 23:23:50 +00:00
julian
08a158ed9e Support the IANA definition of Shift Jis nameley ja_JP.Shift_JIS
as well as the X11 version ja_JP.SJIS
1999-06-05 03:04:03 +00:00
billf
3176b666ac sunsite is now metalab. 1999-06-04 03:17:04 +00:00
bde
9a9fd043b2 Fixed bitrot in synopsis (a missing include). 1999-06-02 16:33:22 +00:00
billf
bc62ec7c7b 'make update' in the ports directory. 1999-06-01 02:55:44 +00:00
billf
5de50b4d37 procedure, not proceedure. 1999-05-30 21:31:18 +00:00
nik
d34376d0e4 "Tn DNS" -> ".Tn DNS"
PR:             docs/10474
Submitted by:   Yoshiteru Kageyama <yt-kage@cb3.so-net.ne.jp>
1999-05-29 13:08:54 +00:00
nik
f6d67ae319 Fix a couple of typos related to wfd.
PR:             docs/10624
Submitted by:   Joe Abley <jabley@buddha.clear.net.nz>
1999-05-29 13:08:12 +00:00
nik
02c236ef75 Description of LOCKLEAF said "inode" when it should have said "vnode".
PR:             docs/11596
Submitted by:   Robert Watson <robert@fledge.watson.org>
1999-05-29 13:00:40 +00:00
nik
a076fb6f6e Note that using the dirent.d_type member is non-portable, and might
fail on some filesystems.

PR:             docs/11645
Submitted by:   Harold Gutch <logix@foobar.franken.de>
1999-05-29 12:59:51 +00:00
nik
a8223f5303 Fix the typos, and add new entries (like the /etc/periodic/ and /etc/mail/
directories).

PR:             docs/11695
Submitted by:   Chris Costello <chris@calldei.com>
1999-05-29 12:58:44 +00:00
wpaul
fa6fffc6ff Fix support for the PNIC II. Earlier I had assumed that the PNIC II was
similar to the PNIC I (supported by the pn driver). In fact, it's really
a Macronix 98715A with wake on LAN support added. According to LinkSys,
the PNIC II was jointly developed by Lite-On and Macronis. I get the
feeling Macronix did most of the work. (The datasheet has the Macronix
logo on it, and is in fact nearly identical to the 98715 datasheet, except
for the extra wake on LAN registers.) In any case, the PNIC II works just
fine with the Macronix driver.

The changes are:

- Move PCI ID for the PNIC II from the pn driver to the mx driver.
- Mention PNIC II support in mx.4.
- Mention PNIC II support in RELNOTES.TXT and HARDWARE.TXT.
1999-05-28 18:43:25 +00:00
dfr
1110334ad2 Document device_add_child_ordered(). 1999-05-28 09:38:25 +00:00
yokota
f25453bc0f Add description on configuration options and the EXAMPLE section. 1999-05-28 04:33:20 +00:00
ache
adab607dee add libhistory 1999-05-28 04:30:05 +00:00
ghelmer
beda46afe7 Where the fstab page discusses filesystem options, add a reference
to the '-o' flag in the mount(8) and filesystem specific
mount pages where information can be obtained about the available
options.

PR:		docs/10108
1999-05-28 01:54:38 +00:00
ghelmer
e54f383a25 There are six bit fields in the flags now, not four.
PR:		i386/10328
1999-05-27 02:41:06 +00:00
hoek
5e2e590b8a Spell vp0 correctly. Add id.
PR:		docs/10500 (Masaru Tsunoda [3]masaru@pokemon.to)
1999-05-25 17:34:07 +00:00
jdp
1eb58535d9 Remove references to the obsolete src-eBones collection.
PR:		conf/11873
1999-05-25 05:38:27 +00:00
obrien
dc18e04b98 Get case right in "COMPAT3X".
Submitted by:	Kevin Street <street@iname.com>
1999-05-23 17:57:23 +00:00
wpaul
97a90dc5c9 - Fix up some comments in if_wi.c (no code changes)
- Mention that the 6Mbps turbo adapters are supported in HARDWARE.TXT
  and RELNOTES.TXT and the wi.4 man page
- Mention turbo adapters in the wicontrol.8 man page and provide a
  complete table of available transmit speed settings
1999-05-22 16:12:54 +00:00
bde
0db30d58c0 Fixed disordering in previous commit. 1999-05-22 07:54:38 +00:00
wpaul
2bc8cc3c58 Fix a couple of small grammatical errors. 1999-05-21 14:59:48 +00:00
wpaul
60b2d4c5bd This commit adds driver support for PCI fast ethernet cards based on the
ADMtek AL981 "Comet" chipset. The AL981 is yet another DEC tulip clone,
except with simpler receive filter options. The AL981 has a built-in
transceiver, power management support, wake on LAN and flow control.
This chip performs extremely well; it's on par with the ASIX chipset
in terms of speed, which is pretty good (it can do 11.5MB/sec with TCP
easily).

I would have committed this driver sooner, except I ran into one problem
with the AL981 that required a workaround. When the chip is transmitting
at full speed, it will sometimes wedge if you queue a series of packets
that wrap from the end of the transmit descriptor list back to the
beginning. I can't explain why this happens, and none of the other tulip
clones behave this way. The workaround this is to just watch for the end
of the transmit ring and make sure that al_start() breaks out of its
packet queuing loop and waiting until the current batch of transmissions
completes before wrapping back to the start of the ring. Fortunately, this
does not significantly impact transmit performance.

This is one of those things that takes weeks of analysis just to come
up with two or three lines of code changes.
1999-05-21 04:37:48 +00:00
hm
2077acfca0 upgrade isdn4bsd from version 0.71 to the just released version 0.81 1999-05-20 10:14:57 +00:00
yokota
5ea75aea8a Remove bio/cam/net/tty labels.
OKed by: peter
1999-05-20 09:56:18 +00:00
obrien
8a9447c8ee * Remove "'s in the synopsis as config(8) does not require them any more.
* Optional bits now shown as such.

Submitted by:	Philippe Charnier & bde
1999-05-19 22:08:01 +00:00
obrien
fc22320510 Show the usage of flags in the synopsis.
(I couldn't figure out how to suround `flags _flags_' by []'s :-( )
1999-05-19 02:30:13 +00:00
obrien
d0ff2ffddb Add a commented out COMPAT22 and COMPAT3x, since we have the others. 1999-05-19 02:05:50 +00:00
pb
d32a1cc013 Typo.
PR:		doc/11582
1999-05-17 22:49:46 +00:00
steve
1762400fc8 s/cF/nF/ in a couple of places.
PR:		10841
Submitted by:	Kaneda Hiloshi <vanitas@ma3.seikyou.ne.jp>
1999-05-16 23:51:10 +00:00
mph
55cb8f746e This needs to be "at atkbdc?" rather than "at isa?". It's correct
in GENERIC and LINT, which is why I only needed four reboots to figure
out why my keyboard wasn't keyboarding.
1999-05-16 20:48:21 +00:00
alex
f43ff516fd Removed extraneous comma in xrefs. 1999-05-14 21:03:23 +00:00
alex
e9fc5ab540 Added missing comma in xrefs. 1999-05-14 21:03:11 +00:00
dcs
a2b3ce9271 Rewording. 1999-05-14 19:07:59 +00:00
dcs
f239b39763 Slight not-exactly-bug-but-useful-as-example-code fix. 1999-05-14 19:00:38 +00:00
dcs
c4a4e43379 Add a menu example making use of loader.4th(8) facilities.
Merge candidate, as it is just an example...
1999-05-14 18:06:27 +00:00
jkoshy
4a45600b5b Refer to kget(8) instead of dset(8).
PR:		docs/11702
Submitted by:	Matthew D. Fuller <fullermd@over-yonder.net>
1999-05-14 05:16:18 +00:00
billf
87e1a5e994 Add doc-supfile and www-supfile, for those who'd like to track those
repositories.

On a side note, I think www should be called www-all, like all of our
other collections.

Requested By:	jesusr
No Problems:	jdp
1999-05-12 20:01:10 +00:00
mharo
c7520d9e74 s/file it possible/file if possible/ 1999-05-11 01:19:34 +00:00
bde
5f5a6c78e8 Fixed disordering in previous commit. 1999-05-10 03:51:07 +00:00
n_hibma
709a69cb36 Add the USB Mass Storage manual page 1999-05-09 19:35:51 +00:00
ken
d1098a6692 The 2930U2 and 3950U2 are supported by the Adaptec driver. 1999-05-08 21:43:28 +00:00
ken
4ee5733cc5 Devices are hardwired with "unit 0", not "lun 0" as was in these man pages.
Also, update the pass(4) man page to indicate that some CCBs must be
sent through the xpt(4) device and cannot be sent through a pass device.

PR:		8826
1999-05-08 21:28:18 +00:00
imp
6917b00bc8 Remove one tab from us.iso.kbd so that it now has no tabs in it. This
is likely the intent of the original author since no other places use
tabs.

Sync us.unix.kdb to us.iso.kbd.  It should now only swap ESC and `~,
bs and delete, control and caps lock and make no other changes from
us.iso.kdb.
1999-05-08 01:19:23 +00:00
billf
4e09ddd265 Fix confusing sentence, the PR noticed the sentence, I rewrote the sentence.
PR:		docs/11257
Submitted by:	Motomichi Matsuzaki <mzaki@e-mail.ne.jp>
1999-05-06 20:51:31 +00:00
bde
254c5bc5a2 "Fixed" missing dependency of ${PROG} on ${LIBC} in the elf case. 1999-05-06 02:58:30 +00:00
bde
ebf1194701 Don't forget to install crash.8 after moving it. 1999-05-06 00:01:48 +00:00
cwt
14530fc329 Fix a typo (wi. -> wi.4)
Submitted by: Zach Heilig <zach@uffdaonline.net>
1999-05-05 12:54:50 +00:00
wpaul
fd47563fe4 Add device driver support for the Lucent WaveLAN/IEEE 802.11 PCMCIA
adapter (and some workalikes). Also add man pages and a wicontrol
utility to manipulate some of the card parameters.

This driver was written using information gleaned from the Lucent HCF Light
library, though it does not use any of the HCF Light code itself, mainly
because it's contaminated by the GPL (but also because it's pretty gross).
The HCF Light lacks certain featurs from the full (but proprietary) HCF
library, including 802.11 frame encapsulation support, however it has
just enough register information about the Hermes chip to allow someone
with enough spare time and energy to implement a proper driver. (I would
have prefered getting my hands on the Hermes manual, but that's proprietary
too. For those who are wondering, the Linux driver uses the proprietary
HCF library, but it's provided in object code form only.)

Note that I do not have access to a WavePOINT access point, so I have
only been able to test ad-hoc mode. The wicontrol utility can turn on
BSS mode, but I don't know for certain that the NIC will associate with
an access point correctly. Testers are encouraged to send their results
to me so that I can find out if I screwed up or not.
1999-05-05 07:37:11 +00:00
jkoshy
60b9aebc2a Correct sd', st' -> da', sa'; add xref to scsi(4); remove xref
to nca(4).

PR:		docs/11493
Submitted by:	"Steven G. Kargl" <kargl@troutmask.apl.washington.edu>
1999-05-05 04:01:40 +00:00
obrien
637e731db4 Make `ed0' example match reality.
Merge `ed1' and `ed2' examples as we don't ship with an `ed1' any more we
yet, the example of extra flags could be useful to someone.
1999-05-04 21:04:01 +00:00
ghelmer
256ebbee36 Make "\n" appear in cample C code.
PR:		docs/10708
1999-05-04 21:03:22 +00:00
ghelmer
8cce482cb2 Use Cd macro for SYNOPSIS.
PR:		docs/10495
1999-05-04 20:49:12 +00:00
wosch
2ef9dee196 FreeBSD-3.0 is a snapshot from -current, while 3.1 and 3.2
are from 3.x-stable which was branched quite some time after 3.0-release
(about Jan 15 if I recall correctly).

----> FreeBSD-3.0-----\----- FreeBSD-4.x-current -----....
                       \
                     3.x-stable ----> 3.1 ---> 3.2 ....

Submitted by: peter
1999-05-02 16:23:53 +00:00
wosch
803e033016 Space typos from last commit.
Added upcoming releases FreeBSD 3.2, NetBSD 1.3, OpenBSD 2.5

NetBSD 1.2.1 is a patch release of NetBSD 1.2 (a branch of 1.2)
NetBSD 1.3.1, 1.3.2, 1.3.3 are a patch release of NetBSD 1.3 (a branch of 1.3).

FreeBSD 3.0, FreeBSD 3.1 and FreeBSD 3.2 are a releases
from the 3.0-stable branch.

Added FreeBSD 4.0-current.

Added FreeBSD 3.1 release date.
1999-05-02 15:40:49 +00:00
kris
390b7bd97e Add $Id$ 1999-05-02 05:43:43 +00:00
hoek
2a19f51f0d Missed a ref to /usr/share/mk/bsd.port.mk 1999-05-02 05:04:26 +00:00
obrien
0d71d74795 * Alpha's do crashdumps too. (move manpage to arch-neutral home)
* s/i386/alpha/g  < man8.alpha/MAKEDEV.8  (someone that knows the Alpha
  platform please remove obivious i386 bogons)
1999-05-02 00:37:39 +00:00
obrien
cd379801e7 Remove NOPERL. Seems to cause too many problems, as those that try don't
understand the implications and don't think to undo it when they get experience
trouble.  (wonder about some of the people running -CURRENT sometimes)
1999-05-02 00:18:02 +00:00
obrien
0506d2c050 Don't install i386 specific manpage on the Alpha -- install Alpha specfic
ones instead.
1999-05-02 00:13:44 +00:00
kris
6f402caa86 Minor punctuation/grammar nits. 1999-04-30 13:12:44 +00:00
phk
22dd8b1a32 Add a new "file" to procfs: "rlimit" which shows the resource limits for
the process.

PR:		11342
Submitted by:	Adrian Chadd adrian@freebsd.org
Reviewed by:	phk
1999-04-30 13:04:21 +00:00
hoek
1f1f37b07d Fix a bunch typos, one fix of which is from docs/10794 1999-04-30 06:37:16 +00:00
hoek
78d92a7464 The bsd.port.mk has moved. 1999-04-29 21:41:11 +00:00
jkoshy
c6dd392175 Correct typo.
PR:		docs/11378
Submitted by:	Martin Kammerhofer <dada@balu.kfunigraz.ac.at>
1999-04-29 08:01:25 +00:00
billf
ae9d8ba539 sd -> da
st -> sa

This file is out-of-date in other ways as well, but these are pretty big
changes.
1999-04-29 02:12:08 +00:00
phk
ca21a25f17 This Implements the mumbled about "Jail" feature.
This is a seriously beefed up chroot kind of thing.  The process
is jailed along the same lines as a chroot does it, but with
additional tough restrictions imposed on what the superuser can do.

For all I know, it is safe to hand over the root bit inside a
prison to the customer living in that prison, this is what
it was developed for in fact:  "real virtual servers".

Each prison has an ip number associated with it, which all IP
communications will be coerced to use and each prison has its own
hostname.

Needless to say, you need more RAM this way, but the advantage is
that each customer can run their own particular version of apache
and not stomp on the toes of their neighbors.

It generally does what one would expect, but setting up a jail
still takes a little knowledge.

A few notes:

   I have no scripts for setting up a jail, don't ask me for them.

   The IP number should be an alias on one of the interfaces.

   mount a /proc in each jail, it will make ps more useable.

   /proc/<pid>/status tells the hostname of the prison for
   jailed processes.

   Quotas are only sensible if you have a mountpoint per prison.

   There are no privisions for stopping resource-hogging.

   Some "#ifdef INET" and similar may be missing (send patches!)

If somebody wants to take it from here and develop it into
more of a "virtual machine" they should be most welcome!

Tools, comments, patches & documentation most welcome.

Have fun...

Sponsored by:   http://www.rndassociates.com/
Run for almost a year by:       http://www.servetheweb.com/
1999-04-28 11:38:52 +00:00
foxfair
7da0d1d0f5 Correction of better display under chinese terminal.
Submitted by : Peter_Chen.bbs@bbs.csie.nctu.edu.tw
1999-04-28 07:27:04 +00:00
brian
1ee0c6ceb2 Specify the ssh command to use for a VPN inline. 1999-04-27 00:25:22 +00:00
wosch
6940406ec1 Typo
PR: docs/11259
Submitted by:	 mzaki@e-mail.ne.jp
1999-04-25 17:08:50 +00:00
peter
081087508f Goodbye lkm.4 1999-04-24 21:05:40 +00:00
peter
8b59cb0b5d Zap lkm examples, they don't do anything anymore. 1999-04-24 21:00:29 +00:00
peter
1d952b2530 s/lkm(4)/kld(4)/ 1999-04-23 20:53:34 +00:00
grog
b8e75a3798 Fix poor heading format.
Submitted-by:  Matthew Fuller <fullermd@over-yonder.net>
PR:	       docs/11271
1999-04-22 04:05:56 +00:00
nsayer
a649c2c975 Spelling error fixed. 1999-04-21 05:40:12 +00:00
peter
73d89323c4 Clean out most of the LKM stuff, the build support left a little while ago. 1999-04-20 14:33:24 +00:00
peter
0755120901 Default KMODDIR = /modules now, not /lkm 1999-04-20 14:24:52 +00:00
ghelmer
8e8108fd3d Revise list of interfaces on which bridging is supported. mdoc-ify a few
things while I'm here.
1999-04-16 02:09:38 +00:00
obrien
cd00c67a94 Create /var/db/port.mkversion rather than /var/db/pkg/.mkversion to be in
sync with bsd.port.mk rev 1.309.

Submitted by:	make world
1999-04-15 07:19:56 +00:00
wpaul
831605e7ee Grrr. Make all modes work properly with the 82c168 chip and built-in
transceiver. Note in the manual page that autoselection doesn't
work on the 82c168 because the built-in NWAY support is horribly
broken. Manual mode selection works fine, but autoneg is broken for
everything except maybe 10Mbps half-duplex. There's no simple way
to fix this at the moment, so I have to settle for documenting the
bug for now. Fortunately, there aren't anywhere near as many 82c168
boards around as there are 82c169s.
1999-04-14 19:40:08 +00:00
bde
f992ca2ebe Install kld.4.
Sorted lists.
1999-04-14 16:04:55 +00:00
ghelmer
87e630a6f0 Reference kldfind(2), kldfirstmod(2), kldload(2), kldnext(2), kldstat(2),
and kldunload(2).

Submitted by:	Chris Costello <chris@holly.dyndns.org>
1999-04-13 14:51:51 +00:00
ghelmer
95c59dd11f Add kld(4) man page. Copyright notice in PR submission was "???", which
I changed to "Christopher G. Demetriou" since the page appears to be a
revision of lkm(4).

PR:		docs/8611
Submitted by:	Rajesh Vaidheeswarran <rv@fore.com>
1999-04-13 13:23:11 +00:00
hm
6af7d3d290 Make sending the postcard optional (as suggested by phk). 1999-04-13 12:24:33 +00:00
grog
0bcfc4fae5 Update description of how to analyse kernel dumps. 1999-04-13 01:18:51 +00:00
des
6ce7c41dc1 Mention the new splash_pcx decoder. 1999-04-12 18:56:51 +00:00
n_hibma
01b92c3fc2 Fix typo's in previous commit. 1999-04-11 14:28:54 +00:00
n_hibma
e9a7687c50 Added information on how to use a USB mouse under XFree.
Supplied by: Kazutaka YOKOTA
1999-04-11 14:27:52 +00:00
nsouch
d209accdca Fix docs/10737 1999-04-11 13:24:32 +00:00
n_hibma
d7e60ed619 Corrections supplied by Kazutaka YOKOTA. 1999-04-11 12:21:47 +00:00
n_hibma
e168c05343 Add the manpages for ums and ukbd (USB mouse and keyboards) 1999-04-11 00:15:40 +00:00
foxfair
71e6903007 Correct a link problem with zh_TW.BIG5, make the display reasonable. 1999-04-10 12:22:25 +00:00
asami
51fc707de4 Remove ports-plan9, add ports-palm.
PR:		11019
Submitted by:	mharo@area51.fremont.ca.us (ports-supfile only)
1999-04-08 08:06:30 +00:00
wpaul
68fa0789d5 Dangit, forgot to add ti.4 to Makefile.
Pointed out by: bde
1999-04-07 14:42:55 +00:00
msmith
bcea080ba2 Document the new generic memory range management ioctls. 1999-04-07 04:03:51 +00:00
wpaul
477aac47c6 Add driver support for gigabit ethernet adapters based on the Alteon
Networks Tigon 1 and Tigon 2 chipsets. There are a _lot_ of OEM'ed
gigabit ethernet adapters out there which use the Alteon chipset so
this driver covers a fair amount of hardware. I know that it works with
the Alteon AceNIC, 3Com 3c985 and Netgear GA620, however it should also
work with the DEC/Compaq EtherWORKS 1000, Silicon Graphics Gigabit
ethernet board, NEC Gigabit Ethernet board and maybe even the IBM and
and Sun boards. The Netgear board is the cheapest (~$350US) but still
yields fairly good performance.

Support is provided for jumbo frames with all adapters (just set the
MTU to something larger than 1500 bytes), as well as hardware multicast
filtering and vlan tagging (in conjunction with the vlan support in
-current, which I should merge into -stable soon). There are some hooks
for checksum offload support, but they're turned off for now since
FreeBSD doesn't have an officially sanctioned way to support checksum
offloading (yet).

I have not added the 'device ti0' entry to GENERIC since the driver
with all the firmware compiled in is quite large, and it doesn't really
fit into the category of generic hardware.
1999-04-06 17:08:31 +00:00
wosch
ac11598c99 I've taken a pass through to add NetBSD and OpenBSD release dates,
and to shuffle the NetBSD and OpenBSD entries in the tree to line
the dates up with FreeBSD.

Submitted by: David Brownlee <abs@anim.dreamworks.com>
1999-04-05 21:51:32 +00:00
grog
9a0d570ac0 Represent the value 2**32 correctly in nroff. Previously, the troff
operator up was being omitted, and the result was 232, a slightly
lower value.

Observed-by: Bill Vermillion <bill@bilver.magicnet.net>
1999-04-05 01:53:39 +00:00
foxfair
6b90e271b5 Correct bits, make output format clearly. 1999-04-01 10:15:15 +00:00
asami
60c46fe782 Add ${DESTDIR} to installation path. Move target to under beforeinstall:.
Submitted by:	bde
1999-03-31 23:53:50 +00:00
sada
80d30c02c5 I'm sorry, this was already fixed in etc/mtree/BSD.var.dist.
Submitted by:	asami@FreeBSD.ORG
1999-03-31 15:38:38 +00:00
sada
64823da997 Sometimes we have to make `/var/db/pkg' directory before we create
`.mkversion' :)
Submitted by:	YAMAMOTO Shigeru <shigeru@bremen.or.jp>
1999-03-31 12:15:33 +00:00
asami
6b64c5f827 Create /var/db/pkg/.mkversion file with datestamp. 1999-03-29 23:02:29 +00:00
jfitz
30e4f5c5ef Document portmap_program and lpd_program
Suggested by: Bill Fumerola <billf@jade.chc-chimes.com>
1999-03-29 17:22:47 +00:00
kjc
1d23653385 typo fixes
PR:	docs/10738
Submitted by:Yamaguchi Takahiro tyama@titanium.crc.uec.ac.jp
1999-03-29 04:25:09 +00:00
grog
e0c069f119 Describe referenced states for plex and subdisk.
Remove BUGS entry for initializing RAID-5 plexes.

Get date right.
1999-03-28 08:50:11 +00:00
brian
4af7c4543d Increase the timeout and wait for ``PPP'' in the compuserve
example.

Submitted by: MALCOLM BOFF <Malcolm_Boff@compuserve.com>
1999-03-28 00:22:44 +00:00
grog
9371323838 Remove incomplete diagram in troff output only.
Typo: replace 'subvolume' with 'subdisk'.

Put a \& in front of a line starting with a period.

PR:  		docs/10809
Reported-by:	Kanenda
1999-03-27 00:22:34 +00:00
bde
08ae42f665 Fixed bitrot in synopsis. 1999-03-26 02:11:59 +00:00
wpaul
46d1476c95 Fix recurring typo: fine -> file 1999-03-25 00:52:44 +00:00
ghelmer
dad8823016 Mention securelevel 3 to match comment in rc.conf. 1999-03-24 14:07:33 +00:00
brian
3dee7f9088 Document natd_program 1999-03-24 10:28:16 +00:00
grog
7b7a50dd81 Cosmetic changes for troff output
Long-wished-by: joerg

Clarify yet again how to perform a newfs on a vinum volume.
1999-03-24 09:22:06 +00:00
bde
9c2168a7db Removed all traces of LN_FLAGS. It was only used to produce a link
/usr/sbin/sysctl -> ${DESTDIR}/sbin/sysctl in some versions of 2.2,
and this link was broken if DESTDIR was set.

Added a SYMLINKS macro.  This works the same as LINKS, except it
creates symlinks and the linked-to pathname may be relative.  This
is more flexible than LN_FLAGS, since it supports installing
symlinks independently of hard links.

Use `ln -f[s] ...' instead of `rm -f ...; ln [-s] ...' for LINKS and
SYMLINKS.  This is equivalent if the target is neither a directory nor
a symlink to a directory.

PR:		8279
1999-03-23 03:06:25 +00:00
alex
787e89e027 Typo fix (set --> get).
Obtained from:	OpenBSD (David Leonard)
1999-03-22 23:13:37 +00:00
bde
5a225bdc8c Restored objlink. The previous commit was confused about the difference
between OBJLINK and objlink.
1999-03-21 06:43:40 +00:00
foxfair
bde5fa25e5 Oops! forgot to introduce the src file in my last commit. 1999-03-20 13:23:48 +00:00
foxfair
3344a9499e Supporting locale for Chinese Big5 completely. 1999-03-20 11:49:23 +00:00
des
fc7305ab3b Document net.inet.ip.fastforwarding, and the fact that it bypasses the
ipfirewall code.

Submitted by:	Ruslan Ermilov <ru@ucb.crimea.ua>
1999-03-20 10:25:40 +00:00
billf
94ad656948 security(1) doesn't exist, but security(7) does.
PR:		docs/10478
Submitted by:	Oliver Fromme <oliver.fromme@heim3.tu-clausthal.de>
1999-03-20 04:03:56 +00:00
grog
4c56881d7d Clarify yet again that we need to synchronize the debug state of
kernel and userland modules.

Describe the superdevice method of ensuring that people at least
recognize the problem if they run into a debug synchronization problem.
1999-03-19 07:27:31 +00:00
msmith
11f83f2953 more $d -> %d fixes 1999-03-19 00:35:07 +00:00
msmith
1f060a3664 Fix some $d -> %d mistakes.
Submitted by:	crb@crbowman.erols.com
1999-03-19 00:33:31 +00:00
ghelmer
10d69fb387 Document the flags and p parameters to VOP_LOCK and VOP_UNLOCK. Also,
at Doug Rabson's suggestion, add vn_lock(9) as an alternative name for
this manpage and note its calling convention.

PR:		docs/9338
1999-03-17 20:17:32 +00:00
ghelmer
4392417506 Spelling and grammar fixes.
PR:		docs/10401
1999-03-15 16:01:22 +00:00
ghelmer
4e5edd6415 Fix reference (FreeBSD 3.0.1 -> FreeBSD 3.1), remove apparent typo,
and fix reference to sysctl(8).

PR:		docs/10428 docs/10482
1999-03-15 15:43:10 +00:00
billf
f4d5dd0649 1) line 76: "fine" should be "file"
2) line 80: "abso" should be "also"

PR:		docs/10496
Submitted by:	Osamu Mihara <mihara@prd.fc.nec.co.jp>
1999-03-15 02:49:13 +00:00
billf
004cc2c90f Typo - latter -> letter
PR:		docs/10591
Submitted by:	Kanenda <vanitas@ma3.seikyou.ne.jp>
1999-03-15 02:34:40 +00:00
alex
b57d846aa7 EACESS -> EACCES
Submitted by:	garath@code.ridgefield.org via OpenBSD
1999-03-15 00:14:16 +00:00
markm
827d59625f New names for the list; the DES crypt and libwrap for tcp_wrappers. 1999-03-14 20:45:05 +00:00
markm
c97ae836f7 Bitrot. Remove objlink as it is not pleasant to be downwind.
PR:		8071
Reviewed by:	Sheldon Hearn <sheldonh@iafrica.com>
1999-03-14 20:41:14 +00:00
billf
355875c486 Bring in some MASTER_SITE_{AFTERSTEP,WINDOWMAKER} from bsd.port.mk 1999-03-14 19:05:16 +00:00
grog
e9f0ce6010 Clarify the undesirability of static configuration.
Describe the problems of synchronization between userland and driver.

  Tripped-over-by: Chris Foote <chris@senet.com.au>
1999-03-13 07:49:52 +00:00
yokota
7f7490855d Oops, syscons.4 hasn't been added to Makefile! 1999-03-11 14:10:31 +00:00
ghelmer
fab929d85e erst0 -> ersa0
PR:		docs/9860
1999-03-07 18:57:50 +00:00
ghelmer
2e15f15ce0 MAKEDEV pty# makes 32 pty pairs, not 16.
PR:		docs/9879
1999-03-07 18:53:10 +00:00
hm
b9bb81ebe9 update misc i4b documentation to i4b release 0.71.00 1999-03-07 17:18:28 +00:00
bde
d6209f70c6 Removed old scsi section 9 man pages. Only cd.9 has been converted to
cam.  scsiconf.9, sd.9, and st.9 can now be found in the Attic.

Reviewed by:	ken
1999-03-06 19:03:31 +00:00
bde
8987c1baf2 Fixed bitrot in synopsis (devfs_link was renamed to devfs_makelink).
Didn't fix bitrot in this page's name; just install a link.
1999-03-06 17:37:20 +00:00
bde
01f64b5c61 Fixed wrong function prototype(s) in synopsis. 1999-03-06 17:25:50 +00:00
bde
15d674b3ae Fixed bitrot in synopsis (u_long changed to uintptr_t for portability). 1999-03-06 17:21:14 +00:00
bde
1b7889bbfd Fixed C syntax error in synopsis. 1999-03-06 17:14:24 +00:00
bde
a89e4f49cd Fixed bitrot in synopsis (const poisoning hadn't reached here). 1999-03-06 17:10:15 +00:00
bde
1d5b4f0e39 Fixed missing headers in synopsis. 1999-03-06 17:07:29 +00:00
bde
7aca67cebc Fixed bitrot in synopsis (fuword() and suword() changed to support alpha). 1999-03-06 17:04:18 +00:00
gibbs
ffa58ceaa8 Allocate a target mode instance to handle our target mode session, clean
it up on exit.  The address for attaching the emulator (path, target id,
lun) is now specified on the command line.  Some attempt at cathing
signals and cleaning up target mode instances is now made.
1999-03-05 23:12:02 +00:00
bde
504669ca2e Fixed bitrot in synopsis (some const poisoning hadn't reached here). 1999-03-05 18:43:00 +00:00
jkoshy
b46a413871 Typo fix.
PR:		docs/10348
Submitted by:	Chris Costello <chris@holly.dyndns.org>
1999-03-02 07:27:01 +00:00
grog
024d0d1fef Change some .Ar macros to .Pa.
Describe /dev/vinum/control*

Describe drive "referenced" state.

Remove warning about kldunload; it seems to work now.

Still more descriptions of how to debug things.
1999-03-02 07:03:30 +00:00
ghelmer
dd79f1e615 Add a missing word and change a "then" to "than".
PR:		docs/9304 docs/9822
1999-03-02 03:55:34 +00:00
ghelmer
d032ec5025 Apply mdoc macros, remove some spacing that caused unexpected line breaking,
and fix some spelling errors.  (I also took the liberty of converting the
reference to LKMs to KLDs.)

PR:		docs/9238 docs/9305
1999-03-02 03:45:47 +00:00
imp
8787d79872 Fix disorder introduced by me in the Euro part 2 locale commit.
Submited by: bde
(This was uncommitted for too long in my tree, but is well tested)
1999-03-01 06:05:58 +00:00
ken
b602e1693f Fix misspelling of Julian's last name. Oops. 1999-02-27 07:56:08 +00:00
kato
3793091474 The fe driver supports bridging, so added it to lists. 1999-02-25 10:48:31 +00:00
wpaul
0296536212 Minor updates for the ASIX AX88141, which is a newer version of the
AX88140A with power management and magic packet support. Correct the
addresses of the PCI power management registers and add some code to
detect the revision ID of the AX88141 and identify it in the probe
messages.

No other changes are needed since the AX88141 is functionally
identical to the AX88140A.
1999-02-23 01:52:42 +00:00
n_hibma
4cf3fa2025 Added man page usb uhci ohci 1999-02-21 16:56:33 +00:00
yokota
a3e231c179 Fix <back quote>/<logical not>/<vertical bar> key.
PR: i386/10130
1999-02-20 02:23:18 +00:00
fenner
a843a9216e Spell ".Fx" properly. 1999-02-18 16:53:29 +00:00
jkoshy
18501c04ab Document forward(1) better.
PR:		docs/10126
Submitted by:	Sue Blake <sue@welearn.com.au>
1999-02-17 03:39:39 +00:00
ache
164b54fbd5 back out obj/colldef PATH hack, it breaks cross-compiling per Bruce
There is _BUILD_TOOLS hack for. Plase all targets under it.
1999-02-15 15:11:07 +00:00
jkh
c7d9cbf559 away go lkms, in come klds. 1999-02-15 00:56:38 +00:00
nsouch
e0c0c55d0f Move lp.4 to man4. It is not i386 dependent.
Fix ppbus and lpt declaration ('0' forgotten). Add info about retrieving
printer status with 'cat /dev/lpt0'.
1999-02-14 16:22:27 +00:00
nsouch
27a54e2a9c Create new lpt manpage with ppbus info and the original lpt info.
Fix lp.4 ppbus terminology.
1999-02-14 12:06:16 +00:00
fenner
ea6135da57 Fix .Fx usage. 1999-02-13 21:45:58 +00:00
nsouch
3195c07540 Fix the date and add an smbus declaration 1999-02-13 18:08:35 +00:00
nsouch
37334c0e41 Add alpm.4, Aladdin Power Management SMBus support for the SMBus framework. 1999-02-13 17:48:41 +00:00
ache
8359a77c52 syntax change: allow symbolic names as substitute first arg
use this to substitute <ss>
1999-02-13 14:15:25 +00:00
dillon
d443f239de Clarify more of what VOP_LINK expects. 1999-02-13 07:56:49 +00:00
dillon
f4351f3b6f Update man page - directory vnode should not be unlocked or released
by the VOP routine.  The caller does it.
1999-02-13 07:44:14 +00:00
brian
7e7d5a25cb Add some examples of how to throw a window up on your display when
the peer demands authentication, and add some more detail to the
example configurations.

This is the first time I've written any TCL, so I'd appreciate it
if someone eyeballed the *-auth stuff and fixed any glaring problems.
1999-02-13 00:59:19 +00:00
ache
652b6fba36 substitute ss
Submitted by: "D. Rock" <rock@cs.uni-sb.de>
1999-02-12 21:14:41 +00:00
alex
95c394b70e Removed occurrences of consecutive repeated words (such as "the the"). 1999-02-12 02:12:08 +00:00
jdp
529608a5fb Use the fictional server "CHANGE_THIS.FreeBSD.org". Add comments
telling the user to (duh) change it.
1999-02-11 18:14:03 +00:00
jdp
316ad970a3 RELENG_3 is now "the" stable branch. 1999-02-11 18:04:17 +00:00
jdp
05f8ce6c14 Replace the out-of-date list of mirror sites with a reference to the
list in the FreeBSD Handbook.
1999-02-11 17:56:11 +00:00
brian
5917700a72 Add ppp example files. 1999-02-11 16:33:14 +00:00
yokota
8d9b8047a3 - Revise text, and fix typos and grammatical errors.
- Add syscons.4.

If there still are errors, whether technical or grammatical, they are
entirely mine, not the reviewers'.

Reviewed by: sos, jkh, archie, Nick Hilliard <nick@iol.ie>
1999-02-10 14:25:03 +00:00
des
a0d36e43b9 Remove the lpt(4) page, and fix references in the lp(4) and rdp(4) pages.
Also fix a language nit in the rdp(4) page.
1999-02-10 02:45:06 +00:00
ken
542b263658 Add a prioritization field to the devstat_add_entry() call so that
peripheral drivers can determine where in the devstat(9) list they are
inserted.

This requires recompilation of libdevstat, systat, vmstat, rpc.rstatd, and
any ports that depend on the devstat code, since the size of the devstat
structure has changed.  The devstat version number has been incremented as
well to reflect the change.

This sorts devices in the devstat list in "more interesting" to "less
interesting" order.  So, for instance, da devices are now more important
than floppy drives, and so will appear before floppy drives in the default
output from systat, iostat, vmstat, etc.

The order of devices is, for now, kept in a central table in devicestat.h.
If individual drivers were able to make a meaningful decision on what
priority they should be at attach time, we could consider splitting the
priority information out into the various drivers.  For now, though, they
have no way of knowing that, so it's easier to put them in an easy to find
table.

Also, move the checkversion() call in vmstat(8) to a more logical place.

Thanks to Bruce and David O'Brien for suggestions, for reviewing this, and
for putting up with the long time it has taken me to commit it.  Bruce did
object somewhat to the central priority table (he would rather the
priorities be distributed in each driver), so his objection is duly noted
here.

Reviewed by:	bde, obrien
1999-02-10 00:04:13 +00:00
dillon
efe5812ce3 Update diskless and templated booting examples 1999-02-09 17:44:00 +00:00
bde
87d5cdfa8d Copy from vendor branch. This mainly undoes most of the backing out of
Russian zones/rules in rev.1.12.  ache objected mainly to the changes
in the Moscow zone names in rev.1.11 and those changes have been backed
out in the vendor branch.

Reviewed by:	ache
1999-02-08 06:29:10 +00:00
yokota
9083305ced - Add atkbd.4, atkbdc.4, splash.4 and vga.4.
- Update pcvt.4 and psm.4 to reflect recent keyboard driver changes.
1999-02-07 05:40:14 +00:00
jkh
136db51ce2 Indicate that LKMs are obsolete, just to prevent confusion. 1999-02-05 09:35:46 +00:00
mjacob
53c7300e25 add a note about exclusive open 1999-02-05 08:06:05 +00:00
mjacob
07aef5baef document new features 1999-02-05 07:59:07 +00:00
mjacob
0f5cb656a4 minor tweaks 1999-02-05 07:48:26 +00:00
grog
1b66210e2a More nit-picking in the debugging instructions.
Get the rc.conf description right.
1999-02-05 00:34:21 +00:00
markm
a14ff10255 Add the perl man pages to the "whatis" building list.
RELENG_3 candidate.
1999-02-04 11:54:30 +00:00
jkoshy
3f25589186 Typo fix. Remove reference to non-existent edit(1).
Pointed out by:	Sue Blake <sue@welearn.com.au>
1999-02-04 07:13:49 +00:00
grog
ddb81d8b86 Change description of dump analysis and crash to reflect the two
.gdbinit files.
1999-02-04 05:01:14 +00:00
asami
51e7b7296b Remove commented out definition of FTP_PASSIVE_MODE, it is (and has always
been) an environment variable and doesn't belong here.

Pointed out by:	cnh@ems.mindspring.net, sanpei@yy.cs.keio.ac.jp
1999-02-03 22:25:41 +00:00
wollman
5969e9da8d Merge from vendor branch. Includes functional updates for:
Egypt, Cyprus, Israel, Japan, Australia, Fiji, Brazil,
	Mexico, Nicaragua

PR:		8632

Obtained from:	ftp://elsie.nci.nih.gov/pub/tzdata1999b
1999-02-02 19:12:22 +00:00
mpp
a6b9e3e3ce Fix some spelling errors. 1999-02-01 22:55:54 +00:00
grog
9f6bfe3b2f Minor changes in formulation. 1999-01-31 01:10:36 +00:00
jdp
934d12e73e Remove the SVR4 examples. Folks, no binaries are allowed in the
repository.  Also no uuencoded files should be added.
1999-01-30 18:03:31 +00:00
nsouch
c9bc4bf009 ppbconf.9 removed 1999-01-30 15:33:20 +00:00
nsouch
211ce41456 Improve ppbus(4) microsequencer description. Remove ppbconf.9 which is
to rapidly depreciated.
1999-01-30 15:32:41 +00:00