Home | History | Annotate | Line # | Download | only in conf
NAPPI revision 1.13
      1  1.13  christos #	$NetBSD: NAPPI,v 1.13 2004/11/10 17:54:04 christos 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.11  rearnsha makeoptions	CPUFLAGS="-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.12      manu #options 	PIM		# Protocol Independent Multicast
     62   1.1    ichiro #options 	NS		# XNS
     63   1.1    ichiro #options 	NSIP		# XNS tunneling over IP
     64   1.1    ichiro #options 	ISO,TPIP	# OSI
     65   1.1    ichiro #options 	EON		# OSI tunneling over IP
     66   1.1    ichiro #options 	CCITT,LLC,HDLC	# X.25
     67   1.1    ichiro #options 	NETATALK	# AppleTalk networking
     68   1.1    ichiro #options 	PFIL_HOOKS	# pfil(9) packet filter hooks
     69   1.1    ichiro #options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
     70   1.1    ichiro #options 	PPP_DEFLATE	# Deflate compression support for PPP
     71   1.1    ichiro #options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
     72   1.1    ichiro #options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
     73   1.1    ichiro 
     74   1.1    ichiro options 	NFS_BOOT_BOOTP
     75   1.1    ichiro options 	NFS_BOOT_DHCP
     76   1.1    ichiro #options 	NFS_BOOT_BOOTPARAM
     77   1.1    ichiro 
     78   1.1    ichiro # Compatibility options
     79   1.1    ichiro 
     80   1.1    ichiro #options 	COMPAT_43	# 4.3BSD compatibility.
     81   1.8     chris options 	COMPAT_16	# NetBSD 1.6 compatibility.
     82   1.1    ichiro options 	COMPAT_15	# NetBSD 1.5 compatibility.
     83   1.1    ichiro options 	COMPAT_14	# NetBSD 1.4 compatibility.
     84   1.1    ichiro #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     85   1.1    ichiro #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     86   1.1    ichiro #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     87   1.1    ichiro #options 	COMPAT_10	# NetBSD 1.0 compatibility.
     88   1.1    ichiro #options 	COMPAT_09	# NetBSD 0.9 compatibility.
     89   1.1    ichiro #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
     90  1.13  christos options		COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
     91   1.1    ichiro 
     92   1.1    ichiro # Shared memory options
     93   1.1    ichiro 
     94   1.1    ichiro options 	SYSVMSG		# System V-like message queues
     95   1.1    ichiro options 	SYSVSEM		# System V-like semaphores
     96   1.1    ichiro #options 	SEMMNI=10	# number of semaphore identifiers
     97   1.1    ichiro #options 	SEMMNS=60	# number of semaphores in system
     98   1.1    ichiro #options 	SEMUME=10	# max number of undo entries per process
     99   1.1    ichiro #options 	SEMMNU=30	# number of undo structures in system
    100   1.1    ichiro options 	SYSVSHM		# System V-like memory sharing
    101   1.1    ichiro options 	SHMMAXPGS=1024	# 1024 pages is the default
    102   1.1    ichiro 
    103   1.1    ichiro # Console options.
    104   1.1    ichiro #options 	CONSPEED=38400		# Console speed
    105   1.1    ichiro 
    106   1.1    ichiro # Miscellaneous kernel options
    107   1.1    ichiro options 	KTRACE		# system call tracing, a la ktrace(1)
    108   1.1    ichiro options 	IRQSTATS	# manage IRQ statistics
    109   1.1    ichiro #options 	LKM		# loadable kernel modules
    110   1.1    ichiro #options 	KMEMSTATS	# kernel memory statistics
    111   1.1    ichiro #options 	SCSIVERBOSE	# Verbose SCSI errors
    112   1.1    ichiro options 	PCIVERBOSE	# Verbose PCI descriptions
    113   1.1    ichiro options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    114   1.1    ichiro #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    115   1.1    ichiro #options 	DDB_KEYCODE=0x40
    116   1.2     lukem options 	USERCONF	# userconf(4) support
    117   1.1    ichiro #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    118  1.10    atatat #options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
    119   1.1    ichiro 
    120   1.1    ichiro # Development and Debugging options
    121   1.1    ichiro 
    122   1.1    ichiro options 	DIAGNOSTIC	# internally consistency checks
    123   1.1    ichiro options 	DEBUG
    124   1.1    ichiro options 	PMAP_DEBUG	# Enable pmap_debug_level code
    125   1.1    ichiro #options 	IPKDB		# remote kernel debugging
    126   1.1    ichiro options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    127   1.1    ichiro options 	DDB		# in-kernel debugger
    128   1.1    ichiro options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    129   1.7  rearnsha #makeoptions	DEBUG="-g"	# compile full symbol table
    130   1.1    ichiro options 	SYMTAB_SPACE=200000
    131   1.1    ichiro 
    132   1.1    ichiro config		netbsd		root on ? type ?
    133   1.1    ichiro 
    134   1.1    ichiro # The main bus device
    135   1.1    ichiro mainbus0	at root
    136   1.1    ichiro 
    137   1.9       wiz # The boot CPU
    138   1.1    ichiro cpu0		at mainbus?
    139   1.1    ichiro 
    140   1.1    ichiro # IXP12x0 slow peripheral
    141   1.1    ichiro ixpsip0		at mainbus?
    142   1.1    ichiro 
    143   1.1    ichiro #Timer
    144   1.4    ichiro ixpclk*		at ixpsip? addr 0x42000300 size 0x10
    145   1.1    ichiro 
    146   1.1    ichiro # Serial
    147   1.5       igy ixpcom*		at ixpsip? addr 0x90000000 size 0x4000
    148   1.1    ichiro 
    149   1.1    ichiro # Status LEDs
    150   1.4    ichiro nappinr*	at ixpsip? addr 0x38508000 size 0x1000
    151   1.1    ichiro 
    152   1.1    ichiro # IXP12x0 fast bus
    153   1.1    ichiro ixpio0		at mainbus?
    154   1.1    ichiro pci0		at ixpio? bus ?
    155   1.1    ichiro 
    156   1.1    ichiro # Non-Transparent PCI-PCI bridge
    157   1.1    ichiro #nppb*		at pci? dev ? function ?
    158   1.1    ichiro 
    159   1.1    ichiro #
    160   1.1    ichiro # Networking devices
    161   1.1    ichiro #
    162   1.1    ichiro fxp*	at pci? dev ? function ?	# Intel 82559ER Fast Ethernet LAN Controller 
    163   1.1    ichiro 
    164   1.1    ichiro # MII/PHY support
    165   1.1    ichiro inphy*  at mii? phy ?                   # Intel 82555 PHYs
    166   1.1    ichiro 
    167   1.1    ichiro 
    168   1.1    ichiro # Pseudo-Devices
    169   1.1    ichiro 
    170   1.1    ichiro # disk/mass storage pseudo-devices
    171   1.1    ichiro #pseudo-device	md		1	# memory disk device (ramdisk)
    172   1.1    ichiro #pseudo-device	vnd		4	# disk-like interface to files
    173   1.1    ichiro 
    174   1.1    ichiro # network pseudo-devices
    175   1.1    ichiro #pseudo-device	bpfilter	4	# Berkeley packet filter
    176   1.1    ichiro pseudo-device	loop			# network loopback
    177   1.1    ichiro 
    178   1.1    ichiro # miscellaneous pseudo-devices
    179   1.1    ichiro pseudo-device	pty			# pseudo-terminals
    180   1.1    ichiro #pseudo-device	rnd			# /dev/random and in-kernel generator
    181   1.6   thorpej pseudo-device	ksyms			# /dev/ksyms
    182