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