Add the RAIDframe device major to the machine-dependent config files

so that the right entries get added to dev_name2blk[].  Needed for / on RAID.
(Whoops!  I missed checking these in when adding the RAID_AUTOCONFIG stuff.)
This commit is contained in:
oster 2000-03-14 15:56:51 +00:00
parent 413ffc39c1
commit 1bad2e1909
20 changed files with 80 additions and 20 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: files.alpha,v 1.108 2000/03/14 05:34:04 nisimura Exp $
# $NetBSD: files.alpha,v 1.109 2000/03/14 15:56:51 oster Exp $
#
# alpha-specific configuration info
@ -82,6 +82,9 @@ major { wd = 4 }
file arch/alpha/alpha/md_root.c memory_disk_hooks
major { md = 6 }
# RAIDframe
major { raid = 16 }
# Raster operations
include "dev/rasops/files.rasops"
include "dev/wsfont/files.wsfont"

View File

@ -1,4 +1,4 @@
# $NetBSD: files.amiga,v 1.96 2000/01/31 22:47:07 mhitch Exp $
# $NetBSD: files.amiga,v 1.97 2000/03/14 15:56:52 oster Exp $
# maxpartitions must be first item in files.${ARCH}.newconf
maxpartitions 16 # NOTE THAT AMIGA IS SPECIAL!
@ -426,6 +426,7 @@ attach wdc at mainbus with wdc_amiga: gayle
file arch/amiga/dev/wdc_amiga.c wdc_amiga
major {md = 15} # Memory disk (for mini-kernel)
major {raid = 16} # RAIDframe
# Compatibility modules

View File

@ -1,4 +1,4 @@
# $NetBSD: files.arm32,v 1.81 2000/03/06 03:15:47 mark Exp $
# $NetBSD: files.arm32,v 1.82 2000/03/14 15:56:53 oster Exp $
#
# First try for arm-specific configuration info
#
@ -120,6 +120,9 @@ file arch/arm32/mainbus/com_pioc.c com_pioc
file arch/arm32/dev/md_hooks.c md & memory_disk_hooks
major {md = 18}
# RAIDframe
major {raid = 71}
# IOMD device
# parent to kbd, qms, pms, iic
# also provides irq and timer services

View File

@ -1,5 +1,5 @@
#
# $NetBSD: files.atari,v 1.67 2000/02/11 21:35:42 leo Exp $
# $NetBSD: files.atari,v 1.68 2000/03/14 15:56:53 oster Exp $
maxpartitions 16
@ -43,6 +43,9 @@ file arch/atari/dev/lpt.c lp needs-flag
file arch/atari/dev/md_root.c memory_disk_hooks
major {md = 1}
# RAIDframe
major {raid = 15}
# nvram
device nvr
attach nvr at mainbus

View File

@ -1,4 +1,4 @@
# $NetBSD: files.bebox,v 1.17 1999/07/09 02:32:30 thorpej Exp $
# $NetBSD: files.bebox,v 1.18 2000/03/14 15:56:54 oster Exp $
#
# First try for bebox specific configuration info
#
@ -37,6 +37,11 @@ major {wd = 0}
file arch/bebox/bebox/md_root.c memory_disk_hooks
major {md = 17}
#
# RAIDframe
#
major {raid = 18}
#
# System bus types
#

View File

@ -1,4 +1,4 @@
# $NetBSD: files.hp300,v 1.41 1999/07/31 19:56:48 thorpej Exp $
# $NetBSD: files.hp300,v 1.42 2000/03/14 15:56:54 oster Exp $
#
# hp300-specific configuration info
@ -171,6 +171,9 @@ device ac
attach ac at oscsi
file arch/hp300/dev/ac.c ac needs-flag
# RAIDframe
major {raid = 15}
# Human (Hilarious) Interface Loop
# XXX should be a real device
file arch/hp300/dev/hil.c

View File

