INSTALL revision 1.27 1 # $NetBSD: INSTALL,v 1.27 2004/07/15 03:53:45 atatat Exp $
2 #
3 # First try for BEBOX config file
4 #
5
6 include "arch/bebox/conf/std.bebox"
7
8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 maxusers 32
11
12 makeoptions COPTS="-Os" # Optimise for space. Implies -O2
13
14 # Enable the hooks used for initializing the root memory-disk.
15 options MEMORY_DISK_HOOKS
16 options MEMORY_DISK_IS_ROOT # force root on memory disk
17 options MEMORY_DISK_SERVER=0 # no userspace memory disk support
18 options MEMORY_DISK_ROOT_SIZE=3074 # size of memory disk, in blocks
19
20 #options IPKDBUSERHACK # Allow access to mapped memory via kgdb
21 #options DEBUG_BY_TOOLS # Allow debugging from toolsnet
22 # HMAC key to be used for debugging sessions
23 #options IPKDBKEY="\"HMAC pass phrase text\""
24 #options IPKDBSECURE # Allow debugging even when securelevel > 0
25 #makeoptions DEBUG="-g"
26
27 #options DEBUG
28 #options DIAGNOSTIC
29 #options TRAP_PANICWAIT
30 #options DDB
31 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
32 #options KTRACE
33 options USERCONF # userconf(4) support
34 options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
35 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
36 options MALLOC_NOINLINE # Not inlining MALLOC saves memory
37
38 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
39 #options COMPAT_43
40 #options COMPAT_09
41 options COMPAT_10
42 options COMPAT_12
43 options COMPAT_13
44 options COMPAT_14
45 options COMPAT_386BSD_MBRPART # recognize old partition ID
46
47 # File systems
48 file-system FFS
49 file-system EXT2FS
50 file-system MFS
51 file-system NFS
52 file-system CD9660
53 file-system MSDOSFS
54 #file-system FDESC
55 file-system KERNFS
56 #file-system NULLFS
57 #file-system PORTAL
58 #file-system PROCFS
59 #file-system UMAPFS
60 #file-system UNION
61
62 # Filesystem options
63 #options NFS_V2_ONLY # Exclude NFS3 and NQNFS code to save space
64 options VNODE_OP_NOINLINE # Not inlining vnode op calls saves mem
65
66 #options NFSSERVER
67
68 options INET
69
70 #options NFS_BOOT_BOOTPARAM
71
72 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
73
74 config netbsd root on ? type ffs
75
76 #pseudo-device vnd 4
77 pseudo-device md 1
78 pseudo-device loop
79 #pseudo-device bpfilter 8 # packet filter
80 pseudo-device pty 2 # pseudo-terminals (Sysinst needs two)
81
82 #
83 # device
84 #
85 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
86
87 options PCIVERBOSE # verbose PCI device messages
88 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
89
90 mainbus0 at root
91
92 cpu* at mainbus0
93 pci0 at mainbus0 bus ?
94
95 ppb* at pci? dev ? function ? # PCI-PCI bridges
96 pci* at ppb? bus ?
97 pchb* at pci? dev ? function ? # PCI-Host bridges
98 pcib* at pci? dev ? function ? # PCI-ISA bridges
99
100 isa* at pcib? # ISA on PCI-ISA bridge
101
102 pc0 at isa? port 0x60 irq 1 # generic PC console device
103
104 com0 at isa? port 0x3f8 irq 4 # standard PC serial ports
105 com1 at isa? port 0x2f8 irq 3
106 #com2 at isa? port 0x380 irq 16
107 #com3 at isa? port 0x388 irq 17
108
109 lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
110 #lpt1 at isa? port 0x278
111 #lpt2 at isa? port 0x3bc
112
113 #lms0 at isa? port 0x23c irq 5 # Logitech bus mouse
114 #lms1 at isa? port 0x238 irq 5
115 #mms0 at isa? port 0x23c irq 5 # Microsoft InPort mouse
116 #mms1 at isa? port 0x238 irq 5
117
118 #siop* at pci? dev ? function ? # NCR 538XX SCSI controllers
119 #scsibus* at siop?
120
121 #sd* at scsibus? target ? lun ? # SCSI disk drives
122 #st* at scsibus? target ? lun ? # SCSI tape drives
123 #cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
124 #ch* at scsibus? target ? lun ? # SCSI autochangers
125 #ss* at scsibus? target ? lun ? # SCSI scanners
126 #uk* at scsibus? target ? lun ? # SCSI unknown
127
128 fdc0 at isa? port 0x3f0 irq 6 drq 2 # standard PC floppy controllers
129 #fdc1 at isa? port 0x370 irq ? drq ?
130 fd0 at fdc? drive 1
131 #fd* at fdc? drive ?
132
133 wdc0 at isa? port 0x1f0 irq 14 # ST506, ESDI, and IDE controllers
134 atabus* at ata?
135 wd* at atabus? drive ?
136
137 ne0 at isa? port 0x300 irq 5 # NE[12]000 ethernet cards
138 #ipkdbif0 at ne?
139
140 #wss0 at isa? port 0x530 irq 10 drq 0 # Windows Sound System
141 #spkr0 at pckbd? port 0x61
142
143 # Joystick driver. Probe is a little strange; add only if you have one.
144 #joy0 at isa? port 0x201
145
146 pseudo-device rnd # /dev/random and in-kernel generator
147