Commit Graph

112175 Commits

Author SHA1 Message Date
dsl 4047f3a2a1 Add /usr/mdec/mbr_ext to i386 and amd64 2003-04-30 19:57:42 +00:00
dsl cbcf556e10 Build mbr code here (instead of in sbin/fdisk/mbr) 2003-04-30 19:52:17 +00:00
dsl c5bd7c9dfd i386/amd64 mbr is now built in sys/arch/i386/stand/mbr 2003-04-30 19:50:42 +00:00
dsl 8defedc8ba Don't descend into mbr_bootsel.
i386/and64 mbr code is built in arch i386/stand/mbr
2003-04-30 19:49:01 +00:00
dsl fa01152676 Rototilled fdisk that supports:
- editing of the extended partition list
- user friendly default start/size for new partitions
- partition start/size input in sectors, cylinders or MB
- bootsel menu names configured with paritition bounds
- partition update loop asks used which partition to change
  (instead of asking about each partition in turn).
- detection (and erroring) of overlapped partitions.
- automatic installation of correct mbr_xxx code (after prompting user)
2003-04-30 19:47:10 +00:00
scw dd0d5640b9 Add support for bus_space_{read,write}_region_[124]() 2003-04-30 19:14:44 +00:00
thorpej 5e36c42a5d Don't consider lack of disk label to be an error. This addresses
PR kern/21408 for all of the ARM ports.  Other ports should follow
this example.
2003-04-30 19:05:21 +00:00
bjh21 ca2c1040cf Expose IF_NAMESIZE for POSIX and X/Open applications. 2003-04-30 18:50:26 +00:00
manu 4c94241d26 Make io_iterator_reset working for device class itaerators 2003-04-30 18:38:19 +00:00
matt 0259e9541c Fix overrun of TX buffer dmamap. 2003-04-30 18:31:30 +00:00
thorpej b4e3c89c38 Bump kernel PTs to 4 (the max we can really have with the old VM
layout) to accomodate large ramdisks.  Set boothowto if BOOTHOWTO
is defined.
2003-04-30 18:12:03 +00:00
manu f8c2ac11e9 typo 2003-04-30 18:05:47 +00:00
jmmv d8a685c47a Add 'RTFC', as requested in PR misc/21400 by dive at endersgame.net. 2003-04-30 13:04:52 +00:00
martin 31dc9b22ed Add sparc64/boot(8) 2003-04-30 12:38:21 +00:00
martin 4e3a142d56 Clone the sparc boot(8) man page and bend it into shape for sparc64. 2003-04-30 12:32:29 +00:00
dsl 6ac09f276d Move some definitions from fdisk.c to disklabel_mbr.h so they don't have
to be duplicated elsewhere (eg in mbr.S).
Modify fdisk.c so that it builds with the new disklabel.h
2003-04-30 10:29:51 +00:00
wiz 203915e5ed Add some arc and cobalt man(4) pages. 2003-04-30 09:45:32 +00:00
wiz e6436dd49b Add arc and cobalt cat4/html4/man4 dirs. 2003-04-30 09:42:42 +00:00
wiz e50c267861 Add arc and cobalt html4 subdirs. 2003-04-30 09:40:43 +00:00
lukem 14ec4984a1 etc/powerd/** is optional 2003-04-30 09:05:56 +00:00
bjh21 24a7d37d49 Create man4 and cat4 directories for arc and cobalt. 2003-04-30 09:01:41 +00:00
manu 9a5720f8f0 Added io_iterator_reset (there is a nundocumented flag argument, no idea
of its use yet)
2003-04-30 07:32:16 +00:00
itojun bcefcfe7dd put a not on 2002/12/19 cvs repository layout change. 2003-04-30 07:23:49 +00:00
itojun dc5aee069b english grammer. by Jason McIntyre via kame 2003-04-30 06:30:48 +00:00
bjh21 8758baf5b6 Fix things so that _NETBSD_SOURCE correctly exposes the dirfd() and
the insides of struct _dirdesc.  Also make the existence of struct
_dirdesc visible to POSIX applications since this is less ugly than
pretending that DIR is a void *.
2003-04-29 23:08:13 +00:00
manu d46d73437c Added the map_memory method for the IOKit, plus an implementation
for the IOHIDSystem driver in Darwin. IOHIDSystem provides access
to user interface devices.

Communication between userspace and kernel is done through a shared
memory page. Our plan is to have a kernel thread waiting on wscons
events (for now it just does nothing), and have it feeding the
shared page.
2003-04-29 22:16:38 +00:00
manu 30bb8c56a7 More debug 2003-04-29 22:12:51 +00:00
tsutsui 32b7f7206e Improve hardware/device descriptions. (maybe needs wizd(8) ;-) 2003-04-29 22:02:44 +00:00
wiz ab8a5ed674 Fix some dates; new sentence, new line; drop superfluous Pp. 2003-04-29 21:12:48 +00:00
wiz 1dae3d1d3e Fix some dates, put Nd argument on same line. 2003-04-29 21:12:17 +00:00
wiz cac849c126 New sentence, new line; use more mdoc; sort SEE ALSO;
correct some dates.
2003-04-29 21:00:32 +00:00
gmcgarry 97c9a5f9dd arc and cobalt directories 2003-04-29 21:00:29 +00:00
gmcgarry b7953b24d7 Add some missing pages. 2003-04-29 21:00:04 +00:00
wiz 71c404893b New sentence, new line; correct some dates and releases; drop a superfluous Pp. 2003-04-29 20:57:24 +00:00
gmcgarry 38e597e8b6 Add intro. 2003-04-29 20:57:15 +00:00
gmcgarry fe8b01a5b1 Add missing intro. 2003-04-29 20:52:58 +00:00
gmcgarry d99cbc10bf Duh. Can't even blame the coffee. 2003-04-29 20:50:44 +00:00
gmcgarry fcca6ee71c Add missing intro. 2003-04-29 20:47:58 +00:00
thorpej 5ad9e35066 Don't build gzboot's separately. Instead, use the concatenate'able
gzboot images that are installed in ${DESTDIR}/usr/mdec.  Simplifies
building of these images considerably.

Fixes PR port-arm32/21352.
2003-04-29 18:18:53 +00:00
agc 44481e1ab2 Pull in <sys/param.h> explicitly. 2003-04-29 17:55:00 +00:00
perseant 100c8f971f Restrict the run of cluster blocks to on-disk contiguous blocks (back out
part of rev 1.115), to avoid writing over holes.  This is the lesser of two
evils, to be replaced soon.
2003-04-29 17:45:11 +00:00
agc 0134b3c484 Pull in <sys/param.h> explicitly. 2003-04-29 17:22:01 +00:00
scw 44d097926f Delete an obsolete comment; ddb(9) is very definately functional on SH5. 2003-04-29 17:07:56 +00:00
scw 8c5c893bf7 Add a BKPT_ADDR() macro which gives MD code a chance to munge a
breakpoint address before it's used. Currently a no-op on all but sh5.

This is useful on sh5, for example, to mask off the instruction
type encoding in the bottom two address bits, and makes it possible
to do "db> break $rXX" instead of manually munging the address.
2003-04-29 17:06:03 +00:00
wiz 57af6bd854 Remove superfluous +. From FUKAUMI Naoki in PR 21390. 2003-04-29 16:39:00 +00:00
nakayama 1af3731706 - Add ehci at pci.
- Correct locator names for fwnode, and add sbpscsi at fwnode.
2003-04-29 16:17:12 +00:00
wiz eea921656c New sentence, new line; drop trailing spaces. 2003-04-29 16:06:44 +00:00
nakayama 4a9dc3167f Use device attributes, atapi, audiobus and midibus,
instead of each devices.
2003-04-29 15:59:08 +00:00
scw c916242d13 Put an isync at the end of the RESTORE_SRS() macro. This is the
recommended workaround for a mtsr/mtsrin errata with PPC750 cpus.
2003-04-29 15:16:14 +00:00
scw c48c683d1f Fix use of an uninitialised variable. This was harmless, other than
spuriously incrementing an interrupt counter.
2003-04-29 15:11:45 +00:00