@ -1,4 +1,4 @@
# $NetBSD: files.i386,v 1.148 2000/03/04 21:37:23 mycroft Exp $
# $NetBSD: files.i386,v 1.149 2000/03/14 15:56:54 oster Exp $
#
# new style config file for i386 architecture
#
@ -86,6 +86,9 @@ major {wd = 0}
file arch/i386/i386/md_root.c memory_disk_hooks
major {md = 17}
# RAIDframe
major {raid = 18}
# attribute used to bring in BIOS trampoline code for real-mode probing
# of certain devices/BIOS features
define bioscall

View File

@ -1,4 +1,4 @@
# $NetBSD: files.mac68k,v 1.93 2000/02/14 07:01:44 scottr Exp $
# $NetBSD: files.mac68k,v 1.94 2000/03/14 15:56:55 oster Exp $
# mac68k-specific configuration info
@ -176,6 +176,9 @@ major {sd = 4}
major {cd = 6}
major {md = 13}
# RAIDframe
major {raid = 20}
# Compatibility modules
# SunOS Binary Compatibility (COMPAT_SUNOS)

View File

@ -1,4 +1,4 @@
# $NetBSD: files.macppc,v 1.29 2000/02/27 18:06:43 tsubai Exp $
# $NetBSD: files.macppc,v 1.30 2000/03/14 15:56:55 oster Exp $
#
# macppc-specific configuration info
@ -25,6 +25,10 @@ file dev/cons.c
file arch/macppc/macppc/md_root.c memory_disk_hooks
major {md = 9}
#
# RAIDframe
#
major {raid = 12}
#
# Machine-independent SCSI drivers
#

View File

@ -1,4 +1,4 @@
# $NetBSD: files.mvme68k,v 1.29 1999/09/18 09:42:46 scw Exp $
# $NetBSD: files.mvme68k,v 1.30 2000/03/14 15:56:56 oster Exp $
# config file for mvme68k
@ -83,6 +83,9 @@ major { sd = 4 }
major { cd = 8 }
major { md = 9 }
# RAIDframe
major { raid = 16 }
# WD33C93 SCSI ...
define sbic
file arch/mvme68k/dev/sbic.c sbic

View File

@ -1,4 +1,4 @@
# $NetBSD: files.newsmips,v 1.7 1999/12/22 05:55:25 tsubai Exp $
# $NetBSD: files.newsmips,v 1.8 2000/03/14 15:56:56 oster Exp $
# NEWSMIPS-specific configuration info
@ -125,3 +125,8 @@ major { sd = 0 }
major { fd = 1 }
major { md = 2 }
major { cd = 16 }
#
# RAIDframe
#
major { raid = 32 }

View File

@ -1,4 +1,4 @@
# $NetBSD: files.next68k,v 1.14 1999/08/03 09:02:10 dbj Exp $
# $NetBSD: files.next68k,v 1.15 2000/03/14 15:56:56 oster Exp $
# next68k-specific configuration info
@ -93,6 +93,8 @@ major {sd = 4}
major {cd = 6}
major {md = 13}
# RAIDframe
major {raid = 20}
# SunOS Binary Compatibility (COMPAT_SUNOS)
include "compat/sunos/files.sunos"

View File

@ -1,4 +1,4 @@
# $NetBSD: files.ofppc,v 1.9 1998/05/29 08:38:26 sakamoto Exp $
# $NetBSD: files.ofppc,v 1.10 2000/03/14 15:56:57 oster Exp $
#
# First try for ofppc-specific configuration info
#
@ -44,3 +44,6 @@ define mainbus {}
device mainbus: mainbus, ofbus
attach mainbus at root
file arch/ofppc/ofppc/mainbus.c mainbus
# RAIDframe
major {raid = 12}

View File

