LUBBOCK revision 1.9
1# 2# LUBBOCK -- Intel LUBBOCK Evaluation Board Kernel 3# 4 5include "arch/evbarm/conf/std.lubbock" 6 7# estimated number of users 8 9maxusers 32 10 11#options INTR_DEBUG 12 13# Standard system options 14 15options 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 20options CPU_XSCALE_PXA2X0 # Support the XScale core 21#options XSCALE_CACHE_WRITE_THROUGH 22#options XSCALE_CACHE_WRITE_BACK 23makeoptions CPUFLAGS="-mcpu=xscale" 24 25# Architecture options 26 27# File systems 28 29file-system FFS # UFS 30#file-system LFS # log-structured file system 31file-system MFS # memory file system 32file-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 36file-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 49options SOFTDEP 50 51# Networking options 52 53#options GATEWAY # packet forwarding 54options INET # IP + ICMP + TCP + UDP 55options 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 73options NFS_BOOT_BOOTP 74options NFS_BOOT_DHCP 75options NFS_BOOT_BOOTPARAM 76 77# Compatibility options 78 79#options COMPAT_43 # 4.3BSD compatibility. 80options 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. 89options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 90 91# Shared memory options 92 93#options SYSVMSG # System V-like message queues 94#options SYSVSEM # System V-like semaphores 95#options SEMMNI=10 # number of semaphore identifiers 96#options SEMMNS=60 # number of semaphores in system 97#options SEMUME=10 # max number of undo entries per process 98#options SEMMNU=30 # number of undo structures in system 99#options SYSVSHM # System V-like memory sharing 100#options SHMMAXPGS=1024 # 1024 pages is the default 101 102# Device options 103 104#options MEMORY_DISK_HOOKS # boottime setup of ramdisk 105#options MEMORY_DISK_ROOT_SIZE=16384 # Size in blocks 106#options MEMORY_DISK_DYNAMIC 107#options MINIROOTSIZE=1000 # Size in blocks 108#options MEMORY_DISK_IS_ROOT # use memory disk as root 109 110# Miscellaneous kernel options 111options KTRACE # system call tracing, a la ktrace(1) 112#options LKM # loadable kernel modules 113#options KMEMSTATS # kernel memory statistics 114options PCMCIAVERBOSE # verbose PCMCIA configuration messages 115#options SCSIVERBOSE # Verbose SCSI errors 116#options MIIVERBOSE # Verbose MII autoconfuration messages 117#options DDB_KEYCODE=0x40 118#options USERCONF # userconf(4) support 119 120# Development and Debugging options 121 122options DIAGNOSTIC # internally consistency checks 123#options DEBUG 124#options PMAP_DEBUG # Enable pmap_debug_level code 125#options IPKDB # remote kernel debugging 126#options VERBOSE_INIT_ARM # verbose bootstraping messages 127#options DDB # in-kernel debugger 128#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 129#options KGDB 130#options DEBUG_KGDB 131#makeoptions DEBUG="-g" # compile full symbol table 132#options SYMTAB_SPACE=200000 133 134config netbsd root on ? type ? 135config netbsd-sm0 root on sm0 type nfs 136 137# The main bus device 138mainbus0 at root 139 140# The boot cpu 141cpu0 at mainbus? 142 143# integrated peripherals 144pxaip0 at mainbus? 145 146pxaintc0 at pxaip? # interrupt controller 147pxagpio0 at pxaip? # GPIO 148 149# cotulla integrated 16550 UARTs 150options COM_PXA2X0 151com0 at pxaip? addr 0x40100000 intr 22 # Full Function UART 152com1 at pxaip? addr 0x40200000 intr 21 # BlueTootth UART 153#com2 at pxaip? addr 0x40700000 intr 20 # Standard UART (for IrDA) 154options FFUARTCONSOLE 155options BTUARTCONSOLE 156options KGDB_DEVNAME="\"btuart\"" # ffuart or btuart 157options KGDB_DEVRATE=115200 158 159#aupxa0 at pxaip? # AC97 interface 160 161# Audio support 162#audio* at audiobus? 163 164# On-board device support 165obio0 at pxaip? intr 8 166sm0 at obio? addr 0x0c000000 intr 3 # on-board SMC 91C96 167#options LUBBOCK_SMC91C96_16BIT 168 169# LCD 170lcd0 at obio? 171wsdisplay* at lcd? console ? 172options WSEMUL_VT100 # VT100 / VT220 emulation 173 174# SA1111 companion chip 175sacc0 at obio? addr 0x10000000 intr 1 176 177sacpcic* at sacc? 178pcmcia* at sacpcic? 179 180sackbc0 at sacc0 addr 0x0a00 intr 21 181sackbc1 at sacc0 addr 0x0c00 intr 18 182 183# PS/2 controller of SA-1111 doesn't have "slot"; One device is attached 184# to one controller. However, pckbd driver requires "slot 0" and pms driver 185# requires "slot 1" 186pckbd* at sackbc0 slot 0 187wskbd* at pckbd? # console ? 188pms* at sackbc1 slot 1 189wsmouse* at pms? mux 0 190 191# PCMCIA serial interfaces 192com* at pcmcia? function ? # Modems and serial cards 193 194pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 195com* at pcmcom? slave ? # ...and the slave devices 196 197# PCMCIA SCSI controllers 198aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 199esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 200 201# SCSI bus support 202scsibus* at scsi? 203 204# SCSI devices 205sd* at scsibus? target ? lun ? # SCSI disk drives 206st* at scsibus? target ? lun ? # SCSI tape drives 207cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 208ch* at scsibus? target ? lun ? # SCSI autochangers 209ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 210ss* at scsibus? target ? lun ? # SCSI scanners 211uk* at scsibus? target ? lun ? # SCSI unknown 212 213# PCMCIA IDE controllers and disks 214wdc* at pcmcia? function ? 215atabus* at wdc? channel ? 216wd* at atabus? drive ? flags 0x0000 217 218# 219# Networking devices 220# 221an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 222awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 223cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 224ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 225mbe* at pcmcia? function ? # MB8696x based Ethernet 226ne* at pcmcia? function ? # NE2000-compatible Ethernet 227ray* at pcmcia? function ? # Raytheon Raylink (802.11) 228sm* at pcmcia? function ? # Megahertz Ethernet 229tr* at pcmcia? function ? # TROPIC based Token-Ring 230wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 231xi* at pcmcia? function ? # Xircom CreditCard Ethernet 232 233mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 234com* at mhzc? 235sm* at mhzc? 236 237# PCMCIA audio devices 238#esl* at pcmcia? function ? # ESS 1688 AudioDrive 239 240# Pseudo-Devices 241 242# disk/mass storage pseudo-devices 243pseudo-device md 1 # memory disk device (ramdisk) 244#pseudo-device vnd 4 # disk-like interface to files 245#pseudo-device fss 4 # file system snapshot device 246 247# network pseudo-devices 248pseudo-device bpfilter 4 # Berkeley packet filter 249pseudo-device loop # network loopback 250 251# miscellaneous pseudo-devices 252pseudo-device pty # pseudo-terminals 253#pseudo-device rnd # /dev/random and in-kernel generator 254 255pseudo-device wsmux # mouse & keyboard multiplexor 256