XEN3_DOMU revision 1.48
1# $NetBSD: XEN3_DOMU,v 1.48 2013/04/27 21:43:14 christos Exp $ 2 3include "arch/amd64/conf/std.xen" 4 5options MULTIPROCESSOR 6 7options INCLUDE_CONFIG_FILE # embed config file in kernel binary 8 9#options UVMHIST 10#options UVMHIST_PRINT 11#options SYSCALL_DEBUG 12 13maxusers 32 # estimated number of users 14 15# 16options MAXPHYS=32768 #xbd doesn't handle 64k transfers 17#options DOM0OPS 18 19#options USER_LDT # user-settable LDT; used by WINE 20 21#options MTRR # memory-type range register syscall support 22 23#options CONSDEVNAME="\"xencons\"" 24#options CONS_OVERRIDE 25 26options INSECURE # disable kernel security levels - X needs this 27 28options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 29options NTP # NTP phase/frequency locked loop 30 31options KTRACE # system call tracing via ktrace(1) 32 33options SYSVMSG # System V-like message queues 34options SYSVSEM # System V-like semaphores 35options SYSVSHM # System V-like memory sharing 36 37options USERCONF # userconf(4) support 38options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 39 40#options BUFQ_READPRIO 41options BUFQ_PRIOCSCAN 42 43# Diagnostic/debugging support options 44options DIAGNOSTIC # expensive kernel consistency checks 45#options DEBUG # expensive debugging checks/support 46options KMEMSTATS # kernel memory statistics (vmstat -m) 47options DDB # in-kernel debugger 48options DDB_ONPANIC=1 # see also sysctl(8): `ddb.onpanic' 49options DDB_HISTORY_SIZE=512 # enable history editing in DDB 50#options KGDB # remote debugger 51#options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600 52#makeoptions DEBUG="-g" # compile full symbol table 53makeoptions COPTS="-O2 -fno-omit-frame-pointer" 54options DDB_COMMANDONENTER="trace;show registers" 55 56# Compatibility options 57options COMPAT_15 # compatibility with NetBSD 1.5, 58options COMPAT_16 # NetBSD 1.6, 59options COMPAT_20 # NetBSD 2.0, 60options COMPAT_30 # NetBSD 3.0, 61options COMPAT_40 # NetBSD 4.0 compatibility. 62options COMPAT_43 # and 4.3BSD 63#options COMPAT_386BSD_MBRPART # recognize old partition ID 64options COMPAT_50 # NetBSD 5.0, 65options COMPAT_60 # NetBSD 6.0 compatibility. 66 67options COMPAT_OSSAUDIO 68options COMPAT_NETBSD32 69options COMPAT_LINUX 70options COMPAT_LINUX32 # req. COMPAT_LINUX and COMPAT_NETBSD32 71options EXEC_ELF32 72options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 73 74# Wedge support 75options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances 76options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges 77# The following two options can break /etc/fstab, so handle with care 78#options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges 79#options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges 80 81# File systems 82file-system FFS # UFS 83file-system EXT2FS # second extended file system (linux) 84file-system LFS # log-structured file system 85file-system MFS # memory file system 86file-system NFS # Network File System client 87file-system NTFS # Windows/NT file system (experimental) 88file-system CD9660 # ISO 9660 + Rock Ridge file system 89file-system MSDOSFS # MS-DOS file system 90file-system FDESC # /dev/fd 91file-system KERNFS # /kern 92file-system NULLFS # loopback file system 93file-system OVERLAY # overlay file system 94file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs) 95file-system PROCFS # /proc 96file-system UMAPFS # NULLFS + uid and gid remapping 97file-system UNION # union file system 98file-system CODA # Coda File System; also needs vcoda (below) 99file-system SMBFS # experimental - CIFS; also needs nsmb (below) 100file-system PTYFS # /dev/pts/N support 101file-system TMPFS # Efficient memory file-system 102 103# File system options 104options QUOTA # legacy UFS quotas 105options QUOTA2 # new, in-filesystem UFS quotas 106#options FFS_EI # FFS Endian Independent support 107options WAPBL # File system journaling support 108#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 109options NFSSERVER # Network File System server 110#options FFS_NO_SNAPSHOT # No FFS snapshot support 111#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 112 # immutable) behave as system flags. 113 114# Networking options 115#options GATEWAY # packet forwarding 116options INET # IP + ICMP + TCP + UDP 117options INET6 # IPV6 118#options IPSEC # IP security 119#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 120#options IPSEC_DEBUG # debug for IP security 121#options MROUTING # IP multicast routing 122#options PIM # Protocol Independent Multicast 123options NETATALK # AppleTalk networking protocols 124options PPP_BSDCOMP # BSD-Compress compression support for PPP 125options PPP_DEFLATE # Deflate compression support for PPP 126options PPP_FILTER # Active filter support for PPP (requires bpf) 127options PFIL_HOOKS # pfil(9) packet filter hooks 128options IPFILTER_LOG # ipmon(8) log support 129options IPFILTER_LOOKUP # ippool(8) support 130options IPFILTER_COMPAT # Compat for IP-Filter 131#options IPFILTER_DEFAULT_BLOCK # block all packets by default 132#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 133 134#options ALTQ # Manipulate network interfaces' output queues 135#options ALTQ_BLUE # Stochastic Fair Blue 136#options ALTQ_CBQ # Class-Based Queueing 137#options ALTQ_CDNR # Diffserv Traffic Conditioner 138#options ALTQ_FIFOQ # First-In First-Out Queue 139#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 140#options ALTQ_HFSC # Hierarchical Fair Service Curve 141#options ALTQ_LOCALQ # Local queueing discipline 142#options ALTQ_PRIQ # Priority Queueing 143#options ALTQ_RED # Random Early Detection 144#options ALTQ_RIO # RED with IN/OUT 145#options ALTQ_WFQ # Weighted Fair Queueing 146 147options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 148#options NFS_BOOT_BOOTSTATIC 149#options NFS_BOOTSTATIC_MYIP="\"169.254.1.2\"" 150#options NFS_BOOTSTATIC_GWIP="\"169.254.1.1\"" 151#options NFS_BOOTSTATIC_MASK="\"255.255.255.0\"" 152#options NFS_BOOTSTATIC_SERVADDR="\"169.254.1.1\"" 153#options NFS_BOOTSTATIC_SERVER="\"server:/path/to/root\"" 154 155config netbsd root on ? type ? 156#config netbsd root on wd0a type ffs 157#config netbsd root on xennet0 type nfs 158 159mainbus0 at root 160 161hypervisor* at mainbus? # Xen hypervisor 162 163vcpu* at hypervisor? # Xen virtual CPUs 164xenbus* at hypervisor? # Xen virtual bus 165xennet* at xenbus? # Xen virtual network interface 166xbd* at xenbus? # Xen virtual block device 167balloon* at xenbus? # Xen balloon device 168 169xencons* at hypervisor? # Xen virtual console 170 171# PCI pass-through support: 172#xpci* at xenbus ? #Xen3 PCI front end driver 173#pci* at xpci ? 174# you then need to add your PCI devices drivers below. 175 176cinclude "arch/amd64/conf/GENERIC.local" 177 178# Pseudo-Devices 179 180# 181# accept filters 182pseudo-device accf_data # "dataready" accept filter 183pseudo-device accf_http # "httpready" accept filter 184 185pseudo-device crypto # /dev/crypto device 186pseudo-device swcrypto # software crypto implementation 187 188# disk/mass storage pseudo-devices 189pseudo-device ccd # concatenated/striped disk devices 190pseudo-device cgd # cryptographic disk devices 191pseudo-device raid # RAIDframe disk driver 192options RAID_AUTOCONFIG # auto-configuration of RAID components 193# Options to enable various other RAIDframe RAID types. 194#options RF_INCLUDE_EVENODD=1 195#options RF_INCLUDE_RAID5_RS=1 196#options RF_INCLUDE_PARITYLOGGING=1 197#options RF_INCLUDE_CHAINDECLUSTER=1 198#options RF_INCLUDE_INTERDECLUSTER=1 199#options RF_INCLUDE_PARITY_DECLUSTERING=1 200#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1 201pseudo-device fss # file system snapshot device 202pseudo-device putter # for puffs and pud 203 204pseudo-device md # memory disk device (ramdisk) 205pseudo-device vnd # disk-like interface to files 206pseudo-device dm # device-mapper driver for LVM 207 208# network pseudo-devices 209pseudo-device bpfilter # Berkeley packet filter 210pseudo-device ipfilter # IP filter (firewall) and NAT 211pseudo-device loop # network loopback 212pseudo-device ppp # Point-to-Point Protocol 213pseudo-device pppoe # PPP over Ethernet (RFC 2516) 214pseudo-device sl # Serial Line IP 215pseudo-device tap # virtual Ethernet 216pseudo-device tun # network tunneling over tty 217pseudo-device gre # generic L3 over IP tunnel 218pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933) 219#pseudo-device faith # IPv[46] tcp relay translation i/f 220pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation 221pseudo-device vlan # IEEE 802.1q encapsulation 222pseudo-device bridge # simple inter-network bridging 223#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 224#pseudo-device pf # PF packet filter 225#pseudo-device pflog # PF log if 226#pseudo-device pfsync # PF sync if 227#pseudo-device npf # NPF packet filter 228 229options PAX_MPROTECT=0 # PaX mprotect(2) restrictions 230options PAX_ASLR=0 # PaX Address Space Layout Randomization 231 232# miscellaneous pseudo-devices 233pseudo-device pty # pseudo-terminals 234pseudo-device clockctl # user control of clock subsystem 235pseudo-device ksyms # /dev/ksyms 236 237# a pseudo device needed for Coda # also needs CODA (above) 238pseudo-device vcoda # coda minicache <-> venus comm. 239 240# a pseudo device needed for SMBFS 241pseudo-device nsmb # experimental - SMB requester 242 243# userland interface to drivers, including autoconf and properties retrieval 244pseudo-device drvctl 245 246