@ -1,4 +1,4 @@
# $NetBSD: files.pc532,v 1.42 2000/02/14 21:42:53 thorpej Exp $
# $NetBSD: files.pc532,v 1.43 2000/03/14 15:56:57 oster Exp $
#
# new style config file for pc532 architecture
#
@ -16,6 +16,9 @@ file arch/pc532/pc532/mainbus.c
file arch/pc532/dev/md_root.c memory_disk_hooks
major {md = 3}
# RAIDframe
major {raid = 13}
device rtc
attach rtc at mainbus
device clock

View File

@ -1,4 +1,4 @@
# $NetBSD: files.pmax,v 1.83 2000/02/29 04:44:29 nisimura Exp $
# $NetBSD: files.pmax,v 1.84 2000/03/14 15:56:57 oster Exp $
# DECstation-specific configuration info
# maxpartitions must be first item in files.${ARCH}.
@ -97,6 +97,9 @@ major { rz = 21 }
file arch/pmax/pmax/md_root.c memory_disk_hooks
major { md = 17 }
# RAIDframe
major { raid = 32 }
#
# Old 4.4BSD pmax-specific SCSI driver (deprecated).
#

View File

@ -1,4 +1,4 @@
# $NetBSD: files.sparc,v 1.88 2000/02/25 18:24:40 jdc Exp $
# $NetBSD: files.sparc,v 1.89 2000/03/14 15:56:58 oster Exp $
# @(#)files.sparc 8.1 (Berkeley) 7/19/93
# sparc-specific configuration info
@ -137,6 +137,9 @@ major { sd = 7 }
major { xd = 10 }
major { xy = 3 }
# RAIDframe
major { raid = 25 }
attach dma at obio with dma_obio
file arch/sparc/dev/dma_obio.c dma_obio

View File

@ -1,4 +1,4 @@
# $NetBSD: files.sparc64,v 1.24 2000/02/14 21:42:54 thorpej Exp $
# $NetBSD: files.sparc64,v 1.25 2000/03/14 15:56:58 oster Exp $
# @(#)files.sparc64 8.1 (Berkeley) 7/19/93
# sparc64-specific configuration info
@ -143,6 +143,9 @@ major { md = 5 }
major { sd = 7 }
major { wd = 12 }
# RAIDframe
major { raid = 25 }
# Brooktree DAC attribute
define bt_dac

View File

@ -1,4 +1,4 @@
# $NetBSD: files.sun3,v 1.55 1999/07/09 02:32:31 thorpej Exp $
# $NetBSD: files.sun3,v 1.56 2000/03/14 15:56:58 oster Exp $
#
# sun3-specific configuration info
@ -274,3 +274,4 @@ major {xy=3} # Xylogics 450 and 451
major {sd=7} # SCSI disk
major {xd=10} # Xylogics 7053
major {md=13} # Memory disk (for mini-kernel)
major {raid=25} # RAIDframe

View File

@ -1,4 +1,4 @@
# $NetBSD: files.vax,v 1.65 2000/03/04 07:27:47 matt Exp $
# $NetBSD: files.vax,v 1.66 2000/03/14 15:56:59 oster Exp $
#
# new style config file for vax architecture
#
@ -95,6 +95,9 @@ include "dev/wscons/files.wscons"
file arch/vax/vax/md_root.c memory_disk_hooks
major {md = 23}
# RAIDframe
major {raid = 25}
# MSCP device drivers
include "dev/mscp/files.mscp"
major {ra = 9}

View File

@ -1,4 +1,4 @@
# $NetBSD: files.x68k,v 1.29 1999/11/23 14:17:09 minoura Exp $
# $NetBSD: files.x68k,v 1.30 2000/03/14 15:56:59 oster Exp $
#
# new style config file for x68k architecture
#
@ -173,6 +173,9 @@ file arch/x68k/dev/pow.c pow needs-count
file arch/x68k/dev/md_root.c memory_disk_hooks
major {md = 8}
# RAIDframe
major {raid = 16}
include "compat/sunos/files.sunos"
file arch/m68k/m68k/sunos_machdep.c compat_sunos