1# Kernel configuration for Calao Syatems QIL-A9G20 development card 2# http://www.calao-systems.com 3# 4# For more information on this file, please read the handbook section on 5# Kernel Configuration Files: 6# 7# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html 8# 9# The handbook is also available locally in /usr/share/doc/handbook 10# if you've installed the doc distribution, otherwise always see the 11# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the 12# latest information. 13# 14# An exhaustive list of options and more detailed explanations of the 15# device lines is also present in the ../../conf/NOTES and NOTES files. 16# If you are in doubt as to the purpose or necessity of a line, check first 17# in NOTES. 18# 19# $FreeBSD$ 20 21#NO_UNIVERSE 22 23ident QILA9G20 24 25include "std.arm" 26include "../at91/std.qila9g20" 27 28#To statically compile in device wiring instead of /boot/device.hints 29hints "QILA9G20.hints" 30makeoptions MODULES_OVERRIDE="" 31 32makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols 33 34options SCHED_4BSD # 4BSD scheduler 35options INET # InterNETworking 36#options INET6 # IPv6 communications protocols 37options FFS # Berkeley Fast Filesystem 38#options SOFTUPDATES # Enable FFS soft updates support 39#options UFS_ACL # Support for access control lists 40#options UFS_DIRHASH # Improve performance on big directories 41#options MD_ROOT # MD is a potential root device 42#options MD_ROOT_SIZE=4096 # 4MB ram disk 43options NFSCL # Network Filesystem Client 44#options NFSD # Network Filesystem Server 45#options NFSLOCKD # Network Lock Manager 46#options NFS_ROOT # NFS usable as /, requires NFSCL 47options TMPFS # Efficient memory filesystem 48#options MSDOSFS # MSDOS Filesystem 49#options CD9660 # ISO 9660 Filesystem 50#options PROCFS # Process filesystem (requires PSEUDOFS) 51#options PSEUDOFS # Pseudo-filesystem framework 52options GEOM_PART_BSD # BSD partition scheme 53options GEOM_PART_MBR # MBR partition scheme 54#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI 55#options KTRACE # ktrace(1) support 56options SYSVSHM # SYSV-style shared memory 57options SYSVMSG # SYSV-style message queues 58options SYSVSEM # SYSV-style semaphores 59options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions 60 61# Debugging for use in -current 62options KDB # Enable kernel debugger support 63options DDB # Enable the kernel debugger 64#options INVARIANTS # Enable calls of extra sanity checking 65#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS 66#options WITNESS # Enable checks to detect deadlocks and cycles 67#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed 68#options DIAGNOSTIC 69 70# NFS root from boopt/dhcp 71#options BOOTP 72#options BOOTP_NFSROOT 73#options BOOTP_COMPAT 74#options BOOTP_NFSV3 75#options BOOTP_WIRED_TO=ate0 76 77# alternatively, boot from a MMC/SD memory card 78options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\" 79 80# kernel/memory size reduction 81options MUTEX_NOINLINE 82options NO_FFS_SNAPSHOT 83options NO_SWAPPING 84options RWLOCK_NOINLINE 85 86# The `bpf' device enables the Berkeley Packet Filter. 87# Be aware of the administrative consequences of enabling this! 88# Note that 'bpf' is required for DHCP. 89device bpf # Berkeley packet filter 90 91# Ethernet 92device mii # Minimal MII support 93device ate # Atmel AT91 Ethernet driver 94options AT91_ATE_USE_RMII 95 96# I2C 97device at91_twi # Atmel AT91 Two-wire Interface 98device iic # I2C generic I/O device driver 99device iicbus # I2C bus system 100device icee 101 102# NOTE: SPI DataFlash and mci/mmc/mmcsd have hardware 103# confilict on this card. Use one or the other. 104# see board_sam9g20ek.c 105 106# MMC/SD 107device at91_mci # Atmel AT91 Multimedia Card Interface 108options AT91_MCI_HAS_4WIRE 109device mmc # MMC/SD bus 110device mmcsd # MMC/SD memory card 111 112# DataFlash 113#device at91_spi # Atmel AT91 Serial Peripheral Interface 114#device spibus # SPI bus 115#device at45d # Atmel AT45D 116 117# Pseudo devices. 118device loop # Network loopback 119device random # Entropy device 120device ether # Ethernet support 121device md # Memory "disks" 122 123# SCSI peripherals 124device scbus # SCSI bus (required for ATA/SCSI) 125device da # Direct Access (disks) 126device cd # CD 127device pass # Passthrough device (direct ATA/SCSI access) 128 129# Serial (COM) ports 130device uart # Multi-uart driver 131options ALT_BREAK_TO_DEBUGGER 132 133# USB support 134device ohci # OHCI USB interface 135device usb # USB Bus (required) 136device umass # Disks/Mass storage - Requires scbus and da 137device uhid # "Human Interface Devices" 138#device ulpt # Printer 139#device udbp # USB Double Bulk Pipe devices 140 141# USB Ethernet, requires miibus 142device miibus 143#device aue # ADMtek USB Ethernet 144#device axe # ASIX Electronics USB Ethernet 145#device cdce # Generic USB over Ethernet 146#device cue # CATC USB Ethernet 147#device kue # Kawasaki LSI USB Ethernet 148#device rue # RealTek RTL8150 USB Ethernet 149device udav # Davicom DM9601E USB 150 151# USB Wireless 152#device rum # Ralink Technology RT2501USB wireless NICs 153#device uath # Atheros AR5523 wireless NICs 154#device ural # Ralink Technology RT2500USB wireless NICs 155#device zyd # ZyDAS zd1211/zd1211b wireless NICs 156 157# Wireless NIC cards 158#device wlan # 802.11 support 159#device wlan_wep # 802.11 WEP support 160#device wlan_ccmp # 802.11 CCMP support 161#device wlan_tkip # 802.11 TKIP support 162#device wlan_amrr # AMRR transmit rate control algorithm 163 164# watchdog 165device at91_wdt # Atmel AT91 Watchdog Timer 166