INSTALL revision 1.1 1 # $NetBSD: INSTALL,v 1.1 1999/12/09 14:53:02 tsutsui Exp $
2
3 # config for bootable floppy kernel
4 #
5 include "arch/news68k/conf/std.news68k"
6
7 maxusers 8
8
9 options news1700 # only news1700 is supported
10 options CPU_SINGLE # Will IOP be supported eventually?
11 #options FPU_EMULATE
12
13 options MEMORY_DISK_HOOKS
14 options MEMORY_DISK_IS_ROOT # Force root on ram-disk
15 options MEMORY_DISK_SERVER=0 # no userspace memory disk support
16 options MINIROOTSIZE=4096 # 2 Megabytes
17
18 makeoptions COPTS="-Os"
19
20 # Standard system options
21 #options KTRACE # system call tracing support
22 #options SYSVMSG # System V message queues
23 #options SYSVSEM # System V semaphores
24 #options SYSVSHM # System V shared memory
25 #optoins SHMMAXPGS=1024 # 1024 pages is the default
26 #options LKM # loadable kernel modules
27 #options NKMEMCLUSTERS=1024 # 4K pages in kernel malloc pool
28 #options UCONSOLE # users can redirect console (unsafe)
29
30 # Debugging options
31 #options DDB # kernel dynamic debugger
32 #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
33 #options DEBUG # extra kernel debugging support
34 #options DIAGNOSTIC # extra kernel sanity checking
35 #options SCSIVERBOSE # Verbose SCSI errors
36 #options SCSIDEBUG
37
38 # Compatibility options
39 options COMPAT_43 # compatibility with 4.3BSD binaries
40 options COMPAT_13 # NetBSD 1.3 binary compatibility
41 options COMPAT_14 # NetBSD 1.4 binary compatibility
42 #options TCP_COMPAT_42 # compatibility with 4.2BSD TCP/IP
43
44 # Filesystem options
45 file-system FFS # Berkeley Fast Filesystem
46 file-system NFS # Sun NFS-compatible filesystem client
47 file-system MFS # memory-based filesystem
48 file-system CD9660 # ISO 9660 + Rock Ridge file system
49 file-system MSDOSFS # MS-DOS FAT file system
50 file-system KERNFS # /kern
51 #file-system PROCFS # /proc
52 #file-system FDESC # /dev/fd/*
53 #file-system NULLFS # loopback file system
54 #file-system UNION # union file system
55
56 #options NFSSERVER # nfs server support
57 #options QUOTA # ffs quotas
58 #options FFS_EI # ffs endian independant support
59
60 # Networking options
61 options INET # Internet protocols
62 #options GATEWAY # IP packet forwarding
63 #options PFIL_HOOKS # pfil(9) packet filter hooks
64 #options IPFILTER_LOG # ipmon(8) log support
65 #options NFS_BOOT_BOOTPARAM
66
67 config netbsd root on ? type ?
68
69 #
70 # device declarations
71 #
72
73 mainbus0 at root
74
75 # NEWS HYPER-BUS
76 hb0 at mainbus0
77
78 # MK48T02 realtime clock
79 clock0 at hb0 addr 0xe0d807f8 ipl 6
80
81 # onboard LANCE ethernet
82 le0 at hb0 addr 0xe0f00000 ipl 4
83
84 # keyboard/mouse; not yet
85 #kb0 at hb0 addr 0xe0d00000 ipl 5
86 #ms0 at hb0 addr 0xe0d00000 ipl 5
87
88 # onboard z8530 SCC
89 zsc0 at hb0 addr 0xe0d40000 ipl 5 vect 64
90 zstty0 at zsc0 channel 0
91 zstty1 at zsc0 channel 1
92
93 # Frame buffer devices; not yet
94 #fb0 at hb0 addr 0xf0700000 # NWB225
95 #fb1 at hb0 addr 0xf0f00000 # NWB512
96
97 # onboard uPD72067 FDC; not yet
98 #fdc0 at hb0 addr 0xe0c80000 ipl 3
99 #fd* at fdc0
100
101 # onboard CXD1180 SCSI controller
102 #
103 # This driver has several flags which may be enabled using
104 # the "flags" directive. Valid flags are:
105 #
106 # 0x000ff Set (1<<target) to disable disconnect/reselect
107 # 0x0ff00 Set (1<<(target+8)) to disable parity checking
108 # 0x10000 Set this bit to disable DMA interrupts (poll)
109 # 0x20000 Set this bit to disable DMA entirely (use PIO)
110 #
111 # For example: "flags 0x1000f" would disable DMA interrupts,
112 # and disable disconnect/reselect for targets 0-3
113 #
114 si0 at hb0 addr 0xe0cc0000 ipl 4 flags 0xf
115 scsibus* at si0
116
117 sd* at scsibus? target ? lun ? # SCSI disks
118 st* at scsibus? target ? lun ? # SCSI tapes
119 cd* at scsibus? target ? lun ? # SCSI CD-ROMs
120
121 # Misc.
122 pseudo-device loop # loopback interface; required
123 pseudo-device pty 32 # pseudo-terminals
124 pseudo-device md 1 # memory disk device
125 pseudo-device sl 2 # SLIP interfaces
126 pseudo-device ppp 2 # PPP interfaces
127