Commit Graph

5925 Commits

Author SHA1 Message Date
wiz 289b43b8f2 There is no vn_unlock; remove Xref and replace with explanation why not,
provided by fvdl. While here, ispell.
2002-06-11 23:56:21 +00:00
wiz 3593723af0 Change i4b xrefs to isdn xrefs. 2002-06-11 23:31:01 +00:00
lukem cbc959037f add CAT here too 2002-06-11 16:25:11 +00:00
mason c86d6704bc Use the new cat(1) locking functionality - should solve PR toolchain/16963.
If all goes well, will submit a batch of pull-up requests for netbsd-1-6
presently to bring these additions and fixes into 1.6.
2002-06-10 18:47:12 +00:00
mason 7e7e806c7e Add cat(1) as a host tool. 2002-06-10 18:32:28 +00:00
fredette 964be1b6b3 Add cases for hppa. 2002-06-10 14:14:47 +00:00
itojun bb0b85187b SIOCSIFADDR/IFDSTADDR destroys outer address settings, therefore, we need to
do "ifconfig tunnel C D" after "ifconfig A B".  i believe the behavir is weird
and non-intuitive, and should be fixex.
2002-06-10 02:49:35 +00:00
wiz c39fdd3f85 While we're rototilling the man page: Use more markup; grammar fixes;
remove another reference to unsupported AppleTalk; update .Dd.
2002-06-09 20:05:55 +00:00
itojun 4d660387a6 gre(4) supports IPv4/AppleTalk/NS over IPv4, not just IPv4 over IPv4. 2002-06-09 19:47:03 +00:00
itojun 7864ca478f deprecate IFF_LINK2, !IFF_LINK0 is enough.
no need to manipulate IFF_LINK1 with IFF_LINK0.
remove reference to greconfig(8).
2002-06-09 19:17:43 +00:00
martin a990d7ac62 Oops, typos in the new example.
Also note that the new example is a good example for LINK1 useage, so add
that as well.
2002-06-09 12:19:39 +00:00
martin 79e1630f17 Improve a bit, add another example, remove a bogus BUGS entry, add a note
for MTU adjustment.
2002-06-09 10:44:57 +00:00
itojun 608d40cf27 sync LIBxx with bsd.prog.mk
XXX bsd.prog.mk and bsd.hostprog.mk defines very similar thing
- can we unify them? at least the definition?
2002-06-09 04:04:32 +00:00
itojun 081662bc11 tell about MTU size limitation 2002-06-08 23:21:36 +00:00
wiz 8999a8b386 End sentence with a dot, not a comma (misc/17197 by Julio Merino), and mark up
a bit more.
2002-06-08 22:19:54 +00:00
itojun bd9254cae6 note that we intentionally violate RFC2553 for security reasons 2002-06-07 17:33:07 +00:00
itojun 55b021bea9 reorder sentence for clarity 2002-06-07 17:28:46 +00:00
wiz c8f923975f Sort SEE ALSO. 2002-06-07 11:15:45 +00:00
gmcgarry d0c1fe487d Document USERCONF and PERFCTRS 2002-06-06 21:05:05 +00:00
tron 366c558a3e Add TOEFL. 2002-06-06 20:28:40 +00:00
augustss 3bd8775b6d Note that cs can attach to mainbus on pmppc. 2002-06-05 06:54:23 +00:00
augustss 3745c48073 Fix typo. 2002-06-05 06:53:26 +00:00
thorpej fc4bb28e9c Don't -I${DESTDIR}/usr/include without -nostdinc'ing, first. Some
versions of GCC are unhappy with that.
2002-06-05 02:47:56 +00:00
thorpej 055791361b Some changes to facilitate fixing the toolchain issue on ns32k:
* Don't make OBJECT_FMT dependent on USE_NEW_TOOLCHAIN.  All ports
  except ns32k are ELF, so set it appropriately.  Allow it to be
  overridden in the ns32k case.
* If ns32k && USE_NEW_TOOLCHAIN, don't build shared libraries, because
  external toolchains don't support them for our a.out.
* If ns32k && OBJECT_FMT == ELF, the GNU platform is "netbsdelf".
* If ns32k && USE_NEW_TOOLCHAIN, don't attempt to build the in-tree
  binutils 2.11.2, gdb 5.0, or gcc 2.95.3.

This allows us to do USE_NEW_TOOLCHAIN cross-builds to ns32k using
an external toolchain.
2002-06-05 02:42:09 +00:00
thorpej a46ef4e6ab Don't use -traditional-cpp if HAVE_GCC3. 2002-06-04 21:14:59 +00:00
thorpej f7e9eefade Add case for armeb. 2002-06-04 21:13:21 +00:00
isaki ae114ad44f add factor_denom. 2002-06-04 14:09:34 +00:00
itojun 75e5289eda typo 2002-06-03 09:12:16 +00:00
wiz 2f6c445df5 Improve mdoc, and correct the example of how to create mixerctl.conf. 2002-06-02 19:07:25 +00:00
jmcneill 3d886831b0 Remove clause #3 (forgot to remove it before the original commit) 2002-06-02 19:05:09 +00:00
jmcneill 29ed807363 mixerctl.conf(5) documentation. 2002-06-02 18:55:08 +00:00
pooka 5e4c038a45 Reflect bsd.doc.mk rev 1.52 here, and make sure that ROFF uses MACROS.
This has the effect of the postscript output actually being readable.
2002-06-02 17:40:44 +00:00
drochner deb9ae080c update uvm_page_physload() description for "waitok" and "nsegs"
obeyed now, and clarify "rlist" initialization.
2002-06-02 14:59:11 +00:00
wiz 835deee1f9 Document ipkdb_trap based on comments by ws. 2002-06-02 11:21:53 +00:00
lukem 06de426449 SIMPLEQ rototill:
- implement SIMPLEQ_REMOVE(head, elm, type, field).  whilst it's O(n),
  this mirrors the functionality of SLIST_REMOVE() (the other
  singly-linked list type) and FreeBSD's STAILQ_REMOVE()
- remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD().
  this mirrors the functionality of SLIST_REMOVE_HEAD() (the other
  singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD()
- remove notes about SIMPLEQ not supporting arbitrary element removal
- use SIMPLEQ_FOREACH() instead of home-grown for loops
- use SIMPLEQ_EMPTY() appropriately
- use SIMPLEQ_*() instead of accessing sqh_first,sqh_last,sqe_next directly
- reorder manual page; be consistent about how the types are listed
- other minor cleanups
2002-06-01 23:50:52 +00:00
bouyer 3a63a4122e Note DFE-580TX 2002-06-01 17:33:21 +00:00
wiz 4edf535225 For macro arguments, separate punctuation from the argument so that the
punctuation does not get marked up with it.
2002-06-01 09:16:08 +00:00
lukem 874c812dae correct descriptions of SLIST_REMOVE_HEAD() and SIMPLEQ_REMOVE_HEAD() 2002-06-01 06:08:07 +00:00
nathanw d7d367fd73 Couple of .Dv fixes. 2002-06-01 00:27:19 +00:00
wiz bed7ab561f Add MAKEDEV(8) for pmppc, and install it. 2002-05-31 12:20:49 +00:00
wiz 8f713e513e Descend into man4.pmppc. 2002-05-31 12:20:32 +00:00
wiz 262278751f regen (wd) 2002-05-31 12:16:41 +00:00
wiz 49a4c133ce regen (scif, sci) 2002-05-31 12:16:29 +00:00
wiz a71c7fba62 Use standard directory name (man4.pmppc instead of man.pmppc). 2002-05-31 12:11:17 +00:00
kleink bb1e88c03b Add missing bus_space_vaddr(9) link. 2002-05-31 11:11:26 +00:00
augustss 819220dbb3 Add some man pages. 2002-05-31 10:43:28 +00:00
augustss 8ff8887643 Put some info in this file. 2002-05-31 00:01:39 +00:00
augustss b8f3581f52 Add a place for pmppc man pages. 2002-05-30 23:45:23 +00:00
augustss b889804e98 Add pmppc. 2002-05-30 23:38:19 +00:00
itojun 8dea09ecf9 comment 2002-05-30 21:55:14 +00:00
msaitoh 0a2fcbab95 remove duplicated -Wpointer-arith when WARNS=2 2002-05-30 21:44:07 +00:00
itojun dbbcec2c04 have bsd.endian.mk, which detects target endian.
generate *.db in target endian.  (see tech-userlevel for discussions)
2002-05-30 21:40:47 +00:00
itojun f75be30e68 comment; no need to care about endianness, as DB keys are ascii strings
(modulo possible DB lookup performance issue)
2002-05-30 10:45:03 +00:00
itojun 784d7467c1 remove comment about route(8), which does not really fit here. 2002-05-29 23:40:25 +00:00
bjh21 bf9ec67e38 Add fgen as a host tool, used for sys/arch/sparc/bootblk. 2002-05-28 21:56:05 +00:00
wiz 78f4a66615 Drop trailing spaces. 2002-05-28 11:41:45 +00:00
itojun f8b9b40efd add arc4random(9). 2002-05-28 11:35:40 +00:00
itojun 7c04a2ebc6 nroff fixes, from openbsd via kame 2002-05-28 11:34:44 +00:00
grant 05429892c8 add ref to atactl(8) 2002-05-28 04:10:17 +00:00
grant 5eb3939919 add ref to scsictl(8) 2002-05-28 04:08:52 +00:00
bjh21 4f4c426502 Change the end of caps mode from <font size="+0"> to </font>. This gets the
tag nesting more correct, and is necessary to get the INSTALL notes to
render correctly in Konqueror.  The results still look sensible in w3m,
Lynx and Mozilla.
2002-05-27 17:46:55 +00:00
wiz bdc63189e4 Uppercase PCB. 2002-05-25 11:40:02 +00:00
wiz 7dc225507c Improve formatting. End list with .El. 2002-05-25 11:37:34 +00:00
wiz f53504b9e9 Standardize spelling. 2002-05-25 11:08:21 +00:00
wiz 1d4b57bbcf ispell 2002-05-25 11:07:28 +00:00
wiz 58fa596f1c Remove a superfluous 'no'. kern/17022 by John Heasley. 2002-05-25 10:45:39 +00:00
wiz 171f5bbdd8 Fix Dt. 2002-05-25 10:44:38 +00:00
wiz 24a55aa86f Fix Xref. 2002-05-25 10:44:22 +00:00
gmcgarry fc81003482 Document some mandatory machine-dependent interfaces. Addresses PR16272. 2002-05-25 02:16:35 +00:00
itojun ed0f646e43 have an example with blowfish password. 2002-05-24 04:17:44 +00:00
itojun c89c003ed2 support bcrypt password. can be chosen by "blowfish" keyword in passwd.conf.
from openbsd
2002-05-24 04:02:47 +00:00
hubertf 89b73d6b18 add SRC definition (and use it, instead of hardcoding ../../..) 2002-05-23 00:03:38 +00:00
tv 3479915ba0 And it would probably be nice if 1.6 were reflected in the list of version
numbers.
2002-05-22 03:27:52 +00:00
tv 9f4e74bc62 1.6 has branched. Welcome to "NetBSD 1.6A". 2002-05-22 03:18:19 +00:00
lukem 765dc83a3e add AFAIU and AIU. from <dive@endersgame.net> in [misc/15905] 2002-05-21 12:01:09 +00:00
wiz 180ed1d2e0 Add man pages for bm(4), gm(4), and mc(4). Some helpful
information provided by Michael Wolfson and various people on port-macppc.
2002-05-21 00:49:54 +00:00
wiz 5bbb967491 For consistency, use MLINKS, not LINKS. 2002-05-20 16:21:32 +00:00
pooka 0bcdf55e14 gio first appeared in 1.5 2002-05-20 16:19:50 +00:00
thorpej 0ee3170e4d Add cases for "armeb" (big-endian ARM). 2002-05-20 14:34:07 +00:00
yamt f3b8388799 TIOCSLINEDD -> TIOCSLINED 2002-05-20 13:50:26 +00:00
wiz a6fb50b6d1 Two fixes from John Heasley via port-sparc/16910. 2002-05-19 22:28:16 +00:00
wiz 8221433490 mdoc improvements and typo fixes. 2002-05-19 20:47:26 +00:00
pooka 166eb00bf3 add man4.sgimips 2002-05-19 20:39:18 +00:00
pooka 8c6d354d5c man-pages for hardware found in indy/indigo2 2002-05-19 20:38:52 +00:00
wiz 4ec2ce6e75 mdoc police, and a slight grammar improvement. 2002-05-19 15:24:35 +00:00
lukem 96e2ff62c8 Add two new rc.conf(5) variables:
rc_rcorder_flags		extra flags to rcorder(8) in /etc/rc
    rcshutdown_rcorder_flags	extra flags to rcorder(8) in /etc/rc.shutdown

This can be used to specify extra directories to search for rc.d scripts in.
For example, adding the following to rc.conf(5):
	rc_rcorder_flags="/usr/pkg/etc/rc.d/*"
	rcshutdown_rcorder_flags="/usr/pkg/etc/rc.d/*"
will add the files in /usr/pkg/etc/rc.d to the list of files that rcorder(8)
uses to build the list of scripts to start or stop.

I proposed this functionality on tech-userlevel@ over one month ago.
Closes the recent [misc/16888], which asked for a similar feature.
2002-05-19 01:01:32 +00:00
sommerfeld f5b0c9f28f Describe swizzled vs. unswizzled interrupt fun 2002-05-18 23:03:19 +00:00
david 1a7e4e2260 Note what this device does. (Thanks Jason! ;-) 2002-05-16 03:50:54 +00:00
bouyer 30ff94427d Note PERIPH_CAP_DT for DT clocking capability, and that CAP_SYNC/CAP_WIDE*
is for ST clocking only.
2002-05-15 11:17:32 +00:00
bjh21 190d94f4ca Add a symbol for IEEE Std 1003.1-2001. 2002-05-15 10:11:15 +00:00
bjh21 bfff10410a Add a symbol for IEEE Std 1003.1-2001. 2002-05-14 18:26:37 +00:00
kleink 01cffcf64c Sync with headers: u_int16_t -> in_port_t. 2002-05-13 08:23:58 +00:00
ichiro 8597354bd2 s/RL8150/RTL8150 2002-05-13 05:41:31 +00:00
wiz d30d25dc1a Spelling fixes, from Sergey Svishchev in kern/16650. 2002-05-12 15:48:36 +00:00
uch f0d5a0eb69 document sh3 and hpcsh usage. 2002-05-09 16:42:16 +00:00
scw bf8faa9dd5 Update to reflect FT8U232AM support. 2002-05-08 18:11:28 +00:00
lukem 2ba24b706f remove now-unnecessary SPARCINSTALLBOOT 2002-05-07 12:13:54 +00:00
onoe e932e8f432 Add some CF cards: D-Link DCF-650W, Symbol Wireless Networker,
Linksys Instant Wireless
2002-05-07 09:56:32 +00:00
eeh 25dfe267a1 Don't add -DBIGPIC to APICFLAGS. 2002-05-07 02:06:32 +00:00
eeh 90c1726789 Turn on 32-bit relocations for sparc64 PIC code. 2002-05-07 01:45:45 +00:00
jdolecek 6662805edf Add pointer to /usr/share/examples/fstab/ to FILES section.
Remove mount_*(8) xrefs, leave just mount(8).
2002-05-04 19:50:36 +00:00
jdolecek 074863cac2 Move the sample fstab files to /usr/share/examples/fstab/. Duplicates
or very similar configs removed.
2002-05-04 19:43:57 +00:00
kleink 98807c1129 Add PREPMKBOOTIMAGE. 2002-05-03 20:38:42 +00:00
lukem d0b659b09f installboot.old nuked, so give man page the same treatment 2002-05-03 15:40:12 +00:00
lukem 48ee444a69 program nuked, so give man page the same treatment 2002-05-03 15:39:22 +00:00
lukem d918d8f74f Move the METALOG from ${_SRC_TOP_OBJ_} to ${DESTDIR}.
There were too many synchronisation problems with using the former;
including situations such as a "make clean" performed between two
installs to the same DESTDIR would result in a truncated METALOG and
the resultant sets would be missing stuff such as include files that
don't get reinstalled if they haven't changed, even with !UPDATE.
2002-05-03 08:58:45 +00:00
simonb e8fbd2c7f5 Make the ELF2ECOFF assignment an "?=" assignment so it won't override the
setting in bsd.own.mk.
2002-05-02 13:13:53 +00:00
sommerfeld 36dc09c47d make(1) specifies, regarding :: targets:
Sources for a target do not accumulate over dependency lines
	when this operator is used.

An unstated implication of this is that when parallel builds are done,
each separate instance of the target can be scheduled independantly.
As a result, the linksinstall target with commands could be executed
too early during a parallel build since they didn't actually have a
dependancy on "realinstall".

To fix this, correct the linksinstall:: realinstall dependancy by
eliminating the command-less linksinstall target, and moving the
dependancy to the other linksinstall target.
2002-04-30 14:29:01 +00:00
wiz 61f5aedc2a sh3e[bl] uses new toolchain, so remove an .elsif that doesn't make sense
anymore.
2002-04-29 19:27:07 +00:00
lukem 3d13a59112 - deprecate ip6forwarding in favour of ip6mode
- various grammar fixes
2002-04-29 10:27:14 +00:00
lukem 8323badb7a deprecate $sshd_conf_dir (and hardcode as "/etc/ssh").
$sshd_conf_dir wasn't as flexible as liked (it didn't work for ssh(1),
host keys or known_hosts).
2002-04-29 05:56:25 +00:00
atatat 66ffa38431 Provide some documentation on the EPASSTHROUGH new world order. 2002-04-28 14:13:38 +00:00
groo d11fdcc492 Complete the switch to NEW_TOOLCHAIN for sh3e[lb]. 2002-04-26 19:16:04 +00:00
lukem 248bbf896e Document NETBSDSRCDIR & UNPRIVED.
Reword BSDOBJDIR and BSDSRCDIR descriptions.
2002-04-26 16:24:06 +00:00
lukem 82172c42f6 Implement NETBSDSRCDIR, which is the top level of the NetBSD source tree.
Defaults to the directory determined by the _SRC_TOP_ logic (if != ""),
and the BSDSRCDIR.

