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 #options XSCALE_CACHE_WRITE_BACK 23 makeoptions CPUFLAGS="-mcpu=xscale" 24 25 # Architecture options 26 27 # File systems 28 29 file-system FFS # UFS 30 #file-system LFS # log-structured file system 31 file-system MFS # memory file system 32 file-system NFS # Network file system 33 #file-system ADOSFS # AmigaDOS-compatible file system 34 #file-system EXT2FS # second extended file system (linux) 35 #file-system CD9660 # ISO 9660 + Rock Ridge file system 36 file-system MSDOSFS # MS-DOS file system 37 #file-system FDESC # /dev/fd 38 #file-system KERNFS # /kern 39 #file-system NULLFS # loopback file system 40 #file-system PORTAL # portal filesystem (still experimental) 41 #file-system PROCFS # /proc 42 #file-system UMAPFS # NULLFS + uid and gid remapping 43 #file-system UNION # union file system 44 45 # File system options 46 #options QUOTA # UFS quotas 47 #options FFS_EI # FFS Endian Independant support 48 #options NFSSERVER 49 options SOFTDEP 50 51 # Networking options 52 53 #options GATEWAY # packet forwarding 54 options INET # IP + ICMP + TCP + UDP 55 options INET6 # IPV6 56 #options IPSEC # IP security 57 #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC) 58 #options IPSEC_DEBUG # debug for IP security 59 #options MROUTING # IP multicast routing 60 #options PIM # Protocol Independent Multicast 61 #options NS # XNS 62 #options NSIP # XNS tunneling over IP 63 #options ISO,TPIP # OSI 64 #options EON # OSI tunneling over IP 65 #options CCITT,LLC,HDLC # X.25 66 #options NETATALK # AppleTalk networking 67 #options PFIL_HOOKS # pfil(9) packet filter hooks 68 #options PPP_BSDCOMP # BSD-Compress compression support for PPP 69 #options PPP_DEFLATE # Deflate compression support for PPP 70 #options PPP_FILTER # Active filter support for PPP (requires bpf) 71 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 72 73 options NFS_BOOT_BOOTP 74 options NFS_BOOT_DHCP 75 options NFS_BOOT_BOOTPARAM 76 77 # Compatibility options 78 79 #options COMPAT_43 # 4.3BSD compatibility. 80 options COMPAT_16 # NetBSD 1.6 compatibility. 81 #options COMPAT_15 # NetBSD 1.5 compatibility. 82 #options COMPAT_14 # NetBSD 1.4 compatibility. 83 #options COMPAT_13 # NetBSD 1.3 compatibility. 84 #options COMPAT_12 # NetBSD 1.2 compatibility. 85 #options COMPAT_11 # NetBSD 1.1 compatibility. 86 #options COMPAT_10 # NetBSD 1.0 compatibility. 87 #options COMPAT_09 # NetBSD 0.9 compatibility. 88 #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 89 90 # Shared memory options 91 92 #options SYSVMSG # System V-like message queues 93 #options SYSVSEM # System V-like semaphores 94 #options SEMMNI=10 # number of semaphore identifiers 95 #options SEMMNS=60 # number of semaphores in system 96 #options SEMUME=10 # max number of undo entries per process 97 #options SEMMNU=30 # number of undo structures in system 98 #options SYSVSHM # System V-like memory sharing 99 #options SHMMAXPGS=1024 # 1024 pages is the default 100 101 # Device options 102 103 #options MEMORY_DISK_HOOKS # boottime setup of ramdisk 104 #options MEMORY_DISK_ROOT_SIZE=16384 # Size in blocks 105 #options MEMORY_DISK_DYNAMIC 106 #options MINIROOTSIZE=1000 # Size in blocks 107 #options MEMORY_DISK_IS_ROOT # use memory disk as root 108 109 # Miscellaneous kernel options 110 options KTRACE # system call tracing, a la ktrace(1) 111 #options LKM # loadable kernel modules 112 #options KMEMSTATS # kernel memory statistics 113 options PCMCIAVERBOSE # verbose PCMCIA configuration messages 114 #options SCSIVERBOSE # Verbose SCSI errors 115 #options MIIVERBOSE # Verbose MII autoconfuration messages 116 #options DDB_KEYCODE=0x40 117 #options USERCONF # userconf(4) support 118 119 # Development and Debugging options 120 121 options DIAGNOSTIC # internally consistency checks 122 #options DEBUG 123 #options PMAP_DEBUG # Enable pmap_debug_level code 124 #options IPKDB # remote kernel debugging 125 #options VERBOSE_INIT_ARM # verbose bootstraping messages 126 #options DDB # in-kernel debugger 127 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 128 #options KGDB 129 #options DEBUG_KGDB 130 #makeoptions DEBUG="-g" # compile full symbol table 131 #options SYMTAB_SPACE=200000 132 133 config netbsd root on ? type ? 134 config netbsd-sm0 root on sm0 type nfs 135 136 # The main bus device 137 mainbus0 at root 138 139 # The boot cpu 140 cpu0 at mainbus? 141 142 # integrated peripherals 143 pxaip0 at mainbus? 144 145 pxaintc0 at pxaip? # interrupt controller 146 pxagpio0 at pxaip? # GPIO 147 148 # cotulla integrated 16550 UARTs 149 options COM_PXA2X0 150 com0 at pxaip? addr 0x40100000 intr 22 # Full Function UART 151 com1 at pxaip? addr 0x40200000 intr 21 # BlueTootth UART 152 #com2 at pxaip? addr 0x40700000 intr 20 # Standard UART (for IrDA) 153 options FFUARTCONSOLE 154 options BTUARTCONSOLE 155 options KGDB_DEVNAME="\"btuart\"" # ffuart or btuart 156 options KGDB_DEVRATE=115200 157 158 #aupxa0 at pxaip? # AC97 interface 159 160 # Audio support 161 #audio* at audiobus? 162 163 # On-board device support 164 obio0 at pxaip? intr 8 165 sm0 at obio? addr 0x0c000000 intr 3 # on-board SMC 91C96 166 #options LUBBOCK_SMC91C96_16BIT 167 168 # LCD 169 lcd0 at obio? 170 wsdisplay* at lcd? console ? 171 options WSEMUL_VT100 # VT100 / VT220 emulation 172 173 # SA1111 companion chip 174 sacc0 at obio? addr 0x10000000 intr 1 175 176 sacpcic* at sacc? 177 pcmcia* at sacpcic? 178 179 sackbc0 at sacc0 addr 0x0a00 intr 21 180 sackbc1 at sacc0 addr 0x0c00 intr 18 181 182 # PS/2 controller of SA-1111 doesn't have "slot"; One device is attached 183 # to one controller. However, pckbd driver requires "slot 0" and pms driver 184 # requires "slot 1" 185 pckbd* at sackbc0 slot 0 186 wskbd* at pckbd? # console ? 187 pms* at sackbc1 slot 1 188 wsmouse* at pms? mux 0 189 190 # PCMCIA serial interfaces 191 com* at pcmcia? function ? # Modems and serial cards 192 193 pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 194 com* at pcmcom? slave ? # ...and the slave devices 195 196 # PCMCIA SCSI controllers 197 aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 198 esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 199 200 # SCSI bus support 201 scsibus* at scsi? 202 203 # SCSI devices 204 sd* at scsibus? target ? lun ? # SCSI disk drives 205 st* at scsibus? target ? lun ? # SCSI tape drives 206 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 207 ch* at scsibus? target ? lun ? # SCSI autochangers 208 ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 209 ss* at scsibus? target ? lun ? # SCSI scanners 210 uk* at scsibus? target ? lun ? # SCSI unknown 211 212 # PCMCIA IDE controllers and disks 213 wdc* at pcmcia? function ? 214 atabus* at wdc? channel ? 215 wd* at atabus? drive ? flags 0x0000 216 217 # 218 # Networking devices 219 # 220 an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 221 awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 222 cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 223 ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 224 mbe* at pcmcia? function ? # MB8696x based Ethernet 225 ne* at pcmcia? function ? # NE2000-compatible Ethernet 226 ray* at pcmcia? function ? # Raytheon Raylink (802.11) 227 sm* at pcmcia? function ? # Megahertz Ethernet 228 tr* at pcmcia? function ? # TROPIC based Token-Ring 229 wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 230 xi* at pcmcia? function ? # Xircom CreditCard Ethernet 231 232 mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 233 com* at mhzc? 234 sm* at mhzc? 235 236 # PCMCIA audio devices 237 #esl* at pcmcia? function ? # ESS 1688 AudioDrive 238 239 # Pseudo-Devices 240 241 # disk/mass storage pseudo-devices 242 pseudo-device md 1 # memory disk device (ramdisk) 243 #pseudo-device vnd 4 # disk-like interface to files 244 245 # network pseudo-devices 246 pseudo-device bpfilter 4 # Berkeley packet filter 247 pseudo-device loop # network loopback 248 249 # miscellaneous pseudo-devices 250 pseudo-device pty # pseudo-terminals 251 #pseudo-device rnd # /dev/random and in-kernel generator 252 253 pseudo-device wsmux # mouse & keyboard multiplexor 254