Commit Graph

4897 Commits

Author SHA1 Message Date
wiz 54cad697fd Mention Acard ATP865-A support; bump date. 2003-10-24 16:08:33 +00:00
wiz 48b267be4d Mark up error code with .Er. 2003-10-24 07:43:35 +00:00
hubertf 49756bfb27 Document which error vflush may return. Saves some code-reading... 2003-10-23 22:30:47 +00:00
simonb 61cddc3b80 Add "com* at opb?" for IBM PowerPC 4xx CPUs. 2003-10-23 02:25:36 +00:00
hannken c6d83326cb Forgot to update the .Dd line. From Thomas Klausner <wiz@netbsd.org>. 2003-10-22 07:12:43 +00:00
hannken 9dec5da8e8 Add section 9 man pages for:
vfs_write_suspend, vfs_write_resume, vn_start_write and vn_finished_write.
2003-10-21 22:01:24 +00:00
thorpej 3267ff8288 Add i82545GM and i82546GB controllers. 2003-10-21 17:10:00 +00:00
wiz 4452a32353 Talk about LKMs instead of klds. /sys symlink is dead, so
use longer path for source files. Remove an unnecessary dot.
2003-10-21 16:21:55 +00:00
itojun e0a77c7886 mention sysctl(8) interface for SADB_DUMP 2003-10-21 08:44:04 +00:00
uwe 6d8eafdb48 adc(4) - SuperH on-chip analog/digital converter 2003-10-21 01:38:27 +00:00
uwe cfe781220f shb(4) - bus for SuperH on-chip peripheral devices. 2003-10-21 00:15:45 +00:00
wiz 60e31ba365 Drop trailing spaces; use .St for IEEE 1275; some nits. 2003-10-20 11:55:19 +00:00
mbw d6209b12a7 Add new macppc boot(8) man page. Fixes PR port-macppc/21372. 2003-10-20 09:07:44 +00:00
he 848e3bb5cf Make the documentation match the source, and excise instances of
the RUNNING flag which existed in an earlier draft implementation.
Also, now that callout_stop() no longer clears INVOKING, reflect
that as well.
2003-10-19 14:37:12 +00:00
wiz 21069b6a1b Add man8.ibmnws and MAKEDEV(8) for ibmnws. 2003-10-19 09:12:00 +00:00
wiz 54e541b387 regen (+Xr grf 4). 2003-10-17 22:11:48 +00:00
wiz 3025e2fc16 regen (-ed) 2003-10-17 22:11:25 +00:00
wiz 11639fb42c Bump date for previous. 2003-10-17 22:05:27 +00:00
wiz c9317ea9c9 Misc markup fixes (avoid \f.); sort sections; use standard section headers;
drop trailing spaces; sort SEE ALSO; no content change.
2003-10-17 09:42:42 +00:00
grog 743ecb29d2 Preliminary docco for vinum. 2003-10-16 08:29:52 +00:00
wiz 0d93a88b28 Sort SEE ALSO. 2003-10-15 08:38:10 +00:00
wiz 538e6e3e1e Move siginfo(5) and ucontext(5) to siginfo(2) and ucontext(2) resp.,
and fix references.
Per a discussion on source-changes around Sep 14 2003.
2003-10-14 14:59:03 +00:00
wiz d981fc9cc4 Use still more macros. 2003-10-14 06:49:51 +00:00
bouyer 341734578e Add a man page for pmatch(). 2003-10-13 19:52:58 +00:00
agc 9f1aac5bb3 Move Jason Downs's code from a 4-clause to a 3-clause licence by
removing the advertising clause.  Diffs provided in PR 22410 by Joel
Baker, confirmed to the board by Jason Downs.

With additional thanks to Jason Thorpe.
2003-10-13 15:36:33 +00:00
agc 61470ee029 Move Mark Nudelman's code from a 4-clause to a 3-clause licence by removing
the advertising clause. Diffs provided in PR 22549 by Joel Baker, confirmed
to the board by Mark Nudelman.
2003-10-13 14:34:25 +00:00
jdolecek 899a030145 xref mailer.conf(5) in SEE ALSO 2003-10-12 11:50:29 +00:00
wiz 9951eb124d Sort SEE ALSO; replace some "Ic ata" with "Xr ata 4". 2003-10-08 13:39:11 +00:00
bouyer e3847b4da7 Add man page for per-chip pciide drivers. 2003-10-08 12:02:40 +00:00
bouyer 7cc555fc4d Add a ata(4) man page, with a symlink to atabus(4), and xref where
appropriate.
2003-10-08 11:20:09 +00:00
lukem 1c33b4e6a4 Overhaul MBR handling (part 1):
<sys/bootblock.h>:
    *	Added definitions for the Master Boot Record (MBR) used by
	a variety of systems (primarily i386), including the format
	of the BIOS Parameter Block (BPB).
	This information was cribbed from a variety of sources
	including <sys/disklabel_mbr.h> which this is a superset of.

	As part of this, some data structure elements and #defines
	were renamed to be more "namespace friendly" and consistent
	with other bootblocks and MBR documentation.
	Update all uses of the old names to the new names.