NETBSDSRCDIR has been provided for use by the various NetBSD source
Makefiles to find the top of the NetBSD source tree, and isn't
affected by the inheritance properties of _SRC_TOP_, nor does it
have the magic BSDOBJDIR baggage that BSDSRCDIR is stuck with.
2002-04-26 15:02:02 +00:00
lukem 46569c985e Revert part of previous; don't set _SRC_TOP_ to BSDSRCDIR if it can't be
determined, since BSDSRCDIR's default of /usr/src might not exist and the
calculation of _SRC_TOP_OBJ_ would then generate a warning :-(.
_SRC_TOP_ can now == "" if make(1) (or a parent make(1)) was started
outside of the NetBSD source tree.

Now, if _SRC_TOP_ != "",  BSDSRCDIR defaults to ${_SRC_TOP_} and
BSDOBJDIR defaults to the objdir of ${BSDSRCDIR}.

Failsafe defaults for BSDSRCDIR (/usr/src) and BSDOBJDIR (/usr/obj)
are provided later in the file.

This should result in a usable BSDSRCDIR default (i.e, _SRC_TOP_ if
running from within the source tree), with safe fallbacks as appropriate
(/usr/src, as always), meaning that BSDSRCDIR should be able to be used
instead of _SRC_TOP_ in the source tree, although I need to carefully
test this.  *aaaiiiieeee!!!*.  (Now I understand some of Todd's pain :)
2002-04-26 14:27:23 +00:00
wiz 23b4e81d1c Sort sections. 2002-04-26 02:28:32 +00:00
wiz 7454d828a0 Sort SEE ALSO, and update date for aac addition. 2002-04-26 02:26:46 +00:00
ad 77e08f053a Add a driver for Adaptec FSA RAID controllers, as often found in Dell
servers. Based on the FreeBSD/OpenBSD versions.
2002-04-26 02:05:07 +00:00
lukem 39a9178088 - Improve wscons.conf(5)
- Add support for "setvar", which allows setting of arbitrary wsconsctl(8)
  variables.  Per email on tech-userlevel from Julio Merino <jmmv@hispabsd.org>
2002-04-26 00:06:53 +00:00
kleink d4fbf896be Note eso(4) attachment. 2002-04-25 00:59:25 +00:00
kleink 7d15aed65e Attach joy(4) at eso(4). 2002-04-25 00:57:47 +00:00
lukem 2c1cfc8e8c - in <bsd.files.mk>, don't clear FILES after using it, as that prevents
make -V FILES
  from being useful (and given that every other variable can be
  extracted using make -V, the behaviour was unusually inconsistent
  given that the original reason for clearing it doesn't seem to be
  relevant anymore)
- use <bsd.prog.mk> instead of directly including <bsd.files.mk>
  (and possibly <bsd.man.mk> or <bsd.own.mk>)
- remove obsolete NOPROG
2002-04-24 08:18:45 +00:00
bouyer 357e8d94bd Fix copyright notice. 2002-04-23 20:10:28 +00:00
wiz 9e12203110 Fix typo. 2002-04-23 20:01:54 +00:00
wiz 2d35a565b6 Fix Dd, sort SEE ALSO. 2002-04-23 19:59:39 +00:00
bouyer 410d0594cd Add a man page for esiop. While I'm there remove references to ncr(4). 2002-04-23 19:38:57 +00:00
wiz 162a640859 Fix a typo and drop a space. 2002-04-23 12:07:47 +00:00
augustss c17732b6e5 Add skeleton man pages for acpi drivers. 2002-04-23 12:01:16 +00:00
lukem 756722c3c1 Overhaul how _SRC_TOP_ is determined, ensuring that it will be set to
${BSDSRCDIR} if make(1) is running outside of the NetBSD source tree.
This should solve various issues, including building xsrc which uses
${BSDSRCDIR}/distrib/sets/maketars.
2002-04-23 07:20:22 +00:00
bjh21 93fb47689e Sun Workshop C 5.0 objects to generating object files with suffixes other than
.o.  Work around this by generating host object files with a .lo.o suffix and
then renaming to .lo.
2002-04-23 00:15:45 +00:00
wiz 2eb0022dc2 Sort sections. 2002-04-22 21:10:55 +00:00
ad 9a09578e25 Add a driver for ICP-Vortex GDT and Intel Storage RAID controllers. Parts
taken from OpenBSD. Test hardware kindly provided by Intel. This still needs
management bits, and doesn't support older controllers, but that shouldn't
be hard to fix.
2002-04-22 21:05:19 +00:00
enami d60499e75b Fix sample code:
- Put single space around binary operator or after a comma.
- Lineup case label with switch().
- ANSIfy.
- Use \e to print \.
- Deref the pointer to get a value.
2002-04-22 08:44:05 +00:00
itojun 49d6a0d5af document MKxxx/NOxxx naming rule. 2002-04-19 03:08:05 +00:00
dillo c0e4591901 regenerate (nuke wrong pms(4) reference) 2002-04-19 01:38:33 +00:00
dillo 0278f5dfcc Add special case: /dev/pms should refer to opms(4) (if it existed), not
to pms(4).  Noted by Thomas Klausner.
2002-04-19 01:34:41 +00:00
wiz e6eba7ad82 regen (opms removal) 2002-04-18 15:45:23 +00:00
dillo 9e86aef083 Escape empty rcs id so it doesn't get expanded in the awk script. 2002-04-18 13:33:01 +00:00
wiz 002e5a7e4a regen (pms0 removal) 2002-04-18 13:29:53 +00:00
wiz 209ec59377 regen (opms(4) removal) 2002-04-18 12:59:06 +00:00
bouyer d1f3cfb2c3 Document SIOP_SYMLED option. 2002-04-18 12:54:56 +00:00
wiz c6dc851f64 Remove opms(4) and its device, /dev/pms0, from the i386 port, because
it has been obsoleted by pms(4).

Reviewed by fvdl and christos.
2002-04-18 12:54:09 +00:00
lukem 9b40da66ac improve /etc/rc.conf.d/* documentation, as per reminder from matt green. 2002-04-18 12:13:07 +00:00
lukem 0e798bbe1e minor improvements, including consistency in how variables are formatted. 2002-04-18 11:14:33 +00:00
dillo d9b6f49377 Fix PR 13923:
Rewrite MAKEDEV2manpage.pl in AWK and sh.
Add makedevs target to create MAKEDEV.8 man pages

Reviewed by Thomas Klausner.
2002-04-17 23:42:27 +00:00
kleink 4f8ed47fe8 Import tzdata2002c. 2002-04-16 18:36:13 +00:00
kleink 10e70e7bb6 Import tzdata2002c. 2002-04-16 18:35:39 +00:00
wiz 5040dc6d7d Remove last(?) traces of pmsi. 2002-04-16 11:49:54 +00:00
itojun 9b96df2ed3 NOCRYPTO is no longer used and has no effect, so remove documentation 2002-04-16 03:47:32 +00:00
gmcgarry fd08163598 Replace vax-specific cross references with MI ones. 2002-04-16 02:53:16 +00:00
simonb 2e3d50dbd3 Add algor and evbmips attachments. 2002-04-15 07:33:27 +00:00
martin 20cec68f36 Fix copyright notice. 2002-04-14 11:42:55 +00:00
lukem 987817d952 add ELF2ECOFF 2002-04-12 05:08:53 +00:00
martin adbd854114 Sync with /etc/defaults/rc.conf: remove isdn_autoupdown and isdn_interfaces. 2002-04-11 13:20:22 +00:00
martin 876d3c9146 Add an example for the new "autoupdown" keyword. 2002-04-11 09:08:19 +00:00
lukem 0476c683f0 replace BSDSRCDIR with _SRC_TOP_, since the latter is more likely to
be "accurate".  document _SRC_TOP_.
2002-04-10 15:05:41 +00:00
jdolecek a4fee01be9 Only attempt to make the machine links for targets 'depend', 'all',
'dependall'.
This fixes misc/16227 by Stoned Elipot.

XXX this solution is not ideal
2002-04-09 17:14:38 +00:00
wiz 8237994500 No more arm32. 2002-04-08 12:25:22 +00:00
wiz 31430d144f Add MAKEDEV(8) for algor, cats, evbsh3, mvmeppc, playstation2, shark;
remove the one for arm32.
2002-04-07 15:28:43 +00:00
isaki d94d75b353 Delete BUGS section.
Broken recording and bad quality is now fixed.
2002-04-07 15:06:12 +00:00
lukem 84505c7adf fix comma 2002-04-07 04:20:17 +00:00
jdolecek a5abace5e2 Do what rev. 1.50 intented using .BEGIN, g/c target 'machine-links'.
Making ${OBJS} and ${DPSRC} depend on target which is always out of date is
_really_ bad idea.
2002-04-06 17:49:02 +00:00
wiz 779da7b65b No .Pp before .Sh. 2002-04-05 23:25:36 +00:00
wiz d2c35cc474 Various fixes, from spelling to mdoc. 2002-04-05 23:19:31 +00:00
thorpej 09ebc46c6e Document the interrupt mitigation microcode option. 2002-04-05 20:01:41 +00:00
bouyer 99ff14de48 Add a man page for mstohz() 2002-04-05 18:30:32 +00:00
gmcgarry b4f31e9e93 hpib devices attach to hpibbus? 2002-04-05 05:37:22 +00:00
lukem 7ee66d710d now using the MI installboot 2002-04-04 23:03:24 +00:00
lukem 266f41b284 add INSTALLBOOT. sort some entries in bsd.sys.mk 2002-04-03 05:32:58 +00:00
augustss b3d17dfe30 Xref urlphy. 2002-04-02 20:45:40 +00:00
ragge ba1c5e4c6b Add Lulea. Someone may want to call me. 2002-04-02 20:21:59 +00:00
heinz 7719786762 wording 2002-04-02 14:16:34 +00:00
heinz 87e2a62572 typos 2002-04-02 14:14:45 +00:00
lukem d213d804f7 Rename MEMORY_DISK_SIZE (formerly MINIROOTSIZE) to MEMORY_DISK_ROOT_SIZE,
which was suggested by Izumi Tsutsui <tsutsui@ceres.dti.ne.jp> as
being more consistent with what it's controlling...
2002-04-02 05:30:34 +00:00
garbled ed4b98d40c This file had gotten out of date with /etc/defaults/rc.conf and caused sushi
to be very unhappy with life.  Audited this file again, which should
bring it back in line, and fix the problem noted by Bill Studenmund.
Thanks for taking the time to find the bug Bill.
2002-04-02 03:00:05 +00:00
chs 272a0d7448 correct and clarify the previous revision. 2002-04-01 17:30:02 +00:00
bjh21 15b0cb61a9 Add a default for CAP_MKDB. 2002-04-01 13:30:24 +00:00
bjh21 c3e2abe891 Add CKSUM. 2002-03-31 15:01:39 +00:00
bjh21 c18727ccec MACHINE_ARCH can't be "arm26", so don't bother checking for that. 2002-03-31 14:59:04 +00:00
bjh21 407daa978b Provide a default for PWD_MKDB. 2002-03-31 11:48:45 +00:00
matt 6c83577293 Change VAX to default to new toolchain. 2002-03-30 21:53:27 +00:00
bjh21 5169d40111 cap_mkdb -> ${CAP_MKDB}
This helps with building on Linux.
2002-03-30 19:09:52 +00:00
tv 75032d5369 COPTS is for target objects, not host objects. 2002-03-29 18:58:19 +00:00
wiz c5fcadba34 Sort sections, sort SEE ALSO. 2002-03-29 16:23:50 +00:00
bjh21 ba310d53be Document that COMPAT_LINUX works on arm as well.
While we're here, downcase all the architecture names and put them in
alphabetical order.
2002-03-29 16:07:39 +00:00
martin 7796c0f420 Add a man page for the nell driver, document current state and limitations. 2002-03-29 10:23:07 +00:00
manu f5542b6481 Added uvm_swap_stats() 2002-03-29 08:56:31 +00:00
ichiro 7ed7b1185b s/RL8150L/RTL8150L 2002-03-29 04:50:42 +00:00
wiz e64116ef31 mdoc fixes, and correct HISTORY section. 2002-03-29 00:00:11 +00:00
ichiro f51a1295d1 add url(4) 2002-03-28 21:38:09 +00:00
ichiro 40e484a087 add simple manual for url(4) 2002-03-28 21:35:28 +00:00
eeh fe394d06b6 Explicitly document previously undocumented (and changed) semantics
of pmap_clear_reference and pmap_clear_modify.
2002-03-28 18:22:20 +00:00
matt c670c2a754 Don't complain if vax && ELF. 2002-03-28 06:59:39 +00:00
thorpej f448e157d7 Manual page for the Intel i8254x Gigabit Ethernet driver. 2002-03-28 05:07:58 +00:00
lukem 5ee7ac8886 Replace $critical_filesystems_beforenet with $critical_filesystems_local .
Replace  $critical_filesystems            with  $critical_filesystems_remote .

The new names are now consistent with the type argument that
mount_critical_filesystems() is called with, and allows for other types to
be easily supported by that function.

For backwards compatibility purposes, if the now obsolete variable is defined
(even empty), it takes precedence over the new form, and you will be warned.
If you want to stop the warnings, update your rc.conf(5) settings!
2002-03-27 08:53:39 +00:00
eeh f0a7e18ff6 Use the medium low model for sparc64 programs that don't 2GB of data segment. 2002-03-27 05:40:54 +00:00
eeh 72feb11b6e Reserve %g4 for backwards compatibility with the old ABI. 2002-03-27 05:39:00 +00:00
fredette ba0d9b105c In the machine-links target, the sun2 also needs a sun68k symlink.
Plan ahead and make it on the sun3 also.
2002-03-26 23:13:08 +00:00
wiz 4a4415baa7 End sentence with a dot, not a comma. 2002-03-25 19:32:26 +00:00
wiz f476686b6c mdoc fixes 2002-03-25 19:27:45 +00:00
martin 156d335bb2 Add man page for the Fritz!PCI ISDN card driver 2002-03-25 19:15:35 +00:00
shiba a3b10f5127 Switch mac68k to ELF. Now the default executable binaries are ELF.
Approved by Scott,briggs,fredb,wormey
2002-03-25 14:03:05 +00:00
kent e242265100 Mention /usr/lkm/{compat,exec}_pecoff.o
Correct URLs
2002-03-25 10:17:29 +00:00
wiz afc5670acb Fix installation subdir. 2002-03-24 22:36:30 +00:00
wiz cf831b4830 Fix installation subdirectory. 2002-03-24 22:35:21 +00:00
bjh21 79df6e9339 Rename arm26 -> acorn26. 2002-03-24 22:32:36 +00:00
bjh21 2d53252971 MACHINE_ARCH == "arm26" hasn't been valid for some time, so don't check
for it.
2002-03-24 22:32:00 +00:00
bjh21 aa798d41af Move manual pages, man[48].arm26 -> man[48].acorn26. 2002-03-24 22:29:54 +00:00
wiz 1d372fddb2 regen (mostly isdn change, some misc new devices in places) 2002-03-24 22:23:31 +00:00
jdolecek 1538d2a065 aha at mca? confirmed working (test card provided by Jonathan Hankins)
also move the aha entry before esp one, now that it's tested
2002-03-24 18:50:08 +00:00
bouyer c8cc4584ab Note AMD-768 support 2002-03-24 17:03:45 +00:00
lukem ee821504dd - document optional "interpreter" argument to check_pidfile() and
check_process()
- document rc_* variables available in method and after run_rc_command()
  completes
2002-03-24 15:32:59 +00:00
heinz 503cf59ccc some typos 2002-03-23 22:36:45 +00:00
jdolecek 09e5dcae39 rename EXEC_ELF_CATCHALL to EXEC_ELF_NOTELESS
document COMPAT_11 or COMPAT_12 imply EXEC_ELF_NOTELESS
2002-03-23 09:56:58 +00:00
wiz 18fb4eb38a Note Leadtek VC100. 2002-03-23 09:47:21 +00:00
thorpej 9c33b55e7c Split the notion of building Hesiod, Kerberos, S/key, and YP
infrastructure and using that infrastructure in programs.

	* MKHESIOD, MKKERBEROS, MKSKEY, and MKYP control building
	  of the infratsructure (libraries, support programs, etc.)

	* USE_HESIOD, USE_KERBEROS, USE_SKEY, and USE_YP control
	  building of support for using the corresponding API
	  in various libraries/programs that can use it.

As discussed on tech-toolchain.
2002-03-22 18:10:19 +00:00
martin 131f75b62b Fix reference to microcode directory.
Noticed by Jaromir Dolecek.
2002-03-22 09:45:53 +00:00
lukem 4e990e2ecb add more rc.subr(8) and rc.conf(5) references 2002-03-22 04:32:10 +00:00
augustss fe74b56f01 Add uvscom attachment line. 2002-03-22 00:39:40 +00:00
lukem 1193c443bb swapoff 2002-03-21 23:14:03 +00:00
pk ad92811bb5 `linksinstall' cannot be issued in parallel with other realinstall sources. 2002-03-21 12:59:56 +00:00
pk 2918ae233f Target dependencies again: `machine-links' must be made before $DPSRCS.
We now have
	all => $PROG => $OBJS => $DPSRCS (if present) => machine-links
2002-03-21 12:54:21 +00:00
lukem b8bcb6125d document $command_interpreter 2002-03-21 12:29:18 +00:00
lukem 328fa6b19f use ${VAR:D:U...} if we only want a value in the undefined case 2002-03-19 22:17:23 +00:00
augustss d00ad9335b Add uvscom(4). 2002-03-19 15:17:48 +00:00
lukem 1995e199a3 Change library installation.
Instead of:
	install -m 600 [...]
	ranlib -t [...]
	chmod 444 [...]
use the newly added "-a" flag to install(1) to invoke ranlib ifndef UPDATE.
Should prevent unnecessary ranlib-ing of installed libraries with UPDATE
defined.

Per discussion with simonb.
2002-03-19 14:39:22 +00:00
lukem 1e73b16611 - ensure that check_DESTDIR and check_RELEASEDIR are always available,
even if USETOOLS==no.
- wrap setting of DESTDIR?= with own USETOOLS==yes check.

should fix a problem noted on current-users with USETOOLS=no
2002-03-19 11:03:05 +00:00
wiz 728eccc7b2 Markup fix. 2002-03-19 10:34:50 +00:00
wiz 02383c1b5c Typo and grammar fixes, one each. 2002-03-19 10:30:20 +00:00
gmcgarry f7968ef883 Document keymaps. 2002-03-19 05:35:18 +00:00
gmcgarry d5111c7802 Document -c flag. 2002-03-19 05:22:33 +00:00
wiz 545f04563b Sort sections. 2002-03-18 18:59:57 +00:00
bjh21 6ee155e761 We never set MACHINE_ARCH to "arm26" so remove the MACHINE_GNU_ARCH mapping
for it.
2002-03-18 18:42:52 +00:00
christos 537c311b66 Update the documentation for the pms driver. From Peter Seebach. 2002-03-18 17:14:14 +00:00
martin fc467dcd20 Modify for new ISDN device/interface names. 2002-03-17 21:32:21 +00:00
tron dc594f1d90 Correct error in last commit: "revisions" should not be removed during
install.
2002-03-17 21:11:32 +00:00
martin 1351389550 Move man pages of renamed devices and adapt them to their new name. 2002-03-16 17:57:34 +00:00
ad 3f357e222f Sync with reality. 2002-03-16 12:10:18 +00:00
tron a5bec38356 Remove "-c" from "${INSTALL_FILE}" to avoid leaving ".tmp" files arround. 2002-03-16 10:19:58 +00:00
gmcgarry 7317bdd325 add jazzio attachment to synopsis 2002-03-15 05:20:55 +00:00
wiz 1c444efedf Simplify markup a bit. 2002-03-15 00:09:43 +00:00
kleink bb3ea13a8e Add a reference to RFC2003, and mention possible protocol field values of
the outer packet; from Alan Barrett in PR standards/15895, with minor
markup fixes.
2002-03-14 21:29:02 +00:00
thorpej 43c6552a49 Add a BUILDID variable, which further qualifies object directories. 2002-03-14 18:26:32 +00:00
uwe 8307c93fb8 Add audiocs(4) and ebus(4). 2002-03-14 12:19:55 +00:00
wiz ae63b22183 Note ICS1893 support. 2002-03-14 10:56:17 +00:00
chs dc3bc0c490 add support for LXT971 PHYs. 2002-03-14 04:40:26 +00:00
wiz ecf21d9b93 regen for new template, picking up some recent other changes
[clockctl, MI joy, pty+++]
2002-03-14 01:38:33 +00:00
wiz dc47c556a2 Remark that the script should be called by the super-user; mention
/etc/MAKEDEV.local; and add DIAGNOSTICS and HISTORY sections.
2002-03-14 01:33:27 +00:00
wiz 42aa648b4c Remove a superfluous comma. 2002-03-13 21:45:38 +00:00
wiz 05fbca3f92 wscons(9), not (4), and some whitespace cleanup. 2002-03-13 21:44:48 +00:00
wiz 8d15f4d372 Put comment on separate line. 2002-03-13 21:42:20 +00:00
jandberg a52d11410f bring up to date with code 2002-03-13 19:46:01 +00:00
uwe 9165b68765 Change wording a bit. Add URL for the PCIO manual. 2002-03-13 19:44:42 +00:00
uwe 14102fe2d6 Add reference to ebus(4). 2002-03-13 19:06:24 +00:00
uwe bc482afeea Skeletal manpage for EBus derived from comments in ebusreg.h
by Matthew Green.
2002-03-13 18:59:14 +00:00
lukem ce3cfa06ae document ${_arg}_postcmd 2002-03-13 04:57:11 +00:00
kent abc0e4d655 Fix a typo 2002-03-13 03:46:55 +00:00
uwe 80cba97462 Minor mandoc nits. 2002-03-13 00:56:35 +00:00
uwe 62acda31f9 Use .Dv for AudioN* and AudioC* 2002-03-13 00:55:02 +00:00
wiz 1ed983bdc8 Fix capitalization error, noted by uwe.
Minor mandoc improvements while I'm here.
2002-03-13 00:18:40 +00:00
uwe 12926b4de8 Mention audiocs. 2002-03-12 16:19:27 +00:00
uwe cc7664bca9 Use .Dv instead of .Va 2002-03-12 16:10:38 +00:00
uwe 6b0a20bdae A rudimentary manpage for audiocs(4). 2002-03-12 15:55:11 +00:00
kent d1b86e1e52 Update struct audio_params and description of set_params().
Feel free to correct my poor English ;-)
2002-03-11 15:09:51 +00:00
lukem be07ec41d5 document MEMORY_DISK_SIZE 2002-03-10 20:05:42 +00:00
wiz 2f9d07f100 ispell, and a grammar fix. 2002-03-10 18:39:42 +00:00
junyoung a59447b7ad Fix typos. 2002-03-10 17:31:25 +00:00
itohy d5f39a2d9c Add explicit support of OPL3-SA2 (YMF711).
Not well tested....
2002-03-10 13:57:10 +00:00
tv cb25cef027 Remove the ability to set "USE_NEW_TOOLCHAIN=no" explicitly. This is a
one-way transition, so once it's defined by default for a port, it can't
be turned off.
2002-03-09 15:17:45 +00:00
kleink 26c19c6081 Fix the declaration of the function to be registered with kthread_create{,1};
from Peter Seebach in PR kern/15838.
2002-03-08 23:03:23 +00:00
simonb 38469044f3 Add entries for evbarm and evbmips. 2002-03-07 14:46:10 +00:00
simonb 2a9c0391d3 Add evbarm and evbmips. 2002-03-07 14:44:49 +00:00
wiz 66bb8e2176 Make DESCRIPTION sections (mostly by renaming non-standard section headers).
[See bin/14591 for a reason why we should have them.]
2002-03-06 14:43:02 +00:00
thorpej 06c97a1e94 Make sure to pass $MACROS to the roff command. 2002-03-06 06:43:02 +00:00
simonb f3e2fe6731 Add entry for sbmips. 2002-03-06 02:42:30 +00:00
simonb 5f24b78e43 Add "sbmips". 2002-03-06 02:37:51 +00:00
wiz 10d6eb080d Drop duplicate .Pp. 2002-03-05 15:09:26 +00:00
lukem 1142a4b638 oops; should define check_DESTDIR before setting default for DESTDIR... 2002-03-05 03:53:58 +00:00
lukem 4b99ad4ad4 provide check_DESTDIR and check_RELEASEDIR targets in <bsd.own.mk>
and use those rather than local versions
2002-03-05 03:51:21 +00:00
wiz eb8cde8c28 Whitespace nit. 2002-03-04 15:27:57 +00:00
sommerfeld bf79729e2e More ipip references 2002-03-04 15:14:22 +00:00
wiz bb4f5583f7 Sort sections, drop trailing whitespace, s/ipip/gif/, and minor fixes. 2002-03-04 14:50:54 +00:00
sommerfeld 3406f0a3dd The "gif*" tunnelling interface does everything ipip does.
Move usage example from ipip.4 to gif.4
Excise ipip and stitch up the scars.
2002-03-04 13:24:06 +00:00
manu 143b41911d Given that a lot of IRIX binaries now work, COMPAT_IRIX is no more
'highly experimental'. Now it's just 'experimental'...
2002-03-04 06:00:15 +00:00
tron 8002ff3a8c Add cross reference to brconfig(8). 2002-03-03 19:32:28 +00:00
mrg c6cc70654c note that securelevel=0 ends up -> securelevel=1 (part of PR#13647) 2002-03-01 16:52:04 +00:00
pk c26b4a92e2 Serialize access to $INFODIR/dir; multiple instances of `install-info'
would trash that file.
2002-03-01 15:42:10 +00:00
pk 721880b0bc Fix target order: the machine links must be present before compiling object
files.
2002-02-28 15:55:50 +00:00
scw 5183aa7b10 Add mvmeppc. 2002-02-27 21:26:09 +00:00
kleink a3f0b56f7a While we're here, roll forward the up-to-date tag. 2002-02-26 13:20:22 +00:00
kleink da7d0ec7e4 ISO 3166/MA web pages have moved. 2002-02-26 13:11:05 +00:00
wiz c640510df0 Correct spelling of "delimiter", and remove from ignored-errors lists. 2002-02-26 02:37:28 +00:00
kleink 341cec0040 Update to cover alternate register access methods. 2002-02-25 23:21:15 +00:00
wiz c38591ca4c Punctuation nits. 2002-02-25 13:16:45 +00:00
lukem 80ce7c6cb7 Fixes derived from [bin/15563] submitted by Ron Roskens:
- Don't su(1) to ${name}_user if running as that user.
- Support $procname as the name of the process to search for.
  Defaults to the value of $command.
2002-02-25 12:49:33 +00:00
lukem 868c9ba182 rc.subr(8) - functions used by system shell scripts. Closes PR [misc/10828]. 2002-02-25 12:05:13 +00:00
wiz a2a58e2352 Drop trailing space. 2002-02-25 11:21:38 +00:00
lukem 10b7474494 the rc_fast_and_loose behaviour is enabled if the variable != "", not
if it == "YES", so fix the documentation...
2002-02-25 04:23:20 +00:00
lukem 319f9d9903 explicitly mention that rc.d contains sh(1) scripts 2002-02-25 04:09:15 +00:00