77a6b82b27
This merge changes the device switch tables from static array to dynamically generated by config(8). - All device switches is defined as a constant structure in device drivers. - The new grammer ``device-major'' is introduced to ``files''. device-major <prefix> char <num> [block <num>] [<rules>] - All device major numbers must be listed up in port dependent majors.<arch> by using this grammer. - Added the new naming convention. The name of the device switch must be <prefix>_[bc]devsw for auto-generation of device switch tables. - The backward compatibility of loading block/character device switch by LKM framework is broken. This is necessary to convert from block/character device major to device name in runtime and vice versa. - The restriction to assign device major by LKM is completely removed. We don't need to reserve LKM entries for dynamic loading of device switch. - In compile time, device major numbers list is packed into the kernel and the LKM framework will refer it to assign device major number dynamically.
62 lines
1.2 KiB
Plaintext
62 lines
1.2 KiB
Plaintext
# $NetBSD: files.mmeye,v 1.13 2002/09/06 13:18:43 gehenna Exp $
|
|
#
|
|
# config file for mmeye
|
|
|
|
# maxpartitions must be first item
|
|
maxpartitions 8
|
|
|
|
maxusers 2 16 64
|
|
|
|
file arch/mmeye/mmeye/conf.c
|
|
file arch/mmeye/mmeye/machdep.c
|
|
file arch/mmeye/mmeye/autoconf.c
|
|
file arch/mmeye/mmeye/clock_machdep.c
|
|
file arch/sh3/sh3/disksubr.c disk
|
|
|
|
defparam opt_memsize.h IOM_ROM_BEGIN IOM_ROM_SIZE IOM_RAM_BEGIN IOM_RAM_SIZE
|
|
|
|
#
|
|
# Machine-independent SCSI drivers
|
|
#
|
|
|
|
include "dev/scsipi/files.scsipi"
|
|
|
|
#
|
|
# Machine-independent ATA drivers
|
|
#
|
|
|
|
include "dev/ata/files.ata"
|
|
|
|
# Memory Disk for install floppy
|
|
file dev/md_root.c memory_disk_hooks
|
|
|
|
#
|
|
# System bus types
|
|
#
|
|
|
|
define mainbus { }
|
|
device mainbus: mainbus
|
|
attach mainbus at root
|
|
file arch/mmeye/mmeye/mainbus.c mainbus
|
|
|
|
device cpu
|
|
attach cpu at mainbus
|
|
file arch/sh3/sh3/cpu.c cpu
|
|
|
|
include "arch/sh3/conf/files.shb"
|
|
|
|
attach com at mainbus with com_mainbus
|
|
file arch/mmeye/dev/com_mainbus.c com_mainbus
|
|
|
|
device mmeyepcmcia: pcmciabus
|
|
attach mmeyepcmcia at mainbus
|
|
file arch/mmeye/dev/mmeyepcmcia.c mmeyepcmcia
|
|
|
|
#
|
|
# Machine-independent PCMCIA drivers
|
|
#
|
|
device fdc {drive = -1} # files.pcmcia requires.
|
|
include "dev/pcmcia/files.pcmcia"
|
|
|
|
include "arch/mmeye/conf/majors.mmeye"
|