1# VKERNEL64 - configuration for a 64-bit virtual kernel 2 3platform vkernel64 # platform architecture (i386, vkernel, etc) 4machine x86_64 5machine_arch x86_64 # cpu architecture (i386, etc) 6ident VKERNEL64 7maxusers 0 8 9makeoptions DEBUG=-g 10 11cpu HAMMER_CPU 12 13options DEBUG_PCTRACK 14 15##options KTR 16##options KTR_SPIN_CONTENTION 17#options DEBUG_CRIT_SECTIONS 18 19options QUOTA 20options DUMMYNET 21options IPFIREWALL #firewall 22options IPFIREWALL_DEFAULT_TO_ACCEPT #allow everything by default 23 24# ALTQ 25options ALTQ #alternate queueing 26options ALTQ_CBQ #class based queueing 27options ALTQ_RED #random early detection 28options ALTQ_RIO #triple red for diffserv (needs RED) 29options ALTQ_HFSC #hierarchical fair service curve 30options ALTQ_PRIQ #priority queue 31options ALTQ_FAIRQ #fair queue 32#options ALTQ_NOPCC #don't use processor cycle counter 33options ALTQ_DEBUG #for debugging 34 35options IPSEC #IP security 36options IPSEC_ESP #IP security (crypto; define w/ IPSEC) 37options IPSEC_DEBUG #debug for IP security 38 39options HAMMER 40options NULLFS #NULL filesystem 41options EXT2FS 42options INET #InterNETworking 43options INET6 #IPv6 communications protocols 44options FFS #Berkeley Fast Filesystem 45#options FFS_ROOT #FFS usable as root device [keep this!] 46options SOFTUPDATES #Enable FFS soft updates support 47options UFS_DIRHASH #Improve performance on big directories 48options MFS #Memory Filesystem 49options TMPFS #Temporary Filesystem 50options MD_ROOT #MD is a potential root device 51options NFS #Network Filesystem 52options NFS_ROOT #NFS usable as root device, NFS required 53options MSDOSFS #MSDOS Filesystem 54options CD9660 #ISO 9660 Filesystem 55options PROCFS #Process filesystem 56options UCONSOLE #Allow users to grab the console 57options KTRACE #ktrace(1) support 58options _KPOSIX_PRIORITY_SCHEDULING 59options ICMP_BANDLIM #Rate limit bad replies 60 61# Debugging for Development 62options DDB 63options DDB_TRACE 64options INVARIANTS 65 66#options CARP 67 68# Pseudo devices - the number indicates how many units to allocate. 69pseudo-device loop # Network loopback 70pseudo-device ether # Ethernet support 71pseudo-device sl 1 # Kernel SLIP 72pseudo-device ppp 1 # Kernel PPP 73pseudo-device tun # Packet tunnel. 74pseudo-device pty # Pseudo-ttys (telnet etc) 75pseudo-device md # Memory "disks" 76pseudo-device vn # File image "disks" 77pseudo-device gif # IPv6 and IPv4 tunneling 78pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) 79 80#pseudo-device carp 81 82# SCSI peripherals 83device scbus # SCSI bus (required) 84device da # Direct Access (disks) 85device sa # Sequential Access (tape etc) 86device cd # CD 87device pass # Passthrough device (direct SCSI access) 88 89# The `bpf' pseudo-device enables the Berkeley Packet Filter. 90# Be aware of the administrative consequences of enabling this! 91pseudo-device bpf #Berkeley packet filter 92 93# VIRTUAL DEVICES 94# 95device vkd 96device vke 97device vcd 98 99device lagg 100