LUBBOCK revision 1.1 1 #
2 # LUBBOCK -- Intel LUBBOCK Evaluation Board Kernel
3 #
4
5 include "arch/evbarm/conf/std.lubbock"
6
7 # estimated number of users
8
9 maxusers 32
10
11 #options INTR_DEBUG
12
13 # Standard system options
14
15 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
16 #options NTP # NTP phase/frequency locked loop
17
18 # CPU options
19
20 options CPU_XSCALE_PXA2X0 # Support the XScale core
21 #options XSCALE_CACHE_WRITE_THROUGH
22 makeoptions CPUFLAGS="-mcpu=xscale"
23
24 # Architecture options
25
26 # File systems
27
28 file-system FFS # UFS
29 #file-system LFS # log-structured file system
30 file-system MFS # memory file system
31 file-system NFS # Network file system
32 #file-system ADOSFS # AmigaDOS-compatible file system
33 #file-system EXT2FS # second extended file system (linux)
34 #file-system CD9660 # ISO 9660 + Rock Ridge file system
35 file-system MSDOSFS # MS-DOS file system
36 #file-system FDESC # /dev/fd
37 #file-system KERNFS # /kern
38 #file-system NULLFS # loopback file system
39 #file-system PORTAL # portal filesystem (still experimental)
40 #file-system PROCFS # /proc
41 #file-system UMAPFS # NULLFS + uid and gid remapping
42 #file-system UNION # union file system
43
44 # File system options
45 #options QUOTA # UFS quotas
46 #options FFS_EI # FFS Endian Independant support
47 #options NFSSERVER
48 options SOFTDEP
49
50 # Networking options
51
52 #options GATEWAY # packet forwarding
53 options INET # IP + ICMP + TCP + UDP
54 options INET6 # IPV6
55 #options IPSEC # IP security
56 #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
57 #options IPSEC_DEBUG # debug for IP security
58 #options MROUTING # IP multicast routing
59 #options NS # XNS
60 #options NSIP # XNS tunneling over IP
61 #options ISO,TPIP # OSI
62 #options EON # OSI tunneling over IP
63 #options CCITT,LLC,HDLC # X.25
64 #options NETATALK # AppleTalk networking
65 #options PFIL_HOOKS # pfil(9) packet filter hooks
66 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
67 #options PPP_DEFLATE # Deflate compression support for PPP
68 #options PPP_FILTER # Active filter support for PPP (requires bpf)
69 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
70
71 options NFS_BOOT_BOOTP
72 options NFS_BOOT_DHCP
73 options NFS_BOOT_BOOTPARAM
74
75 # Compatibility options
76
77 #options COMPAT_43 # 4.3BSD compatibility.
78 #options COMPAT_15 # NetBSD 1.5 compatibility.
79 #options COMPAT_14 # NetBSD 1.4 compatibility.
80 #options COMPAT_13 # NetBSD 1.3 compatibility.
81 #options COMPAT_12 # NetBSD 1.2 compatibility.
82 #options COMPAT_11 # NetBSD 1.1 compatibility.
83 #options COMPAT_10 # NetBSD 1.0 compatibility.
84 #options COMPAT_09 # NetBSD 0.9 compatibility.
85 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
86
87 # Shared memory options
88
89 #options SYSVMSG # System V-like message queues
90 #options SYSVSEM # System V-like semaphores
91 #options SEMMNI=10 # number of semaphore identifiers
92 #options SEMMNS=60 # number of semaphores in system
93 #options SEMUME=10 # max number of undo entries per process
94 #options SEMMNU=30 # number of undo structures in system
95 #options SYSVSHM # System V-like memory sharing
96 #options SHMMAXPGS=1024 # 1024 pages is the default
97
98 # Device options
99
100 #options MEMORY_DISK_HOOKS # boottime setup of ramdisk
101 #options MEMORY_DISK_ROOT_SIZE=16384 # Size in blocks
102 #options MEMORY_DISK_DYNAMIC
103 #options MINIROOTSIZE=1000 # Size in blocks
104 #options MEMORY_DISK_IS_ROOT # use memory disk as root
105
106 # Miscellaneous kernel options
107 options KTRACE # system call tracing, a la ktrace(1)
108 #options LKM # loadable kernel modules
109 #options KMEMSTATS # kernel memory statistics
110 options PCMCIAVERBOSE # verbose PCMCIA configuration messages
111 #options SCSIVERBOSE # Verbose SCSI errors
112 #options PCIVERBOSE # Verbose PCI descriptions
113 #options MIIVERBOSE # Verbose MII autoconfuration messages
114 #options DDB_KEYCODE=0x40
115 #options USERCONF # userconf(4) support
116
117 # Development and Debugging options
118
119 options DIAGNOSTIC # internally consistency checks
120 #options DEBUG
121 #options PMAP_DEBUG # Enable pmap_debug_level code
122 #options IPKDB # remote kernel debugging
123 #options VERBOSE_INIT_ARM # verbose bootstraping messages
124 #options DDB # in-kernel debugger
125 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
126 #options KGDB
127 #options DEBUG_KGDB
128 makeoptions DEBUG="-g" # compile full symbol table
129 #options SYMTAB_SPACE=200000
130
131 config netbsd root on ? type ?
132 #config netbsd root on sm0 type nfs
133
134 # The main bus device
135 mainbus0 at root
136
137 # The boot cpu
138 cpu0 at mainbus?
139
140 # integrated peripherals
141 pxaip0 at mainbus?
142
143 pxaintc0 at pxaip? # interrupt controller
144 pxagpio0 at pxaip? # GPIO
145
146 # cotulla integrated 16550 UARTs
147 options COM_PXA2X0
148 com0 at pxaip? addr 0x40100000 intr 22 # Full Function UART
149 com1 at pxaip? addr 0x40200000 intr 21 # BlueTootth UART
150 #com2 at pxaip? addr 0x40700000 intr 20 # Standard UART (for IrDA)
151 options FFUARTCONSOLE
152 options BTUARTCONSOLE
153 options KGDB_DEVNAME="\"btuart\"" # ffuart or btuart
154 options KGDB_DEVRATE=115200
155
156 #aupxa0 at pxaip? # AC97 interface
157
158 # Audio support
159 #audio* at audiobus?
160
161 # On-board device support
162 obio0 at pxaip? intr 8
163 sm0 at obio? addr 0x0c000000 intr 3 # on-board SMC 91C96
164 #options LUBBOCK_SMC91C96_16BIT
165
166 # LCD
167 #lcd0 at obio?
168 #wsdisplay* at lcd? console ?
169 #options WSEMUL_VT100 # VT100 / VT220 emulation
170
171 # SA1111 companion chip
172 #sacc0 at obio? addr 0x10000000 intr 1
173
174 #sacpcic* at sacc?
175 #pcmcia* at sacpcic?
176
177 #sackbc0 at sacc0 addr 0x0a00 intr 21
178 #sackbc1 at sacc0 addr 0x0c00 intr 18
179
180 #pckbd* at sackbc0 slot 0 # slot is bogus but needed.
181 #wskbd* at pckbd? # console ?
182 #pms* at sackbc1 slot 0
183 #wsmouse* at pms? mux 0
184
185 #
186 # Networking devices
187 #
188 #ne* at pcmcia? function ? # NE2000-compatible Ethernet
189 #ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
190 #wi* at pcmcia? function ?
191 #awi* at pcmcia? function ?
192
193 # PCMCIA serial interfaces
194 #com* at pcmcia? function ? # Modems and serial cards
195
196 # PCMCIA IDE controllers and disks
197 #wdc* at pcmcia? function ?
198 #wd* at wdc?
199
200 # Pseudo-Devices
201
202 # disk/mass storage pseudo-devices
203 pseudo-device md 1 # memory disk device (ramdisk)
204 #pseudo-device vnd 4 # disk-like interface to files
205
206 # network pseudo-devices
207 pseudo-device bpfilter 4 # Berkeley packet filter
208 pseudo-device loop # network loopback
209
210 # miscellaneous pseudo-devices
211 pseudo-device pty # pseudo-terminals
212 #pseudo-device rnd # /dev/random and in-kernel generator
213
214 pseudo-device wsmux # mouse & keyboard multiplexor
215