simonb
cef6220d21
Document the POOL_INIT macro.
2004-04-25 16:50:56 +00:00
kochi
ffaf7e29a6
add references to ACPI man pages.
2004-04-25 03:13:00 +00:00
kochi
c780f4ac6f
Update ACPI manual pages to reflect more reality.
...
Checked by wiz (Thanks!).
2004-04-25 03:12:11 +00:00
snj
5450e2b5cf
Bump date for last, remove extra space, and new sentence, new line.
2004-04-25 02:48:10 +00:00
jonathan
2aa6745551
We now have more than one TCP socket option: TCP_MAXSEG, with further
...
socket options (TCP_MD5SIG) in the works. Break TCP socket-options
into a list, and add a list element for TCP_MAXSEG, with text borrowed
from FreeBSD. (NB: our implementation may need improving to match that
rather general text.)
In preparation for adding list elements for TCP_MD5SIG.
2004-04-25 02:13:37 +00:00
kleink
9bfa4ce964
Describe new len argument to pci_devinfo(9).
2004-04-24 09:52:59 +00:00
keihan
12dcdec062
s/netbsd.org/NetBSD.org/g
2004-04-23 11:00:06 +00:00
simonb
9bc855a931
s/the the/the/ (only in sources that aren't regularly imported from
...
elsewhere).
2004-04-23 02:58:27 +00:00
kleink
b7841c720d
Xref statvfs(2).
2004-04-21 21:24:57 +00:00
wiz
9567493662
Whitespace nits; expand an abbreviation; fix a minus;
...
remove a superfluous .It.
2004-04-21 12:20:48 +00:00
christos
6bd1d6d4db
Replace the statfs() family of system calls with statvfs().
...
Retain binary compatibility.
2004-04-21 01:05:31 +00:00
wiz
3f9411f688
Spell removable with only two es. Inspired by jmc@openbsd.
2004-04-19 12:44:09 +00:00
wiz
8bb6260b2b
Use Fl instead of Ic; remove duplicate Pp;
...
filesystem -> file system.
2004-04-19 10:00:16 +00:00
lukem
69a2205a22
"ignorefs type" now _appends_ to the existing (default) list. If the default
...
list isn't wanted, use "ignorefs none" before other "ignorefs ..." entries.
This makes "ignorefs ..." much more useful.
Tweak the wording.
2004-04-19 01:10:48 +00:00
lukem
59aeaab3a6
Note that 'ignorefs type' is used as an argument to 'find -fstype'
...
and that "sysctl vfs.generic.fstypes" will list the available fstypes.
2004-04-19 00:30:42 +00:00
lukem
03d04e432b
Document 'sbsize' and 'tc'.
2004-04-19 00:11:16 +00:00
lukem
a90e0c0e64
Add MLINKS for:
...
CIRCLEQ_FOREACH(3) CIRCLEQ_FOREACH_REVERSE(3)
LIST_FOREACH(3)
SIMPLEQ_FOREACH(3)
SLIST_EMPTY(3) SLIST_ENTRY(3) SLIST_FIRST(3) SLIST_FOREACH(3)
SLIST_HEAD(3) SLIST_HEAD_INITIALIZER(3) SLIST_INIT(3)
SLIST_INSERT_AFTER(3) SLIST_INSERT_HEAD(3) SLIST_NEXT(3)
SLIST_REMOVE(3) SLIST_REMOVE_HEAD(3)
STAILQ_EMPTY(3) STAILQ_ENTRY(3) STAILQ_FIRST(3) STAILQ_FOREACH(3)
STAILQ_HEAD(3) STAILQ_HEAD_INITIALIZER(3) STAILQ_INIT(3)
STAILQ_INSERT_AFTER(3) STAILQ_INSERT_HEAD(3) STAILQ_INSERT_TAIL(3)
STAILQ_NEXT(3) STAILQ_REMOVE(3) STAILQ_REMOVE_HEAD(3)
TAILQ_FOREACH(3) TAILQ_FOREACH_REVERSE(3) TAILQ_LAST(3) TAILQ_PREV(3)
2004-04-18 23:42:23 +00:00
lukem
2f6ed1a801
Reorder macros within a queue type to match queue.h definition order.
...
Document STAILQ_* as compatibility macros for SIMPLEQ_*.
Document TAILQ_LAST and TAILQ_PREV.
2004-04-18 23:39:13 +00:00
lukem
180444c2a0
Rework .s.{o,po,so} and .S.{o,po,so} to be more like the <bsd.sys.mk> rules:
...
- support ${COPTS.<fn>} ${CPUFLAGS.<fn>} ${CPPFLAGS.<fn>}
(deficiency noted by Tyler Retzlaff <rtr@NetBSD.org>)
- use ${COMPILE.s} for .s.o .s.po .s.so (instead of ${COMPILE.S})
- don't support AINC anymore; append to AFLAGS instead
Remove .c.ln - it was a duplicate of the rule in <bsd.sys.mk>
2004-04-18 13:11:31 +00:00
lukem
7c178de782
document AS and AFLAGS. document default for CPUFLAGS
2004-04-18 13:07:00 +00:00
lukem
6d15c512f3
remove AINC support; it is now unnecessary
2004-04-18 04:32:51 +00:00
lukem
019cfb87ee
add a blank line to improve readability
2004-04-18 03:19:02 +00:00
drochner
78fc5676ae
always #define __AMD64__ on and64 -- xfree86 depends on it
2004-04-15 14:48:41 +00:00
pooka
0ee5148aa5
Rather than using RB_EMPTY() for checking if a splay tree is empty,
...
suggest using it for checking if a red-black tree is empty.
2004-04-14 11:05:19 +00:00
wiz
6314ad1118
Bump date for pooka.
2004-04-13 20:40:26 +00:00
rtr
fb373b43a6
+ define a proper variable/knob for building XFree86 as loadable or non.
...
let the breakage begin...
2004-04-13 12:37:29 +00:00
lukem
c6ab7e7128
Add MAKEDIRPREFIX shell macro to <bsd.own.mk>.
...
Usage: ${MAKEDIRTARGET} dir target [params]
Runs "cd $${dir} && ${MAKE} [params] $${target}",
displaying a "pretty" message whilst doing so.
Use MAKEDIRPREFIX to implement the __recurse .USE macro in <bsd.subdir.mk>
2004-04-13 12:25:03 +00:00
pooka
d729cba0a7
Note that SLISTs came from FreeBSD to give people an idea that
...
they're not necessarily a part of 4.4BSD derived implementations.
2004-04-13 10:39:29 +00:00
fredb
1f2cde04db
Fix a couple of minor typos.
2004-04-11 16:33:02 +00:00
atatat
6c7aa21ce7
The device is called /dev/dmoverio, not /dev/dmover.
2004-04-08 05:49:13 +00:00
wiz
9e31d256ec
Grammar fix, from xsa@openbsd via jmc@openbsd.
2004-04-07 15:28:13 +00:00
wiz
4dc479e359
Add TNF copyright license in Matt Thomas' name; okayed by matt@.
2004-04-07 14:57:39 +00:00
uwe
7b00555453
Add intro(4) and j6x0lcd(4) for hpcsh.
2004-04-04 17:34:43 +00:00
uwe
1226dc06a6
Document j6x0lcd driver.
2004-04-04 17:28:48 +00:00
uwe
d1001802a5
This manual page is hpcsh-specific. Say so in .Dt macro.
2004-04-04 17:06:45 +00:00
uwe
b40990679f
First cut at intro(4) for the NetBSD/hpcsh port.
...
PR port-hpcsh/24158.
2004-04-04 17:03:39 +00:00
wiz
522d70a8d4
Remove apostrophe that should not be there.
2004-04-04 10:31:33 +00:00
jdc
8510001c69
Add termcap entry for Olivetti M10 and compatibles. From Christian Biere
...
in PR misc/17739.
2004-04-04 07:49:53 +00:00
uwe
81b1f93220
Verbs has to agree in number with their subjects.
2004-04-04 03:46:13 +00:00
uwe
f292fa7af0
Describe GUI elements.
2004-04-04 03:41:03 +00:00
wiz
f857cb68ec
Add a useful description for COMPAT_AOUT.
2004-04-03 16:08:54 +00:00
darcy
009fef1bb9
Flesh out description of COMPAT_AOUT as requested by mrg.
2004-04-03 15:47:16 +00:00
wiz
8782dceb13
Comment out /amd and /dump, since they are not there in the
...
default install.
2004-04-03 15:45:36 +00:00
wiz
0adee5f2d3
Grammar fixes; remove a trailing space.
...
XXX: license missing!
2004-04-03 15:24:42 +00:00
wiz
7df565a342
Article improvements.
2004-04-03 15:19:49 +00:00
uwe
40f1406199
Descend into man8.hpcsh.
...
Add boot(8) for hpcsh to lists.
2004-04-03 04:20:38 +00:00
uwe
33cd1faa34
boot(8) manual page for NetBSD/hpcsh.
...
PR port-hpcsh/21373.
2004-04-03 04:13:49 +00:00
uwe
9db3644722
kloader(4) now has a man page too.
2004-04-03 03:26:29 +00:00
uwe
c59a2c9ba4
Xref hpcboot(8), it now has a man page.
2004-04-03 03:22:30 +00:00
uwe
ef240435db
Add hpcboot(8).
2004-04-03 03:13:21 +00:00