1 1.10 atatat # $NetBSD: NAPPI,v 1.10 2004/07/15 03:53:46 atatat Exp $ 2 1.1 ichiro # 3 1.1 ichiro # NAPPI -- Netwise APlication Platform Board Kernel 4 1.1 ichiro # 5 1.1 ichiro 6 1.1 ichiro include "arch/evbarm/conf/std.ixm1200" 7 1.1 ichiro 8 1.1 ichiro #options INCLUDE_CONFIG_FILE # embed config file in kernel binary 9 1.1 ichiro 10 1.1 ichiro # estimated number of users 11 1.1 ichiro 12 1.1 ichiro maxusers 32 13 1.1 ichiro 14 1.1 ichiro # Standard system options 15 1.1 ichiro 16 1.1 ichiro options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 17 1.1 ichiro #options NTP # NTP phase/frequency locked loop 18 1.1 ichiro 19 1.1 ichiro # CPU options 20 1.1 ichiro 21 1.1 ichiro # For StrongARM systems 22 1.1 ichiro options CPU_SA110 # Support the SA110 core 23 1.1 ichiro options CPU_IXP12X0 # Support the IXP12X0 24 1.1 ichiro makeoptions COPTS="-O2 -march=armv4 -mtune=strongarm" 25 1.1 ichiro 26 1.1 ichiro # Architecture options 27 1.1 ichiro 28 1.1 ichiro # File systems 29 1.1 ichiro 30 1.1 ichiro file-system FFS # UFS 31 1.1 ichiro #file-system LFS # log-structured file system 32 1.1 ichiro file-system MFS # memory file system 33 1.1 ichiro file-system NFS # Network file system 34 1.1 ichiro #file-system ADOSFS # AmigaDOS-compatible file system 35 1.1 ichiro #file-system EXT2FS # second extended file system (linux) 36 1.1 ichiro #file-system CD9660 # ISO 9660 + Rock Ridge file system 37 1.1 ichiro #file-system MSDOSFS # MS-DOS file system 38 1.1 ichiro file-system FDESC # /dev/fd 39 1.1 ichiro file-system KERNFS # /kern 40 1.1 ichiro file-system NULLFS # loopback file system 41 1.1 ichiro #file-system PORTAL # portal filesystem (still experimental) 42 1.1 ichiro file-system PROCFS # /proc 43 1.1 ichiro #file-system UMAPFS # NULLFS + uid and gid remapping 44 1.1 ichiro #file-system UNION # union file system 45 1.1 ichiro 46 1.1 ichiro # File system options 47 1.1 ichiro #options QUOTA # UFS quotas 48 1.1 ichiro #options FFS_EI # FFS Endian Independant support 49 1.1 ichiro options NFSSERVER 50 1.1 ichiro options SOFTDEP 51 1.1 ichiro 52 1.1 ichiro # Networking options 53 1.1 ichiro 54 1.1 ichiro #options GATEWAY # packet forwarding 55 1.1 ichiro options INET # IP + ICMP + TCP + UDP 56 1.1 ichiro options INET6 # IPV6 57 1.1 ichiro #options IPSEC # IP security 58 1.1 ichiro #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC) 59 1.1 ichiro #options IPSEC_DEBUG # debug for IP security 60 1.1 ichiro #options MROUTING # IP multicast routing 61 1.1 ichiro #options NS # XNS 62 1.1 ichiro #options NSIP # XNS tunneling over IP 63 1.1 ichiro #options ISO,TPIP # OSI 64 1.1 ichiro #options EON # OSI tunneling over IP 65 1.1 ichiro #options CCITT,LLC,HDLC # X.25 66 1.1 ichiro #options NETATALK # AppleTalk networking 67 1.1 ichiro #options PFIL_HOOKS # pfil(9) packet filter hooks 68 1.1 ichiro #options PPP_BSDCOMP # BSD-Compress compression support for PPP 69 1.1 ichiro #options PPP_DEFLATE # Deflate compression support for PPP 70 1.1 ichiro #options PPP_FILTER # Active filter support for PPP (requires bpf) 71 1.1 ichiro #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 72 1.1 ichiro 73 1.1 ichiro options NFS_BOOT_BOOTP 74 1.1 ichiro options NFS_BOOT_DHCP 75 1.1 ichiro #options NFS_BOOT_BOOTPARAM 76 1.1 ichiro 77 1.1 ichiro # Compatibility options 78 1.1 ichiro 79 1.1 ichiro #options COMPAT_43 # 4.3BSD compatibility. 80 1.8 chris options COMPAT_16 # NetBSD 1.6 compatibility. 81 1.1 ichiro options COMPAT_15 # NetBSD 1.5 compatibility. 82 1.1 ichiro options COMPAT_14 # NetBSD 1.4 compatibility. 83 1.1 ichiro #options COMPAT_13 # NetBSD 1.3 compatibility. 84 1.1 ichiro #options COMPAT_12 # NetBSD 1.2 compatibility. 85 1.1 ichiro #options COMPAT_11 # NetBSD 1.1 compatibility. 86 1.1 ichiro #options COMPAT_10 # NetBSD 1.0 compatibility. 87 1.1 ichiro #options COMPAT_09 # NetBSD 0.9 compatibility. 88 1.1 ichiro #options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 89 1.1 ichiro 90 1.1 ichiro # Shared memory options 91 1.1 ichiro 92 1.1 ichiro options SYSVMSG # System V-like message queues 93 1.1 ichiro options SYSVSEM # System V-like semaphores 94 1.1 ichiro #options SEMMNI=10 # number of semaphore identifiers 95 1.1 ichiro #options SEMMNS=60 # number of semaphores in system 96 1.1 ichiro #options SEMUME=10 # max number of undo entries per process 97 1.1 ichiro #options SEMMNU=30 # number of undo structures in system 98 1.1 ichiro options SYSVSHM # System V-like memory sharing 99 1.1 ichiro options SHMMAXPGS=1024 # 1024 pages is the default 100 1.1 ichiro 101 1.1 ichiro # Console options. 102 1.1 ichiro #options CONSPEED=38400 # Console speed 103 1.1 ichiro 104 1.1 ichiro # Miscellaneous kernel options 105 1.1 ichiro options KTRACE # system call tracing, a la ktrace(1) 106 1.1 ichiro options IRQSTATS # manage IRQ statistics 107 1.1 ichiro #options LKM # loadable kernel modules 108 1.1 ichiro #options KMEMSTATS # kernel memory statistics 109 1.1 ichiro #options SCSIVERBOSE # Verbose SCSI errors 110 1.1 ichiro options PCIVERBOSE # Verbose PCI descriptions 111 1.1 ichiro options MIIVERBOSE # Verbose MII autoconfuration messages 112 1.1 ichiro #options PCI_CONFIG_DUMP # verbosely dump PCI config space 113 1.1 ichiro #options DDB_KEYCODE=0x40 114 1.2 lukem options USERCONF # userconf(4) support 115 1.1 ichiro #options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 116 1.10 atatat #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 117 1.1 ichiro 118 1.1 ichiro # Development and Debugging options 119 1.1 ichiro 120 1.1 ichiro options DIAGNOSTIC # internally consistency checks 121 1.1 ichiro options DEBUG 122 1.1 ichiro options PMAP_DEBUG # Enable pmap_debug_level code 123 1.1 ichiro #options IPKDB # remote kernel debugging 124 1.1 ichiro options VERBOSE_INIT_ARM # verbose bootstraping messages 125 1.1 ichiro options DDB # in-kernel debugger 126 1.1 ichiro options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 127 1.7 rearnsha #makeoptions DEBUG="-g" # compile full symbol table 128 1.1 ichiro options SYMTAB_SPACE=200000 129 1.1 ichiro 130 1.1 ichiro config netbsd root on ? type ? 131 1.1 ichiro 132 1.1 ichiro # The main bus device 133 1.1 ichiro mainbus0 at root 134 1.1 ichiro 135 1.9 wiz # The boot CPU 136 1.1 ichiro cpu0 at mainbus? 137 1.1 ichiro 138 1.1 ichiro # IXP12x0 slow peripheral 139 1.1 ichiro ixpsip0 at mainbus? 140 1.1 ichiro 141 1.1 ichiro #Timer 142 1.4 ichiro ixpclk* at ixpsip? addr 0x42000300 size 0x10 143 1.1 ichiro 144 1.1 ichiro # Serial 145 1.5 igy ixpcom* at ixpsip? addr 0x90000000 size 0x4000 146 1.1 ichiro 147 1.1 ichiro # Status LEDs 148 1.4 ichiro nappinr* at ixpsip? addr 0x38508000 size 0x1000 149 1.1 ichiro 150 1.1 ichiro # IXP12x0 fast bus 151 1.1 ichiro ixpio0 at mainbus? 152 1.1 ichiro pci0 at ixpio? bus ? 153 1.1 ichiro 154 1.1 ichiro # Non-Transparent PCI-PCI bridge 155 1.1 ichiro #nppb* at pci? dev ? function ? 156 1.1 ichiro 157 1.1 ichiro # 158 1.1 ichiro # Networking devices 159 1.1 ichiro # 160 1.1 ichiro fxp* at pci? dev ? function ? # Intel 82559ER Fast Ethernet LAN Controller 161 1.1 ichiro 162 1.1 ichiro # MII/PHY support 163 1.1 ichiro inphy* at mii? phy ? # Intel 82555 PHYs 164 1.1 ichiro 165 1.1 ichiro 166 1.1 ichiro # Pseudo-Devices 167 1.1 ichiro 168 1.1 ichiro # disk/mass storage pseudo-devices 169 1.1 ichiro #pseudo-device md 1 # memory disk device (ramdisk) 170 1.1 ichiro #pseudo-device vnd 4 # disk-like interface to files 171 1.1 ichiro 172 1.1 ichiro # network pseudo-devices 173 1.1 ichiro #pseudo-device bpfilter 4 # Berkeley packet filter 174 1.1 ichiro pseudo-device loop # network loopback 175 1.1 ichiro 176 1.1 ichiro # miscellaneous pseudo-devices 177 1.1 ichiro pseudo-device pty # pseudo-terminals 178 1.1 ichiro #pseudo-device rnd # /dev/random and in-kernel generator 179 1.6 thorpej pseudo-device ksyms # /dev/ksyms 180