Home | History | Annotate | Line # | Download | only in conf
files.news68k revision 1.14
      1  1.14   tsutsui #	$NetBSD: files.news68k,v 1.14 2001/07/07 15:27:19 tsutsui Exp $
      2   1.1   tsutsui 
      3   1.1   tsutsui #	NEWS68K-specific configuration info
      4   1.1   tsutsui 
      5   1.1   tsutsui defopt	opt_fpuemulate.h	FPU_EMULATE
      6   1.1   tsutsui 
      7   1.1   tsutsui # maxpartitions must be first item in files.${ARCH}.
      8   1.1   tsutsui maxpartitions 8
      9   1.1   tsutsui 
     10   1.1   tsutsui maxusers 2 8 64
     11   1.1   tsutsui 
     12   1.2   tsutsui device mainbus { [systype = -1] }
     13   1.1   tsutsui attach mainbus at root
     14   1.1   tsutsui 
     15   1.1   tsutsui file	arch/news68k/news68k/autoconf.c
     16   1.8   tsutsui file	arch/news68k/news68k/bus_space.c
     17   1.1   tsutsui file	arch/news68k/news68k/conf.c
     18  1.11   tsutsui #file	arch/news68k/news68k/cons_machdep.c
     19   1.1   tsutsui file	arch/news68k/news68k/clock.c
     20   1.1   tsutsui file	arch/news68k/news68k/db_memrw.c		ddb | kgdb
     21   1.1   tsutsui file	arch/news68k/news68k/disksubr.c		disk
     22   1.1   tsutsui file	arch/news68k/news68k/isr.c
     23   1.1   tsutsui file	arch/news68k/news68k/machdep.c
     24   1.1   tsutsui file	arch/news68k/news68k/mainbus.c
     25   1.1   tsutsui file	arch/news68k/news68k/mem.c
     26   1.1   tsutsui file	arch/news68k/news68k/pmap.c
     27   1.1   tsutsui file	arch/news68k/news68k/pmap_bootstrap.c	compile-with "${NOPROF_C}"
     28  1.10      fvdl file	arch/news68k/news68k/procfs_machdep.c	procfs
     29   1.1   tsutsui file	arch/news68k/news68k/sys_machdep.c
     30   1.1   tsutsui file	arch/news68k/news68k/trap.c
     31   1.1   tsutsui file	arch/news68k/news68k/vm_machdep.c
     32   1.7   tsutsui file	dev/clock_subr.c
     33   1.1   tsutsui file	dev/cons.c
     34   1.1   tsutsui 
     35   1.1   tsutsui major { vnd = 6 }
     36   1.1   tsutsui 
     37   1.1   tsutsui # Emulation modules
     38   1.1   tsutsui # 6888x emulator (FPU_EMULATE)
     39   1.1   tsutsui include	"arch/m68k/fpe/files.fpe"
     40   1.1   tsutsui 
     41   1.1   tsutsui # HYPER-BUS
     42   1.1   tsutsui device hb { addr = 0, [ipl = -1], [vect = -1] }
     43   1.1   tsutsui attach hb at mainbus
     44   1.1   tsutsui file arch/news68k/dev/hb.c			hb
     45   1.1   tsutsui 
     46   1.1   tsutsui # I/O Proccesser
     47   1.1   tsutsui #device iop { [addr = -1], [ipl = -1] }
     48   1.1   tsutsui #attach iop at mainbus
     49   1.1   tsutsui #file arch/news68k/dev/iop.c			iop
     50   1.1   tsutsui 
     51  1.14   tsutsui # interval timer
     52  1.14   tsutsui device timer
     53  1.14   tsutsui attach timer at hb with timer_hb
     54  1.14   tsutsui file arch/news68k/dev/timer_hb.c		timer_hb
     55  1.14   tsutsui 
     56  1.14   tsutsui # MK48T02 TOD clock and NVRAM
     57  1.14   tsutsui device mkclock: mk48txx
     58  1.14   tsutsui attach mkclock at hb with mkclock_hb
     59  1.14   tsutsui file arch/news68k/dev/mkclock_hb.c		mkclock_hb
     60   1.1   tsutsui 
     61   1.1   tsutsui # Lance ethernet (device defined in sys/conf/files)
     62   1.1   tsutsui #device le: ifnet, ether, arp
     63   1.1   tsutsui attach le at hb: le24
     64   1.1   tsutsui file arch/news68k/dev/if_le.c			le needs-count
     65   1.1   tsutsui 
     66  1.11   tsutsui # keyboard/mouse
     67  1.11   tsutsui 
     68  1.11   tsutsui device kbc {}
     69  1.11   tsutsui attach kbc at hb
     70  1.11   tsutsui file arch/news68k/dev/kbc.c			kbc
     71  1.11   tsutsui 
     72  1.11   tsutsui include "dev/wscons/files.wscons"
     73   1.1   tsutsui 
     74  1.11   tsutsui device kb: wskbddev
     75   1.1   tsutsui file arch/news68k/dev/kb.c			kb needs-flag
     76  1.11   tsutsui file dev/news/newskeymap.c			kb
     77  1.11   tsutsui attach kb at kbc with kb_kbc
     78  1.11   tsutsui file arch/news68k/dev/kb_kbc.c			kb_kbc
     79  1.11   tsutsui attach kb at hb with kb_hb
     80  1.11   tsutsui file arch/news68k/dev/kb_hb.c			kb_hb
     81  1.11   tsutsui 
     82  1.11   tsutsui device ms: wsmousedev
     83  1.11   tsutsui file arch/news68k/dev/ms.c			ms needs-flag
     84  1.11   tsutsui attach ms at kbc with ms_kbc
     85  1.11   tsutsui file arch/news68k/dev/ms_kbc.c			ms_kbc
     86  1.11   tsutsui attach ms at hb with ms_hb
     87  1.11   tsutsui file arch/news68k/dev/ms_hb.c			ms_hb
     88   1.1   tsutsui 
     89   1.1   tsutsui # serial
     90   1.1   tsutsui device zsc { [channel = -1] }
     91   1.1   tsutsui attach zsc at hb
     92   1.1   tsutsui file arch/news68k/dev/zs.c			zsc needs-count
     93   1.1   tsutsui file dev/ic/z8530sc.c				zsc
     94   1.1   tsutsui 
     95   1.1   tsutsui device zstty: tty
     96   1.1   tsutsui attach zstty at zsc
     97   1.1   tsutsui file dev/ic/z8530tty.c				zstty needs-count
     98   1.1   tsutsui 
     99  1.11   tsutsui # framebuffers
    100  1.11   tsutsui include "dev/wsfont/files.wsfont"
    101  1.11   tsutsui include "dev/rasops/files.rasops"
    102  1.11   tsutsui 
    103  1.11   tsutsui #device cfb: wsemuldisplaydev, rasops8
    104  1.11   tsutsui #attach cfb at hb
    105  1.11   tsutsui #file arch/news68k/dev/cfb.c			cfb needs-flag
    106   1.1   tsutsui 
    107   1.1   tsutsui # floppy; not yet
    108   1.1   tsutsui device fdc {}
    109   1.1   tsutsui attach fdc at hb
    110   1.1   tsutsui device fd: disk
    111   1.1   tsutsui attach fd at fdc
    112   1.1   tsutsui file arch/news68k/dev/fd.c			fdc | fd needs-flag
    113   1.1   tsutsui 
    114   1.1   tsutsui # Machine-independent SCSI driver
    115   1.1   tsutsui include "dev/scsipi/files.scsipi"
    116   1.1   tsutsui major { sd = 0 }
    117   1.1   tsutsui major { fd = 1 }
    118   1.1   tsutsui major { cd = 16 }
    119   1.1   tsutsui major { st = 17 }
    120   1.1   tsutsui 
    121   1.1   tsutsui # Sony CXD1180 SCSI controller
    122   1.5   tsutsui device si: scsi, ncr5380sbc
    123   1.1   tsutsui file arch/news68k/dev/si.c			si needs-flag
    124   1.1   tsutsui attach si at hb
    125   1.1   tsutsui 
    126   1.1   tsutsui # memory disk
    127   1.1   tsutsui major {md = 2}
    128   1.6   tsutsui file	dev/md_root.c				memory_disk_hooks
    129   1.3     oster 
    130   1.3     oster # RAIDframe
    131   1.4     soren major {raid = 32}
    132  1.12   tsutsui 
    133  1.12   tsutsui # NetBSD m68k a.out binary compatibility (COMPAT_AOUT_M68K)
    134  1.12   tsutsui include "compat/aoutm68k/files.aoutm68k"
    135   1.1   tsutsui 
    136   1.1   tsutsui # SVR4 Binary Compatibility (COMPAT_SVR4)
    137   1.1   tsutsui include	"compat/svr4/files.svr4"
    138   1.1   tsutsui 
    139   1.1   tsutsui # SunOS binary compatibility (COMPAT_SUNOS)
    140   1.1   tsutsui include	"compat/sunos/files.sunos"
    141   1.1   tsutsui file	arch/m68k/m68k/sunos_machdep.c		compat_sunos
    142   1.1   tsutsui 
    143   1.1   tsutsui # NEWS-OS binary compatibility (COMPAT_NEWSOS)
    144   1.1   tsutsui #include	"compat/newsos/files.newsos"
    145   1.1   tsutsui #file	arch/m68k/m68k/newsos_machdep.c		compat_newsos
    146   1.1   tsutsui 
    147   1.1   tsutsui # Linux binary compatibility (COMPAT_LINUX)
    148   1.1   tsutsui include	"compat/linux/files.linux"
    149   1.1   tsutsui include	"compat/linux/arch/m68k/files.linux_m68k"
    150  1.13  christos file arch/m68k/m68k/linux_trap.c		compat_linux
    151   1.1   tsutsui 
    152   1.1   tsutsui # a.out binary compatibility (COMPAT_AOUT)
    153   1.1   tsutsui include "compat/aout/files.aout"
    154   1.1   tsutsui 
    155   1.1   tsutsui # OSS audio driver compatibility
    156   1.1   tsutsui include	"compat/ossaudio/files.ossaudio"
    157