<sys/disklabel_mbr.h>:
    *	Deprecated in favor of <sys/bootblock.h> (the latter is more
	"host tool" friendly).

amd64 & i386:
    *	Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
	be consistent with the naming convention of the msdosfs tools.

    *	Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
	and it's confusing to have two functionally equivalent bootblocks,
	especially given that "ufs" has multiple meanings (it could be
	a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).

    *	Rework pbr.S (the first sector of bootxx_*):
	    +	Ensure that BPB (bytes 11..89) and the partition table
		(bytes 446..509) do not contain code.
	    +	Add support for booting from FAT partitions if BOOT_FROM_FAT
		is defined.  (Only set for bootxx_msdos).
	    +	Remove "dummy" partition 3; if people want to installboot(8)
		these to the start of the disk they can use fdisk(8) to
		create a real MBR partition table...
	    +	Compile with TERSE_ERROR so it fits because of the above.
		Whilst this is less user friendly, I feel it's important
		to have a valid partition table and BPB in the MBR/PBR.

    *	Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
	with other platforms.

    *	Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
    	we can boot off FAT partitions.

    *	Crank version of /usr/mdec/boot to 3.1, and fix some of the other
	entries in the version file.

installboot(8) (i386):
    *	Read the existing MBR of the filesystem and retain the BIOS
    	Parameter Block (BPB) in bytes 11..89 and the MBR partition
	table in bytes 446..509.  (Previously installboot(8) would
	trash those two sections of the MBR.)

mbrlabel(8):
    *	Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
	to map the MBR partition type to the NetBSD disklabel type.


Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
2003-10-08 04:25:43 +00:00
bouyer 7b066791c8 Remove references to University of California from my copyright notices. 2003-10-05 17:48:49 +00:00
bouyer 83953e7963 Fix ponctuation in copyright. 2003-10-05 16:32:13 +00:00
bouyer 36b4e768d5 Fix copyright. 2003-10-05 16:30:22 +00:00
wiz 2ff85c01a5 bce appeared in 1.6.2. 2003-10-05 11:58:36 +00:00
wiz 1911acaed7 Fill in Jaromir's name in license; new sentence, new line. 2003-10-04 23:38:58 +00:00
jdolecek 493adc0ad4 add basic grf(4) manpage, mainly just with explanation
what is each grf* device mapped to and with crossrefs to the
actual underlying device manpages
2003-10-04 14:10:41 +00:00
jdolecek 513eefcff8 add evbsh5 MAKEDEV(8) manpage 2003-10-04 13:38:25 +00:00
jdolecek 39ef5010c4 regen - g/c nonexitent 'cbq' device and empty device groups 2003-10-04 13:33:27 +00:00
wiz 6181ed442a Bump date for previous; grammar improvements. 2003-10-02 07:06:36 +00:00
itojun 30b8d01871 suggest setting netmask to 32 for security reasons; see tech-userlevel 2003-10-02 01:21:16 +00:00
wiz 9326479dd9 Fix typos; new sentence, new line; fix name in license (ok'd by manu);
sort sections; sort SEE ALSO; drop trailing whitespace.
2003-09-29 10:05:35 +00:00
manu 855db7049d Setup to run Darwin binaries 2003-09-29 09:56:04 +00:00
wiz c53b0c7769 Add man page for bce(4), and xref it from bge(4). 2003-09-28 18:32:18 +00:00
kent bda517788a Note the driver supports ICH5.
Bump date.
2003-09-28 14:33:19 +00:00
wiz dee5a1a9cd Use more macros, fix a typo, drop trailing spaces, misc other fixes. 2003-09-28 10:23:22 +00:00
dsl a924e3a0d4 Add do_setres[u,g}id 2003-09-28 09:09:55 +00:00
kei 58b5cb57f3 Add missing `Ar' flag. Approved by Thomas Klausner. 2003-09-27 14:52:58 +00:00
mbw d0130ca8c2 combined macppc and mac68k man pages and moved to src/share/man/man4 2003-09-26 23:09:07 +00:00
mbw 9bed16c664 Correct copyright attributions 2003-09-26 23:05:55 +00:00