Make all the comments '# ' and align to same column. This fixes the
rampently incosnsitent usage which made cut and paste from one file to another look ugly.
This commit is contained in:
parent
cf599562fa
commit
2299abfac5
@ -9,32 +9,32 @@ include "../tegra/std.tegra2"
|
||||
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
#options SCHED_ULE #ULE scheduler
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options NFSCL #Network Filesystem Client
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
#options SCHED_ULE # ULE scheduler
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options NFSCL # Network Filesystem Client
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_NFSV3
|
||||
#options BOOTP_WIRED_TO=mge0
|
||||
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT
|
||||
options ROOTDEVNAME=\"ufs:/dev/da0p1\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -48,8 +48,8 @@ options VERBOSE_SYSINIT
|
||||
options DDB
|
||||
options GDB
|
||||
options DIAGNOSTIC
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options KDB_TRACE
|
||||
#options KTR
|
||||
@ -57,8 +57,8 @@ options KDB_TRACE
|
||||
#options KTR_ENTRIES=16384
|
||||
#options KTR_MASK=(KTR_SPARE2)
|
||||
#options KTR_COMPILE=KTR_ALL
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
options MUTEX_DEBUG
|
||||
|
||||
|
@ -10,32 +10,32 @@ include "../mv/armadaxp/std.mv78x60"
|
||||
options SOC_MV_ARMADAXP
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
#options SCHED_ULE #ULE scheduler
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
#options SCHED_ULE # ULE scheduler
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
options BOOTP_WIRED_TO=mge0
|
||||
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT
|
||||
options ROOTDEVNAME=\"ufs:/dev/da0p1\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -50,8 +50,8 @@ options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
options GDB
|
||||
#options DIAGNOSTIC
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options KDB_TRACE
|
||||
#options KTR
|
||||
@ -59,8 +59,8 @@ options KDB_TRACE
|
||||
#options KTR_ENTRIES=16384
|
||||
#options KTR_MASK=(KTR_SPARE2)
|
||||
#options KTR_COMPILE=KTR_ALL
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
# Pseudo devices
|
||||
|
@ -24,55 +24,55 @@ include "../samsung/exynos/std.exynos5"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options HZ=100 ##
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options HZ=100
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
|
||||
# Uncomment this for NFS root
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
|
@ -48,13 +48,13 @@ options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Provides labelization
|
||||
options COMPAT_FREEBSD5 # Compatible with FreeBSD5
|
||||
@ -109,73 +109,73 @@ options GDB # Support remote GDB.
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Ethernet
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet friver
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet friver
|
||||
|
||||
# I2C
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device pcf8563 # NXP PCF8563 clock/calendar
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device pcf8563 # NXP PCF8563 clock/calendar
|
||||
|
||||
# MMC/SD
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
options AT91_MCI_HAS_4WIRE
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
|
||||
# DataFlash
|
||||
device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
device spibus # SPI bus
|
||||
device at45d # Atmel AT45D
|
||||
device geom_map # GEOM partition mapping
|
||||
device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
device spibus # SPI bus
|
||||
device at45d # Atmel AT45D
|
||||
device geom_map # GEOM partition mapping
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
device vlan # 802.1Q VLAN support
|
||||
device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
device gif # IPv6 and IPv4 tunneling
|
||||
device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
device vlan # 802.1Q VLAN support
|
||||
device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
device gif # IPv6 and IPv4 tunneling
|
||||
device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device ch # SCSI media changers
|
||||
device da # Direct Access (disks)
|
||||
device sa # Sequential Access (tape etc)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device ch # SCSI media changers
|
||||
device da # Direct Access (disks)
|
||||
device sa # Sequential Access (tape etc)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
# USB support
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
|
||||
# USB device (gadget) support
|
||||
device at91_dci # Atmel's usb device
|
||||
device usfs # emulate a flash
|
||||
device cdce # emulate an ethernet
|
||||
device usb_template # Control of the gadget
|
||||
device at91_dci # Atmel's usb device
|
||||
device usfs # emulate a flash
|
||||
device cdce # emulate an ethernet
|
||||
device usb_template # Control of the gadget
|
||||
|
||||
# watchdog
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
|
||||
device at91_rtc
|
||||
device at91_ssc
|
||||
#device at91_tc # missing?
|
||||
#device at91_tc # missing?
|
||||
|
||||
# NAND Flash - Reference design has Samsung 256MB but others possible
|
||||
device nand # NAND interface on CS3
|
||||
|
@ -25,10 +25,10 @@ include "../xscale/ixp425/std.ixp425"
|
||||
include "../xscale/ixp425/std.avila"
|
||||
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
#To statically compile in device wiring instead of /boot/device.hints
|
||||
hints "AVILA.hints" #Default places to look for devices.
|
||||
hints "AVILA.hints" # Default places to look for devices.
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
#options HZ=1000
|
||||
options HZ=100
|
||||
@ -37,23 +37,23 @@ options DEVICE_POLLING
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
#options GDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -73,34 +73,34 @@ device hwpmc
|
||||
device pci
|
||||
device uart
|
||||
|
||||
device ixpwdog # watchdog timer
|
||||
device cfi # flash support
|
||||
device cfid # flash disk support
|
||||
device geom_redboot # redboot fis parser
|
||||
device ixpwdog # watchdog timer
|
||||
device cfi # flash support
|
||||
device cfid # flash disk support
|
||||
device geom_redboot # redboot fis parser
|
||||
|
||||
# I2C Bus
|
||||
device iicbus
|
||||
device iicbb
|
||||
device iic
|
||||
|
||||
device ixpiic # I2C bus glue
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
device ad7418 # AD7418 on I2C bus
|
||||
device ixpiic # I2C bus glue
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
device ad7418 # AD7418 on I2C bus
|
||||
|
||||
device avila_led
|
||||
|
||||
device gpio
|
||||
device gpioled
|
||||
device avila_gpio # GPIO pins on J8
|
||||
device avila_gpio # GPIO pins on J8
|
||||
|
||||
device ata
|
||||
device avila_ata # Gateworks CF/IDE support
|
||||
device avila_ata # Gateworks CF/IDE support
|
||||
|
||||
device npe # Network Processing Engine
|
||||
device npe # Network Processing Engine
|
||||
device npe_fw
|
||||
device firmware
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # NB: required by npe
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # NB: required by npe
|
||||
device ether
|
||||
device bpf
|
||||
|
||||
@ -108,24 +108,24 @@ device loop
|
||||
device if_bridge
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan # 802.11 support
|
||||
options IEEE80211_DEBUG
|
||||
options IEEE80211_SUPPORT_TDMA
|
||||
options IEEE80211_SUPPORT_MESH
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_xauth
|
||||
|
||||
device ath # Atheros NICs
|
||||
device ath_pci # Atheros pci/cardbus glue
|
||||
device ath # Atheros NICs
|
||||
device ath_pci # Atheros pci/cardbus glue
|
||||
options ATH_DEBUG
|
||||
options ATH_DIAGAPI
|
||||
#options ATH_TX99_DIAG
|
||||
device ath_rate_sample # SampleRate tx rate control for ath
|
||||
device ath_rate_sample # SampleRate tx rate control for ath
|
||||
|
||||
#options AH_DEBUG
|
||||
#options AH_ASSERT
|
||||
@ -149,9 +149,9 @@ device usb
|
||||
device ohci
|
||||
device ehci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
#device ural
|
||||
#device zyd
|
||||
|
@ -27,42 +27,42 @@ include "../ti/am335x/std.beaglebone"
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
options HZ=100
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
@ -71,7 +71,7 @@ options NFSCL
|
||||
options NFSLOCKD
|
||||
|
||||
# Uncomment this for NFS root
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
@ -129,7 +129,7 @@ device miibus
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
|
||||
# Device mode support and USFS template
|
||||
device usb_template # Control of the gadget
|
||||
device usb_template # Control of the gadget
|
||||
device usfs
|
||||
|
||||
# Flattened Device Tree
|
||||
|
@ -27,42 +27,42 @@ include "../at91/std.bwct"
|
||||
hints "BWCT.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
options BREAK_TO_DEBUGGER
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
#options ROOTDEVNAME=\"ufs:md0\"
|
||||
#options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
#options NO_SYSCTL_DESCR
|
||||
options MUTEX_NOINLINE
|
||||
@ -79,11 +79,11 @@ device mii
|
||||
device rlswitch
|
||||
|
||||
# Debugging for use in -current
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device md
|
||||
@ -96,17 +96,17 @@ device mmcsd # mmc/sd flash cards
|
||||
# iic
|
||||
device iic
|
||||
device iicbus
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
#device iicsmb # smb over i2c bridge
|
||||
#device smbus # Bus support, required for smb below.
|
||||
#device smb
|
||||
# SPI bus
|
||||
device spibus
|
||||
#device at45d # at45db642 and maybe others
|
||||
#device at45d # at45db642 and maybe others
|
||||
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
#options USB_DEBUG
|
||||
#device ohci
|
||||
#device usb
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
|
@ -27,7 +27,7 @@ options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
#To statically compile in device wiring instead of /boot/device.hints
|
||||
hints "CAMBRIA.hints" # Default places to look for devices.
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
#options HZ=1000
|
||||
@ -37,24 +37,24 @@ options DEVICE_POLLING
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
#options GDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
#options PREEMPTION
|
||||
options INET #InterNETworking
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options INET # InterNETworking
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -73,37 +73,37 @@ options VERBOSE_INIT_ARM
|
||||
device pci
|
||||
device uart
|
||||
|
||||
device ixpwdog # watchdog timer
|
||||
device ixpwdog # watchdog timer
|
||||
|
||||
options IXP4XX_FLASH_SIZE=0x02000000 # stock 2358 comes w/ 32M
|
||||
device cfi # flash support
|
||||
device cfid # flash disk support
|
||||
device geom_redboot # redboot fis parser
|
||||
options IXP4XX_FLASH_SIZE=0x02000000 # stock 2358 comes w/ 32M
|
||||
device cfi # flash support
|
||||
device cfid # flash disk support
|
||||
device geom_redboot # redboot fis parser
|
||||
|
||||
# I2C Bus
|
||||
device iicbus
|
||||
device iicbb
|
||||
device iic
|
||||
|
||||
device ixpiic # I2C bus glue
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
device ad7418 # AD7418 on I2C bus
|
||||
device ixpiic # I2C bus glue
|
||||
device ds1672 # DS1672 on I2C bus
|
||||
device ad7418 # AD7418 on I2C bus
|
||||
|
||||
device cambria_fled # Font Panel LED on I2C bus
|
||||
device cambria_led # 8-LED latch
|
||||
device cambria_fled # Font Panel LED on I2C bus
|
||||
device cambria_led # 8-LED latch
|
||||
|
||||
device gpio
|
||||
device gpioled
|
||||
device cambria_gpio # GPIO pins on J11
|
||||
device cambria_gpio # GPIO pins on J11
|
||||
|
||||
device ata
|
||||
device avila_ata # Gateworks CF/IDE support
|
||||
device avila_ata # Gateworks CF/IDE support
|
||||
|
||||
device npe # Network Processing Engine
|
||||
device npe # Network Processing Engine
|
||||
device npe_fw
|
||||
device firmware
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # NB: required by npe
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # NB: required by npe
|
||||
device ether
|
||||
device bpf
|
||||
|
||||
@ -111,26 +111,26 @@ device loop
|
||||
device if_bridge
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan # 802.11 support
|
||||
options IEEE80211_DEBUG
|
||||
options IEEE80211_SUPPORT_TDMA
|
||||
options IEEE80211_SUPPORT_MESH
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_xauth
|
||||
|
||||
device ath # Atheros NICs
|
||||
device ath_pci # Atheros pci/cardbus glue
|
||||
device ath # Atheros NICs
|
||||
device ath_pci # Atheros pci/cardbus glue
|
||||
options ATH_DEBUG
|
||||
options ATH_DIAGAPI
|
||||
options ATH_ENABLE_DFS
|
||||
options ATH_ENABLE_11N
|
||||
#options ATH_TX99_DIAG
|
||||
device ath_rate_sample # SampleRate tx rate control for ath
|
||||
device ath_rate_sample # SampleRate tx rate control for ath
|
||||
|
||||
options AH_DEBUG
|
||||
options AH_PRIVATE_DIAG
|
||||
@ -139,13 +139,13 @@ device ath_hal
|
||||
|
||||
# NB: 2 USB 2.0 ports standard
|
||||
device usb
|
||||
options USB_EHCI_BIG_ENDIAN_DESC # handle big-endian byte order
|
||||
options USB_EHCI_BIG_ENDIAN_DESC # handle big-endian byte order
|
||||
#options USB_DEBUG
|
||||
device ehci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
#device ural
|
||||
#device zyd
|
||||
|
@ -22,7 +22,7 @@ ident CNS11XXNAS
|
||||
|
||||
#options PHYSADDR=0x10000000
|
||||
#options KERNPHYSADDR=0x10200000
|
||||
#options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
#options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
#options FLASHADDR=0x50000000
|
||||
#options LOADERRAMADDR=0x00000000
|
||||
|
||||
@ -30,61 +30,61 @@ include "../econa/std.econa"
|
||||
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
options DEVICE_POLLING
|
||||
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
#options GDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
##options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
##options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
|
||||
#options COMPAT_FREEBSD5
|
||||
#options COMPAT_FREEBSD6
|
||||
#options COMPAT_FREEBSD7
|
||||
#options COMPAT_FREEBSD7n
|
||||
|
||||
|
||||
options SCHED_ULE #ULE scheduler
|
||||
#options SCHED_4BSD #4BSD scheduler
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options SCHED_ULE # ULE scheduler
|
||||
#options SCHED_4BSD # 4BSD scheduler
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
#options GEOM_PART_EBR
|
||||
#options GEOM_PART_EBR_COMPAT
|
||||
options GEOM_LABEL # Provides labelization
|
||||
|
||||
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE #Mutex inlines are space hogs
|
||||
options RWLOCK_NOINLINE #rwlock inlines are space hogs
|
||||
options SX_NOINLINE #sx inliens are space hogs
|
||||
options MUTEX_NOINLINE # Mutex inlines are space hogs
|
||||
options RWLOCK_NOINLINE # rwlock inlines are space hogs
|
||||
options SX_NOINLINE # sx inliens are space hogs
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_NFSV3
|
||||
@ -96,14 +96,14 @@ device uart
|
||||
|
||||
|
||||
device firmware
|
||||
device mii # Minimal mii routines
|
||||
device mii # Minimal mii routines
|
||||
device ether
|
||||
device bpf
|
||||
|
||||
device loop
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
|
||||
device usb
|
||||
@ -111,12 +111,12 @@ device usb
|
||||
device ohci
|
||||
device ehci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass
|
||||
device cfi
|
||||
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
device geom_label
|
||||
device geom_journal
|
||||
|
@ -20,44 +20,44 @@
|
||||
ident CRB
|
||||
|
||||
options PHYSADDR=0x00000000
|
||||
options KERNPHYSADDR=0x00200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
options KERNPHYSADDR=0x00200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
|
||||
options COUNTS_PER_SEC=400000000
|
||||
include "../xscale/i8134x/std.crb"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
options HZ=100
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options DEVICE_POLLING
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSD #New Network Filesystem Server
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options INTR_FILTER
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
@ -75,12 +75,12 @@ device uart
|
||||
device pci
|
||||
|
||||
device ata
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
device "7seg"
|
||||
|
||||
@ -93,12 +93,12 @@ device "7seg"
|
||||
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# To make an SMP kernel, the next two are needed
|
||||
@ -106,7 +106,7 @@ options DDB #Enable the kernel debugger
|
||||
#options APIC_IO # Symmetric (APIC) I/O
|
||||
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
device iopwdog
|
||||
# Floppy drives
|
||||
|
@ -26,51 +26,51 @@ makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
options HZ=100
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
#options NFSCL
|
||||
#options NFSSERVER #Network Filesystem Server
|
||||
#options NFSCLIENT #Network Filesystem Client
|
||||
#options NFSSERVER # Network Filesystem Server
|
||||
#options NFSCLIENT # Network Filesystem Client
|
||||
|
||||
# Uncomment this for NFS root
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
@ -85,9 +85,9 @@ options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options ROOTDEVNAME=\"ufs:/dev/da0s2\"
|
||||
|
||||
# ATA controllers
|
||||
#device ahci # AHCI-compatible SATA controllers
|
||||
#device ata # Legacy ATA/SATA controllers
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
#device ahci # AHCI-compatible SATA controllers
|
||||
#device ata # Legacy ATA/SATA controllers
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
# Console and misc
|
||||
device uart
|
||||
|
@ -26,51 +26,51 @@ makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
options HZ=100
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
#options NFSCL
|
||||
#options NFSSERVER #Network Filesystem Server
|
||||
#options NFSCLIENT #Network Filesystem Client
|
||||
#options NFSSERVER # Network Filesystem Server
|
||||
#options NFSCLIENT # Network Filesystem Client
|
||||
|
||||
# Uncomment this for NFS root
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
@ -85,9 +85,9 @@ options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options ROOTDEVNAME=\"ufs:/dev/da0s2\"
|
||||
|
||||
# ATA controllers
|
||||
#device ahci # AHCI-compatible SATA controllers
|
||||
#device ata # Legacy ATA/SATA controllers
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
#device ahci # AHCI-compatible SATA controllers
|
||||
#device ata # Legacy ATA/SATA controllers
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
# Console and misc
|
||||
device uart
|
||||
|
@ -10,20 +10,20 @@ include "../mv/discovery/std.db78xxx"
|
||||
options SOC_MV_DISCOVERY
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NANDFS #NAND Filesystem
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NANDFS # NAND Filesystem
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -31,10 +31,10 @@ options BOOTP_WIRED_TO=mge0
|
||||
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0a\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -43,13 +43,13 @@ options NO_SWAPPING
|
||||
# Debugging
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options DIAGNOSTIC
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
device pci
|
||||
@ -70,7 +70,7 @@ device e1000phy
|
||||
device bpf
|
||||
|
||||
# USB
|
||||
options USB_DEBUG # enable debug msgs
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device usb
|
||||
device ehci
|
||||
device umass
|
||||
|
@ -10,19 +10,19 @@ include "../mv/orion/std.db88f5xxx"
|
||||
options SOC_MV_ORION
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -30,10 +30,10 @@ options BOOTP_WIRED_TO=mge0
|
||||
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0a\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -42,13 +42,13 @@ options NO_SWAPPING
|
||||
# Debugging
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options DIAGNOSTIC
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
device pci
|
||||
@ -76,7 +76,7 @@ device iicbus
|
||||
device ds133x
|
||||
|
||||
# USB
|
||||
options USB_DEBUG # enable debug msgs
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device usb
|
||||
device ehci
|
||||
device umass
|
||||
|
@ -10,20 +10,20 @@ include "../mv/kirkwood/std.db88f6xxx"
|
||||
options SOC_MV_KIRKWOOD
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NANDFS #NAND Filesystem
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NANDFS # NAND Filesystem
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -31,10 +31,10 @@ options BOOTP_WIRED_TO=mge0
|
||||
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0a\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -43,13 +43,13 @@ options NO_SWAPPING
|
||||
# Debugging
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options DIAGNOSTIC
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
device pci
|
||||
@ -74,7 +74,7 @@ device crypto
|
||||
device cryptodev
|
||||
|
||||
# USB
|
||||
options USB_DEBUG # enable debug msgs
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device usb
|
||||
device ehci
|
||||
device umass
|
||||
|
@ -41,13 +41,13 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Provides labelization
|
||||
#options COMPAT_FREEBSD5 # Compatible with FreeBSD5
|
||||
@ -94,33 +94,33 @@ options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# Ethernet
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
device miibus # Standard mii bus
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
device miibus # Standard mii bus
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
device ata
|
||||
device atapci # Only for helper functions
|
||||
device atapci # Only for helper functions
|
||||
device imxata
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device iomux # IO Multiplexor
|
||||
device iomux # IO Multiplexor
|
||||
|
||||
device gpio
|
||||
device gpioled
|
||||
@ -130,44 +130,44 @@ device iic
|
||||
device iicbus
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
options USB_HOST_ALIGN=64 # Align usb buffers to cache line size.
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
device ums
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
#device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
|
||||
# Watchdog timer.
|
||||
# WARNING: can't be disabled!!!
|
||||
device imxwdt # Watchdog
|
||||
device imxwdt # Watchdog
|
||||
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
# Flattened Device Tree
|
||||
options FDT
|
||||
@ -178,5 +178,5 @@ makeoptions FDT_DTS_FILE=digi-ccwmx53.dts
|
||||
# Uncomment following lines for framebuffer/syscons support
|
||||
#device sc
|
||||
#device kbdmux
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#makeoptions SC_DFLT_FONT=cp437
|
||||
|
@ -28,21 +28,21 @@ makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
options SOC_MV_KIRKWOOD
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options SOFTUPDATES
|
||||
options CD9660 #ISO 9660 filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MS DOS File System (FAT, FAT32)
|
||||
options NULLFS #NULL filesystem
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options CD9660 # ISO 9660 filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MS DOS File System (FAT, FAT32)
|
||||
options NULLFS # NULL filesystem
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_ELI # Disk encryption.
|
||||
options GEOM_LABEL # Providers labelization.
|
||||
options GEOM_PART_GPT # GPT partitioning
|
||||
@ -53,18 +53,18 @@ options FDT
|
||||
options FDT_DTB_STATIC
|
||||
|
||||
# Misc pseudo devices
|
||||
device bpf #Required for DHCP
|
||||
device faith #IPv6-to-IPv4 relaying (translation)
|
||||
device firmware #firmware(9) required for USB wlan
|
||||
device gif #IPv6 and IPv4 tunneling
|
||||
device loop #Network loopback
|
||||
device md #Memory/malloc disk
|
||||
device pty #BSD-style compatibility pseudo ttys
|
||||
device random #Entropy device
|
||||
device tun #Packet tunnel.
|
||||
device ether #Required for all ethernet devices
|
||||
device vlan #802.1Q VLAN support
|
||||
device wlan #802.11 WLAN support
|
||||
device bpf # Required for DHCP
|
||||
device faith # IPv6-to-IPv4 relaying (translation)
|
||||
device firmware # firmware(9) required for USB wlan
|
||||
device gif # IPv6 and IPv4 tunneling
|
||||
device loop # Network loopback
|
||||
device md # Memory/malloc disk
|
||||
device pty # BSD-style compatibility pseudo ttys
|
||||
device random # Entropy device
|
||||
device tun # Packet tunnel.
|
||||
device ether # Required for all ethernet devices
|
||||
device vlan # 802.1Q VLAN support
|
||||
device wlan # 802.11 WLAN support
|
||||
|
||||
# cam support for umass and ahci
|
||||
device scbus
|
||||
@ -111,7 +111,7 @@ device cryptodev
|
||||
device enc
|
||||
options IPSEC
|
||||
options IPSEC_NAT_T
|
||||
options TCP_SIGNATURE #include support for RFC 2385
|
||||
options TCP_SIGNATURE # include support for RFC 2385
|
||||
|
||||
# IPFW
|
||||
options IPFIREWALL
|
||||
@ -129,33 +129,33 @@ device pflog
|
||||
device pfsync
|
||||
|
||||
# ALTQ, required for PF
|
||||
options ALTQ # Basic ALTQ support
|
||||
options ALTQ_CBQ # Class Based Queueing
|
||||
options ALTQ_RED # Random Early Detection
|
||||
options ALTQ_RIO # RED In/Out
|
||||
options ALTQ_HFSC # Hierarchical Packet Scheduler
|
||||
options ALTQ_CDNR # Traffic conditioner
|
||||
options ALTQ_PRIQ # Priority Queueing
|
||||
options ALTQ_NOPCC # Required if the TSC is unusable
|
||||
options ALTQ # Basic ALTQ support
|
||||
options ALTQ_CBQ # Class Based Queueing
|
||||
options ALTQ_RED # Random Early Detection
|
||||
options ALTQ_RIO # RED In/Out
|
||||
options ALTQ_HFSC # Hierarchical Packet Scheduler
|
||||
options ALTQ_CDNR # Traffic conditioner
|
||||
options ALTQ_PRIQ # Priority Queueing
|
||||
options ALTQ_NOPCC # Required if the TSC is unusable
|
||||
#options ALTQ_DEBUG
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
options KDB
|
||||
options DIAGNOSTIC
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
# Enable these options for nfs root configured via BOOTP.
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_NFSV3
|
||||
|
@ -31,21 +31,21 @@ makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
options SOC_MV_KIRKWOOD
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options SOFTUPDATES
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options CD9660 #ISO 9660 filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options MSDOSFS #MS DOS File System (FAT, FAT32)
|
||||
options NULLFS #NULL filesystem
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options CD9660 # ISO 9660 filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options MSDOSFS # MS DOS File System (FAT, FAT32)
|
||||
options NULLFS # NULL filesystem
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_ELI # Disk encryption.
|
||||
options GEOM_LABEL # Providers labelization.
|
||||
options GEOM_PART_GPT # GPT partitioning
|
||||
@ -56,18 +56,18 @@ options FDT
|
||||
options FDT_DTB_STATIC
|
||||
|
||||
# Misc pseudo devices
|
||||
device bpf #Required for DHCP
|
||||
device faith #IPv6-to-IPv4 relaying (translation)
|
||||
device firmware #firmware(9) required for USB wlan
|
||||
device gif #IPv6 and IPv4 tunneling
|
||||
device loop #Network loopback
|
||||
device md #Memory/malloc disk
|
||||
device pty #BSD-style compatibility pseudo ttys
|
||||
device random #Entropy device
|
||||
device tun #Packet tunnel.
|
||||
device ether #Required for all ethernet devices
|
||||
device vlan #802.1Q VLAN support
|
||||
device wlan #802.11 WLAN support
|
||||
device bpf # Required for DHCP
|
||||
device faith # IPv6-to-IPv4 relaying (translation)
|
||||
device firmware # firmware(9) required for USB wlan
|
||||
device gif # IPv6 and IPv4 tunneling
|
||||
device loop # Network loopback
|
||||
device md # Memory/malloc disk
|
||||
device pty # BSD-style compatibility pseudo ttys
|
||||
device random # Entropy device
|
||||
device tun # Packet tunnel.
|
||||
device ether # Required for all ethernet devices
|
||||
device vlan # 802.1Q VLAN support
|
||||
device wlan # 802.11 WLAN support
|
||||
|
||||
# cam support for umass and ahci
|
||||
device scbus
|
||||
@ -119,7 +119,7 @@ device cryptodev
|
||||
device enc
|
||||
options IPSEC
|
||||
options IPSEC_NAT_T
|
||||
options TCP_SIGNATURE #include support for RFC 2385
|
||||
options TCP_SIGNATURE # include support for RFC 2385
|
||||
|
||||
# IPFW
|
||||
options IPFIREWALL
|
||||
@ -137,33 +137,33 @@ device pflog
|
||||
device pfsync
|
||||
|
||||
# ALTQ, required for PF
|
||||
options ALTQ # Basic ALTQ support
|
||||
options ALTQ_CBQ # Class Based Queueing
|
||||
options ALTQ_RED # Random Early Detection
|
||||
options ALTQ_RIO # RED In/Out
|
||||
options ALTQ_HFSC # Hierarchical Packet Scheduler
|
||||
options ALTQ_CDNR # Traffic conditioner
|
||||
options ALTQ_PRIQ # Priority Queueing
|
||||
options ALTQ_NOPCC # Required if the TSC is unusable
|
||||
options ALTQ # Basic ALTQ support
|
||||
options ALTQ_CBQ # Class Based Queueing
|
||||
options ALTQ_RED # Random Early Detection
|
||||
options ALTQ_RIO # RED In/Out
|
||||
options ALTQ_HFSC # Hierarchical Packet Scheduler
|
||||
options ALTQ_CDNR # Traffic conditioner
|
||||
options ALTQ_PRIQ # Priority Queueing
|
||||
options ALTQ_NOPCC # Required if the TSC is unusable
|
||||
#options ALTQ_DEBUG
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
options KDB
|
||||
options DIAGNOSTIC
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
# Enable these options for nfs root configured via BOOTP.
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_NFSV3
|
||||
|
@ -10,19 +10,19 @@ hints "EA3250.hints"
|
||||
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
@ -31,10 +31,10 @@ options BOOTP_WIRED_TO=lpe0
|
||||
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0a\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -43,13 +43,13 @@ options NO_SWAPPING
|
||||
# Debugging
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
options DDB
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
options DIAGNOSTIC
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options KDB
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options WITNESS_KDB
|
||||
|
||||
# Pseudo devices
|
||||
|
@ -20,40 +20,40 @@ include "../at91/std.eb9200"
|
||||
hints "EB9200.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0s1a\"
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSD #New Network Filesystem Server
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
#options NO_SYSCTL_DESCR
|
||||
# Disable the inlining of mutex, rwlock and sx locks. These eat up a lot
|
||||
# of space.
|
||||
@ -74,11 +74,11 @@ device at91_cfata
|
||||
device ata
|
||||
|
||||
# Debugging for use in -current
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
|
||||
device md
|
||||
device at91_twi # TWI: Two Wire Interface
|
||||
@ -95,18 +95,18 @@ device icee
|
||||
|
||||
device bpf
|
||||
# USB support
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB device (gadget) support
|
||||
#device at91_dci # Atmel's usb device
|
||||
#device usfs # emulate a flash
|
||||
#device cdce # emulate an ethernet
|
||||
#device usb_template # Control of the gadget
|
||||
#device at91_dci # Atmel's usb device
|
||||
#device usfs # emulate a flash
|
||||
#device cdce # emulate an ethernet
|
||||
#device usb_template # Control of the gadget
|
||||
|
@ -41,13 +41,13 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Provides labelization
|
||||
#options COMPAT_FREEBSD5 # Compatible with FreeBSD5
|
||||
@ -94,29 +94,29 @@ options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
device ata
|
||||
device atapci # Only for helper functions
|
||||
device atapci # Only for helper functions
|
||||
device imxata
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device iomux # IO Multiplexor
|
||||
device iomux # IO Multiplexor
|
||||
|
||||
device gpio
|
||||
device gpioled
|
||||
@ -126,43 +126,43 @@ device iic
|
||||
device iicbus
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
options USB_HOST_ALIGN=64 # Align usb buffers to cache line size.
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
device u3g
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
|
||||
# Watchdog timer.
|
||||
# WARNING: can't be disabled!!!
|
||||
device imxwdt # Watchdog
|
||||
device imxwdt # Watchdog
|
||||
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
# Flattened Device Tree
|
||||
options FDT
|
||||
@ -173,8 +173,7 @@ makeoptions FDT_DTS_FILE=efikamx.dts
|
||||
# Uncomment following lines for framebuffer/syscons support
|
||||
device sc
|
||||
device kbdmux
|
||||
options SC_DFLT_FONT # compile font in
|
||||
options SC_DFLT_FONT # compile font in
|
||||
makeoptions SC_DFLT_FONT=cp437
|
||||
device ukbd # Allow keyboard like HIDs to control console
|
||||
|
||||
device ukbd # Allow keyboard like HIDs to control console
|
||||
device ums
|
||||
|
@ -21,42 +21,42 @@ ident EP80219
|
||||
|
||||
options PHYSADDR=0xa0000000
|
||||
options KERNPHYSADDR=0xa0200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
|
||||
#options ARM32_NEW_VM_LAYOUT
|
||||
include "../xscale/i80321/std.ep80219"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
options HZ=100
|
||||
#options DEVICE_POLLING
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSD #New Network Filesystem Server
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Providers labelization.
|
||||
|
||||
@ -75,12 +75,12 @@ device uart
|
||||
device pci
|
||||
|
||||
device ata
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
# SCSI Controllers
|
||||
|
||||
@ -89,12 +89,12 @@ device dma # I80321 DMA Controller
|
||||
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# To make an SMP kernel, the next two are needed
|
||||
@ -102,11 +102,11 @@ options DDB #Enable the kernel debugger
|
||||
#options APIC_IO # Symmetric (APIC) I/O
|
||||
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# Floppy drives
|
||||
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
||||
#options VERBOSE_SYSINIT
|
||||
options VERBOSE_INIT_ARM
|
||||
|
||||
|
@ -41,9 +41,9 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
@ -102,60 +102,60 @@ options RWLOCK_NOINLINE
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Ethernet
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet driver
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet driver
|
||||
|
||||
# I2C
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device pcf8563 # NXP PCF8563 clock/calendar
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device pcf8563 # NXP PCF8563 clock/calendar
|
||||
|
||||
# MMC/SD
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
options AT91_MCI_HAS_4WIRE
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
|
||||
# DataFlash
|
||||
device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
device spibus # SPI bus
|
||||
device at45d # Atmel AT45D
|
||||
device geom_map # GEOM partition mapping
|
||||
device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
device spibus # SPI bus
|
||||
device at45d # Atmel AT45D
|
||||
device geom_map # GEOM partition mapping
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# SCSI peripherals
|
||||
#device scbus # SCSI bus (required for ATA/SCSI)
|
||||
#device ch # SCSI media changers
|
||||
#device da # Direct Access (disks)
|
||||
#device sa # Sequential Access (tape etc)
|
||||
#device cd # CD
|
||||
#device pass # Passthrough device (direct ATA/SCSI access)
|
||||
#device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
#device scbus # SCSI bus (required for ATA/SCSI)
|
||||
#device ch # SCSI media changers
|
||||
#device da # Direct Access (disks)
|
||||
#device sa # Sequential Access (tape etc)
|
||||
#device cd # CD
|
||||
#device pass # Passthrough device (direct ATA/SCSI access)
|
||||
#device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
# USB support
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
|
||||
# watchdog
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
|
@ -28,39 +28,39 @@ hints "GUMSTIX.hints"
|
||||
|
||||
options PHYSADDR=0xa0000000
|
||||
options KERNPHYSADDR=0xa0200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
|
||||
include "../xscale/pxa/std.pxa"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
#options DEVICE_POLLING
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
@ -80,13 +80,13 @@ device uart_ns8250
|
||||
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
@ -25,43 +25,43 @@ include "../at91/std.hl200"
|
||||
hints "KB920X.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
#options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP
|
||||
options BOOTP_NFSV3
|
||||
options BOOTP_WIRED_TO=ate0
|
||||
options BOOTP_COMPAT
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
#options NO_SYSCTL_DESCR
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
@ -76,11 +76,11 @@ device mii
|
||||
device lxtphy
|
||||
|
||||
# Debugging for use in -current
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
|
||||
device md
|
||||
device at91_twi # TWI: Two Wire Interface
|
||||
@ -97,46 +97,46 @@ device icee
|
||||
|
||||
device bpf
|
||||
# USB support
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device urio # Diamond Rio 500 MP3 player
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device urio # Diamond Rio 500 MP3 player
|
||||
# USB Serial devices
|
||||
device uark # Technologies ARK3116 based serial adapters
|
||||
device ubsa # Belkin F5U103 and compatible serial adapters
|
||||
#device ubser # not yet converted.
|
||||
device uftdi # For FTDI usb serial adapters
|
||||
device uipaq # Some WinCE based devices
|
||||
device uplcom # Prolific PL-2303 serial adapters
|
||||
device uslcom # SI Labs CP2101/CP2102 serial adapters
|
||||
device uvisor # Visor and Palm devices
|
||||
device uvscom # USB serial support for DDI pocket's PHS
|
||||
device uark # Technologies ARK3116 based serial adapters
|
||||
device ubsa # Belkin F5U103 and compatible serial adapters
|
||||
#device ubser # not yet converted.
|
||||
device uftdi # For FTDI usb serial adapters
|
||||
device uipaq # Some WinCE based devices
|
||||
device uplcom # Prolific PL-2303 serial adapters
|
||||
device uslcom # SI Labs CP2101/CP2102 serial adapters
|
||||
device uvisor # Visor and Palm devices
|
||||
device uvscom # USB serial support for DDI pocket's PHS
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
# USB Wireless
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
device uath # Atheros AR5523 wireless NICs
|
||||
device ural # Ralink Technology RT2500USB wireless NICs
|
||||
device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
device uath # Atheros AR5523 wireless NICs
|
||||
device ural # Ralink Technology RT2500USB wireless NICs
|
||||
device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
@ -25,25 +25,25 @@ include "../at91/std.hl201"
|
||||
hints "HL201.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options NANDFS # NAND file system
|
||||
options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
@ -52,19 +52,19 @@ options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -78,52 +78,52 @@ device mii
|
||||
#device lxtphy
|
||||
|
||||
# Debugging for use in -current
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device md
|
||||
device bpf
|
||||
|
||||
# USB support
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
options ROOTDEVNAME=\"ufs:da0s1a\"
|
||||
|
||||
# NAND Flash - my board as 128MB Samsung part, YMMV.
|
||||
device nand # NAND interface on CS3
|
||||
device nand # NAND interface on CS3
|
||||
|
||||
# Coming soon, but not yet
|
||||
#options FDT
|
||||
|
@ -40,13 +40,13 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Provides labelization
|
||||
#options COMPAT_FREEBSD5 # Compatible with FreeBSD5
|
||||
@ -93,33 +93,33 @@ options DDB # Support DDB.
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# Ethernet
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
device miibus # Standard mii bus
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
device miibus # Standard mii bus
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
#device ata
|
||||
#device atapci # Only for helper functions
|
||||
#device atapci # Only for helper functions
|
||||
#device imxata
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
#options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device iomux # IO Multiplexor
|
||||
device iomux # IO Multiplexor
|
||||
|
||||
device gpio
|
||||
device gpioled
|
||||
@ -129,44 +129,44 @@ device iic
|
||||
device iicbus
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
options USB_HOST_ALIGN=64 # Align usb buffers to cache line size.
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
#device uhid # "Human Interface Devices"
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
#device uhid # "Human Interface Devices"
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
#device ums
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
#device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
|
||||
# Watchdog timer.
|
||||
# WARNING: can't be disabled!!!
|
||||
device imxwdt # Watchdog
|
||||
device imxwdt # Watchdog
|
||||
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
# Flattened Device Tree
|
||||
options FDT
|
||||
@ -177,6 +177,6 @@ makeoptions FDT_DTS_FILE=imx53-qsb.dts
|
||||
# Uncomment following lines for framebuffer/syscons support
|
||||
#device sc
|
||||
#device kbdmux
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#makeoptions SC_DFLT_FONT=cp437
|
||||
|
||||
|
@ -36,13 +36,13 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options GEOM_PART_GPT # GUID Partition Tables.
|
||||
options GEOM_LABEL # Provides labelization
|
||||
options KTRACE # ktrace(1) support
|
||||
|
@ -21,42 +21,42 @@ ident IQ31244
|
||||
|
||||
options PHYSADDR=0xa0000000
|
||||
options KERNPHYSADDR=0xa0200000
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
options FLASHADDR=0xf0000000
|
||||
options LOADERRAMADDR=0x00000000
|
||||
|
||||
include "../xscale/i80321/std.iq31244"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
options HZ=100
|
||||
#options DEVICE_POLLING
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSD #New Network Filesystem Server
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
@ -74,12 +74,12 @@ device uart
|
||||
device pci
|
||||
|
||||
device ata
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
options ATA_STATIC_ID # Static device numbering
|
||||
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device cd # CD
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
# SCSI Controllers
|
||||
|
||||
@ -94,12 +94,12 @@ device "iq31244_7seg" # IQ31244 7 seg
|
||||
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# To make an SMP kernel, the next two are needed
|
||||
@ -107,7 +107,7 @@ options DDB #Enable the kernel debugger
|
||||
#options APIC_IO # Symmetric (APIC) I/O
|
||||
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# Floppy drives
|
||||
|
||||
|
@ -26,40 +26,40 @@ include "../at91/std.kb920x"
|
||||
hints "KB920X.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
#options NO_SYSCTL_DESCR
|
||||
# Disable the inlining of mutex, rwlock and sx locks. These eat up a lot
|
||||
# of space.
|
||||
@ -77,11 +77,11 @@ device mii
|
||||
device lxtphy
|
||||
|
||||
# Debugging for use in -current
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
|
||||
device md
|
||||
device at91_twi # TWI: Two Wire Interface
|
||||
@ -98,54 +98,54 @@ device icee
|
||||
|
||||
device bpf
|
||||
# USB support
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device urio # Diamond Rio 500 MP3 player
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device uhid # "Human Interface Devices"
|
||||
device ulpt # Printer
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device urio # Diamond Rio 500 MP3 player
|
||||
# USB Serial devices
|
||||
device uark # Technologies ARK3116 based serial adapters
|
||||
device ubsa # Belkin F5U103 and compatible serial adapters
|
||||
device uftdi # For FTDI usb serial adapters
|
||||
device uipaq # Some WinCE based devices
|
||||
device uplcom # Prolific PL-2303 serial adapters
|
||||
device uslcom # SI Labs CP2101/CP2102 serial adapters
|
||||
device uvisor # Visor and Palm devices
|
||||
device uvscom # USB serial support for DDI pocket's PHS
|
||||
device uark # Technologies ARK3116 based serial adapters
|
||||
device ubsa # Belkin F5U103 and compatible serial adapters
|
||||
device uftdi # For FTDI usb serial adapters
|
||||
device uipaq # Some WinCE based devices
|
||||
device uplcom # Prolific PL-2303 serial adapters
|
||||
device uslcom # SI Labs CP2101/CP2102 serial adapters
|
||||
device uvisor # Visor and Palm devices
|
||||
device uvscom # USB serial support for DDI pocket's PHS
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
device aue # ADMtek USB Ethernet
|
||||
device axe # ASIX Electronics USB Ethernet
|
||||
device cdce # Generic USB over Ethernet
|
||||
device cue # CATC USB Ethernet
|
||||
device kue # Kawasaki LSI USB Ethernet
|
||||
device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
# USB Wireless
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
device uath # Atheros AR5523 wireless NICs
|
||||
device ural # Ralink Technology RT2500USB wireless NICs
|
||||
device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
device rum # Ralink Technology RT2501USB wireless NICs
|
||||
device uath # Atheros AR5523 wireless NICs
|
||||
device ural # Ralink Technology RT2500USB wireless NICs
|
||||
device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
# Wireless NIC cards
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
device wlan # 802.11 support
|
||||
device wlan_wep # 802.11 WEP support
|
||||
device wlan_ccmp # 802.11 CCMP support
|
||||
device wlan_tkip # 802.11 TKIP support
|
||||
device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
# USB device (gadget) support
|
||||
device at91_dci # Atmel's usb device
|
||||
device usfs # emulate a flash
|
||||
device cdce # emulate an ethernet
|
||||
device usb_template # Control of the gadget
|
||||
device at91_dci # Atmel's usb device
|
||||
device usfs # emulate a flash
|
||||
device cdce # emulate an ethernet
|
||||
device usb_template # Control of the gadget
|
||||
|
||||
options IEEE80211_SUPPORT_MESH
|
||||
|
||||
|
@ -21,42 +21,42 @@ ident LN2410SBC
|
||||
|
||||
include "../s3c2xx0/std.ln2410sbc"
|
||||
#To statically compile in device wiring instead of /boot/device.hints
|
||||
#hints "GENERIC.hints" #Default places to look for devices.
|
||||
#hints "GENERIC.hints" # Default places to look for devices.
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
device board_ln2410sbc
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options ROOTDEVNAME=\"ufs:da0s1\"
|
||||
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info
|
||||
#options NFSCL #New Network Filesystem Client
|
||||
#options NFS_ROOT #NFS usable as root device
|
||||
#options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info
|
||||
#options NFSCL # New Network Filesystem Client
|
||||
#options NFS_ROOT # NFS usable as root device
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
@ -73,17 +73,17 @@ device bpf
|
||||
device uart
|
||||
|
||||
# Debugging for use in -current
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
|
||||
device md
|
||||
|
||||
options USB_DEBUG # enable debug msgs
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device usb
|
||||
device ohci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for da)
|
||||
device da # Direct Access (disks)
|
||||
device scbus # SCSI bus (required for da)
|
||||
device da # Direct Access (disks)
|
||||
|
||||
|
@ -22,7 +22,7 @@ ident NSLU
|
||||
# XXX What is defined in std.avila does not exactly match the following:
|
||||
#options PHYSADDR=0x10000000
|
||||
#options KERNPHYSADDR=0x10200000
|
||||
#options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
#options KERNVIRTADDR=0xc0200000 # Used in ldscript.arm
|
||||
#options FLASHADDR=0x50000000
|
||||
#options LOADERRAMADDR=0x00000000
|
||||
|
||||
@ -31,10 +31,10 @@ include "../xscale/ixp425/std.ixp425"
|
||||
include "../xscale/ixp425/std.avila"
|
||||
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
||||
#To statically compile in device wiring instead of /boot/device.hints
|
||||
hints "NSLU.hints" #Default places to look for devices.
|
||||
hints "NSLU.hints" # Default places to look for devices.
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions CONF_CFLAGS=-mcpu=xscale
|
||||
options HZ=100
|
||||
options DEVICE_POLLING
|
||||
@ -42,41 +42,41 @@ options DEVICE_POLLING
|
||||
# Debugging for use in -current
|
||||
options KDB
|
||||
#options GDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options DEADLKRES #Enable the deadlock resolver
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options DEADLKRES # Enable the deadlock resolver
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
options SCHED_ULE #ULE scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSD #New Network Filesystem Server
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options SCHED_ULE # ULE scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE #Mutex inlines are space hogs
|
||||
options RWLOCK_NOINLINE #rwlock inlines are space hogs
|
||||
options SX_NOINLINE #sx inliens are space hogs
|
||||
options MUTEX_NOINLINE # Mutex inlines are space hogs
|
||||
options RWLOCK_NOINLINE # rwlock inlines are space hogs
|
||||
options SX_NOINLINE # sx inliens are space hogs
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -91,27 +91,27 @@ device iicbus
|
||||
device iicbb
|
||||
device iic
|
||||
|
||||
device ixpiic # I2C bus glue
|
||||
device ixpwdog # watchdog timer
|
||||
device ixpiic # I2C bus glue
|
||||
device ixpwdog # watchdog timer
|
||||
|
||||
device npe # Network Processing Engine
|
||||
device npe # Network Processing Engine
|
||||
device npe_fw
|
||||
device firmware
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # Minimal mii routines
|
||||
device rlphy # NSLU2 uses Realtek PHY attached to npe
|
||||
device qmgr # Q Manager (required by npe)
|
||||
device mii # Minimal mii routines
|
||||
device rlphy # NSLU2 uses Realtek PHY attached to npe
|
||||
device ether
|
||||
device bpf
|
||||
|
||||
device loop
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
device usb
|
||||
options USB_DEBUG
|
||||
device ohci
|
||||
device ehci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
|
@ -34,47 +34,47 @@ include "../ti/omap4/pandaboard/std.pandaboard"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
device snp
|
||||
options BREAK_TO_DEBUGGER
|
||||
|
||||
options NFSCL
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
#options BOOTP_WIRED_TO=ue0
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options FREEBSD_BOOT_LOADER
|
||||
|
||||
options PREEMPTION
|
||||
|
||||
# MMC/SD/SDIO Card slot support
|
||||
device mmc # mmc/sd bus
|
||||
device mmc # mmc/sd bus
|
||||
device mmcsd # mmc/sd flash cards
|
||||
|
||||
# I2C support
|
||||
@ -94,15 +94,15 @@ device gpio
|
||||
|
||||
device pty
|
||||
|
||||
device pl310 # PL310 L2 cache controller
|
||||
device pl310 # PL310 L2 cache controller
|
||||
# Debugging for use in -current
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device md
|
||||
@ -112,7 +112,7 @@ device md
|
||||
#options MD_ROOT
|
||||
#options MD_ROOT_SIZE=7560
|
||||
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# USB support
|
||||
options USB_HOST_ALIGN=64 # Align usb buffers to cache line size.
|
||||
@ -123,14 +123,14 @@ options USB_DEBUG
|
||||
device ohci
|
||||
device ehci
|
||||
device umass
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
|
||||
|
||||
# USB Ethernet support, requires miibus
|
||||
device miibus
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
device smsc # SMSC LAN95xx USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
device smsc # SMSC LAN95xx USB Ethernet
|
||||
device bpf
|
||||
|
||||
# OMAP-specific devices
|
||||
@ -144,4 +144,4 @@ options FDT
|
||||
options FDT_DTB_STATIC
|
||||
makeoptions FDT_DTS_FILE=pandaboard.dts
|
||||
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
@ -26,23 +26,23 @@ include "../at91/std.qila9g20"
|
||||
hints "QILA9G20.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
@ -53,18 +53,18 @@ options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
@ -72,10 +72,10 @@ options NO_FFS_SNAPSHOT
|
||||
options NO_SWAPPING
|
||||
|
||||
# Debugging for use in -current
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device random
|
||||
@ -87,7 +87,7 @@ device md
|
||||
device uart # Serial Ports
|
||||
|
||||
# Ethernet
|
||||
device ate # Ethernet Driver
|
||||
device ate # Ethernet Driver
|
||||
device mii
|
||||
option AT91_ATE_USE_RMII
|
||||
|
||||
@ -115,39 +115,39 @@ device iicbus
|
||||
device icee
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
|
@ -26,48 +26,48 @@ makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
options HZ=100
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
#options NFSCL
|
||||
#options NFSSERVER #Network Filesystem Server
|
||||
#options NFSCLIENT #Network Filesystem Client
|
||||
#options NFSSERVER # Network Filesystem Server
|
||||
#options NFSCLIENT # Network Filesystem Client
|
||||
|
||||
# MMC/SD/SDIO card slot support
|
||||
#device mmc # mmc/sd bus
|
||||
@ -101,7 +101,7 @@ device usb
|
||||
options USB_DEBUG
|
||||
#options USB_REQ_DEBUG
|
||||
#options USB_VERBOSE
|
||||
device dwcotg #DWC OTG controller
|
||||
device dwcotg # DWC OTG controller
|
||||
|
||||
device umass
|
||||
|
||||
|
@ -21,40 +21,40 @@ ident RPI-B
|
||||
|
||||
include "../broadcom/bcm2835/std.rpi"
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options SCTP #Stream Control Transmission Protocol
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options SCTP # Stream Control Transmission Protocol
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
device snp
|
||||
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSCL # Network Filesystem Client
|
||||
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
#options BOOTP_WIRED_TO=ue0
|
||||
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
#options ROOTDEVNAME=\"ufs:mmcsd0s2\"
|
||||
|
||||
@ -71,7 +71,7 @@ device pty
|
||||
# Comment following lines for boot console on serial port
|
||||
device vt
|
||||
device kbdmux
|
||||
options SC_DFLT_FONT # compile font in
|
||||
options SC_DFLT_FONT # compile font in
|
||||
makeoptions SC_DFLT_FONT=cp437
|
||||
device ukbd
|
||||
|
||||
@ -88,17 +88,17 @@ device iicbus
|
||||
device bcm2835_bsc
|
||||
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# USB support
|
||||
device usb
|
||||
options USB_DEBUG
|
||||
device dwcotg #DWC OTG controller
|
||||
device dwcotg # DWC OTG controller
|
||||
|
||||
# USB storage support
|
||||
device scbus
|
||||
@ -121,4 +121,4 @@ options FDT
|
||||
#options FDT_DTB_STATIC
|
||||
makeoptions FDT_DTS_FILE=rpi.dts
|
||||
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
@ -43,13 +43,13 @@ options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS # Pseudo-filesystem framework
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
#options GEOM_PART_GPT # GUID Partition Tables.
|
||||
#options GEOM_LABEL # Provides labelization
|
||||
#options COMPAT_FREEBSD5 # Compatible with FreeBSD5
|
||||
@ -107,68 +107,68 @@ options RWLOCK_NOINLINE
|
||||
# The `bpf' device enables the Berkeley Packet Filter.
|
||||
# Be aware of the administrative consequences of enabling this!
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Ethernet
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet driver
|
||||
device mii # Minimal MII support
|
||||
device ate # Atmel AT91 Ethernet driver
|
||||
|
||||
# I2C
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device icee # I2C eeprom
|
||||
device at91_twi # Atmel AT91 Two-wire Interface
|
||||
device iic # I2C generic I/O device driver
|
||||
device iicbus # I2C bus system
|
||||
device icee # I2C eeprom
|
||||
|
||||
# MMC/SD
|
||||
# See comment for DataFlash below
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
device at91_mci # Atmel AT91 Multimedia Card Interface
|
||||
options AT91_MCI_HAS_4WIRE # 4 wires
|
||||
options AT91_MCI_SLOT_B # Wired to slot B
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
device mmc # MMC/SD bus
|
||||
device mmcsd # MMC/SD memory card
|
||||
|
||||
# DataFlash
|
||||
# The DataFlash and MMC card are wired together, so we must pick one or the
|
||||
# other. This is due to pin mux, and also due to the design of the
|
||||
# SAM9260EK board. SLOT A wouldn't have this issue.
|
||||
#device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
#device spibus # SPI bus
|
||||
#device at45d # Atmel AT45D
|
||||
#device geom_map # GEOM partition mapping
|
||||
#device at91_spi # Atmel AT91 Serial Peripheral Interface
|
||||
#device spibus # SPI bus
|
||||
#device at45d # Atmel AT45D
|
||||
#device geom_map # GEOM partition mapping
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device ether # Ethernet support
|
||||
#device vlan # 802.1Q VLAN support
|
||||
#device tun # Packet tunnel.
|
||||
#device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
#device ch # SCSI media changers
|
||||
device da # Direct Access (disks)
|
||||
#device sa # Sequential Access (tape etc)
|
||||
device cd # CD/DVD
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
#device ch # SCSI media changers
|
||||
device da # Direct Access (disks)
|
||||
#device sa # Sequential Access (tape etc)
|
||||
device cd # CD/DVD
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device ses # Enclosure Services (SES and SAF-TE)
|
||||
#device ctl # CAM Target Layer
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
# USB support
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
device ohci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
|
||||
# watchdog
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
device at91_wdt # Atmel AT91 Watchdog Timer
|
||||
|
||||
# NAND Flash - Reference design has Samsung 256MB but others possible
|
||||
device nand # NAND interface on CS3
|
||||
|
@ -25,27 +25,27 @@ include "../at91/std.sam9g20ek"
|
||||
hints "SAM9G20EK.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options NANDFS #NAND file system
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NANDFS # NAND file system
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
@ -56,26 +56,26 @@ options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
options NO_SWAPPING
|
||||
|
||||
# Debugging for use in -current
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device random
|
||||
@ -87,7 +87,7 @@ device md
|
||||
device uart # Serial Ports
|
||||
|
||||
# Ethernet
|
||||
device ate # Ethernet Driver
|
||||
device ate # Ethernet Driver
|
||||
device mii
|
||||
option AT91_ATE_USE_RMII
|
||||
|
||||
@ -119,38 +119,38 @@ device iicbus
|
||||
device icee
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
#device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
@ -26,26 +26,26 @@ include "../at91/std.sam9x25ek"
|
||||
hints "SAM9G20EK.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
@ -56,26 +56,26 @@ options ROOTDEVNAME=\"ufs:/dev/mmcsd0s1a\"
|
||||
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
options NO_SWAPPING
|
||||
|
||||
# Debugging for use in -current
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device random
|
||||
@ -88,7 +88,7 @@ device md
|
||||
device uart # Serial Ports
|
||||
|
||||
# Ethernet
|
||||
device ate # Ethernet Driver
|
||||
device ate # Ethernet Driver
|
||||
device mii
|
||||
option AT91_ATE_USE_RMII
|
||||
|
||||
@ -117,39 +117,39 @@ device iicbus
|
||||
device icee
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
#device ohci # OHCI localbus->USB interface
|
||||
#device usb # USB Bus (required)
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
#device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
#device ohci # OHCI localbus->USB interface
|
||||
#device usb # USB Bus (required)
|
||||
#device umass # Disks/Mass storage - Requires scbus and da
|
||||
#device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
|
@ -10,20 +10,20 @@ include "../mv/kirkwood/std.db88f6xxx"
|
||||
options SOC_MV_KIRKWOOD
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options NANDFS #NAND Filesystem
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options NANDFS # NAND Filesystem
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
@ -32,10 +32,10 @@ options BOOTP_WIRED_TO=mge0
|
||||
# Root fs on USB device
|
||||
#options ROOTDEVNAME=\"ufs:/dev/da0a\"
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
@ -68,7 +68,7 @@ device crypto
|
||||
device cryptodev
|
||||
|
||||
# USB
|
||||
options USB_DEBUG # enable debug msgs
|
||||
options USB_DEBUG # enable debug msgs
|
||||
device usb
|
||||
device ehci
|
||||
device umass
|
||||
|
@ -25,23 +25,23 @@ include "../at91/std.sn9g45"
|
||||
#hints "SN9G45.hints"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options DDB
|
||||
options KDB
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
#options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES #Enable FFS soft updates support
|
||||
#options UFS_ACL #Support for access control lists
|
||||
#options UFS_DIRHASH #Improve performance on big directories
|
||||
#options MD_ROOT #MD is a potential root device
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
#options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
#options SOFTUPDATES # Enable FFS soft updates support
|
||||
#options UFS_ACL # Support for access control lists
|
||||
#options UFS_DIRHASH # Improve performance on big directories
|
||||
#options MD_ROOT # MD is a potential root device
|
||||
#options MD_ROOT_SIZE=4096 # 4MB ram disk
|
||||
options NFSCL #New Network Filesystem Client
|
||||
#options NFSD #New Network Filesystem Server
|
||||
#options NFSLOCKD #Network Lock Manager
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
#options NFSD # New Network Filesystem Server
|
||||
#options NFSLOCKD # Network Lock Manager
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP
|
||||
#options BOOTP_NFSV3
|
||||
@ -52,29 +52,29 @@ options ROOTDEVNAME=\"ufs:/dev/da0s1\"
|
||||
|
||||
options ALT_BREAK_TO_DEBUGGER
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
#options MSDOSFS #MSDOS Filesystem
|
||||
#options CD9660 #ISO 9660 Filesystem
|
||||
#options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=1000 #Delay (in ms) before probing SCSI
|
||||
#options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
#options MSDOSFS # MSDOS Filesystem
|
||||
#options CD9660 # ISO 9660 Filesystem
|
||||
#options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
#options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=1000 # Delay (in ms) before probing SCSI
|
||||
#options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
options NO_SWAPPING
|
||||
|
||||
# Debugging for use in -current
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
device random
|
||||
@ -86,46 +86,46 @@ device md
|
||||
device uart # Serial Ports
|
||||
|
||||
# Ethernet
|
||||
device ate # Ethernet Driver
|
||||
device ate # Ethernet Driver
|
||||
device mii
|
||||
option AT91_ATE_USE_RMII
|
||||
|
||||
device at91_wdt # WDT: Watchdog timer
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
device ohci # OHCI localbus->USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
#device ulpt # Printer
|
||||
#device udbp # USB Double Bulk Pipe devices
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
device miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device uath # Atheros AR5523 wireless NICs
|
||||
#device ural # Ralink Technology RT2500USB wireless NICs
|
||||
#device zyd # ZyDAS zd1211/zd1211b wireless NICs
|
||||
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
|
@ -10,30 +10,30 @@ include "../mv/orion/std.ts7800"
|
||||
options SOC_MV_ORION
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
|
||||
#makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
#makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options NFSCL #New Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # New Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
options BOOTP
|
||||
options BOOTP_NFSROOT
|
||||
options BOOTP_NFSV3
|
||||
options BOOTP_WIRED_TO=mge0
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
|
@ -32,31 +32,31 @@ options PHYSADDR=0x00000000
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options LINUX_BOOT_ABI
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options HZ=100
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
device snp
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
|
||||
options ROOTDEVNAME=\"ufs:da0s1a\"
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
options PREEMPTION
|
||||
|
||||
@ -76,27 +76,27 @@ device pty
|
||||
device pci
|
||||
|
||||
# SCSI Controllers
|
||||
device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
|
||||
device sym # NCR/Symbios/LSI Logic 53C8XX/53C1010/53C1510D
|
||||
|
||||
# ATA/SCSI peripherals
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
device scbus # SCSI bus (required for ATA/SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device pass # Passthrough device (direct ATA/SCSI access)
|
||||
|
||||
# NOTE: serial console is disabled if syscons enabled
|
||||
# Comment following lines for headless setup
|
||||
device sc
|
||||
device kbdmux
|
||||
options SC_DFLT_FONT # compile font in
|
||||
options SC_DFLT_FONT # compile font in
|
||||
makeoptions SC_DFLT_FONT=cp437
|
||||
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
options INVARIANTS #Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
options DDB # Enable the kernel debugger
|
||||
options INVARIANTS # Enable calls of extra sanity checking
|
||||
options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
|
||||
device md
|
||||
device random # Entropy device
|
||||
device random # Entropy device
|
||||
|
||||
# Flattened Device Tree
|
||||
options FDT
|
||||
|
@ -22,32 +22,32 @@ include "../freescale/vybrid/std.vybrid"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
makeoptions WERROR="-Werror"
|
||||
|
||||
options HZ=100 ##
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options HZ=100
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
#options NANDFS #NAND Filesystem
|
||||
options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
#options NANDFS # NAND Filesystem
|
||||
options COMPAT_43 # Compatible with BSD 4.3 [KEEP THIS!]
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options KBD_INSTALL_CDEV
|
||||
options PREEMPTION
|
||||
options FREEBSD_BOOT_LOADER
|
||||
@ -55,27 +55,27 @@ options MUTEX_NOINLINE
|
||||
options RWLOCK_NOINLINE
|
||||
options NO_FFS_SNAPSHOT
|
||||
options NO_SWAPPING
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols
|
||||
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
||||
options BREAK_TO_DEBUGGER
|
||||
#options VERBOSE_SYSINIT #Enable verbose sysinit messages
|
||||
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
||||
options KDB
|
||||
options DDB #Enable the kernel debugger
|
||||
#options INVARIANTS #Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
options DDB # Enable the kernel debugger
|
||||
#options INVARIANTS # Enable calls of extra sanity checking
|
||||
#options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
#options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
#options DIAGNOSTIC
|
||||
|
||||
# NFS support
|
||||
options NFSCL #Network Filesystem Client
|
||||
options NFSLOCKD #Network Lock Manager
|
||||
options NFS_ROOT #NFS usable as /, requires NFSCLIENT
|
||||
options NFSCL # Network Filesystem Client
|
||||
options NFSLOCKD # Network Lock Manager
|
||||
options NFS_ROOT # NFS usable as /, requires NFSCLIENT
|
||||
|
||||
# Uncomment this for NFS root
|
||||
#options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
#options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
#options BOOTP_NFSROOT
|
||||
#options BOOTP_COMPAT
|
||||
#options BOOTP
|
||||
@ -143,6 +143,6 @@ device sound
|
||||
# Framebuffer
|
||||
device vt
|
||||
device kbdmux
|
||||
options SC_DFLT_FONT # compile font in
|
||||
options SC_DFLT_FONT # compile font in
|
||||
makeoptions SC_DFLT_FONT=cp437
|
||||
device ukbd
|
||||
|
@ -68,71 +68,71 @@ options ALT_BREAK_TO_DEBUGGER # Use <CR><tilde><ctrl-b> to enter debugger.
|
||||
#options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
|
||||
# Note that 'bpf' is required for DHCP.
|
||||
device bpf # Berkeley packet filter
|
||||
device bpf # Berkeley packet filter
|
||||
|
||||
# Pseudo devices.
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device vlan # 802.1Q VLAN support
|
||||
device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device ether # Ethernet support
|
||||
device miibus # Required for ethernet
|
||||
device loop # Network loopback
|
||||
device random # Entropy device
|
||||
device vlan # 802.1Q VLAN support
|
||||
device tun # Packet tunnel.
|
||||
device md # Memory "disks"
|
||||
#device gif # IPv6 and IPv4 tunneling
|
||||
#device faith # IPv6-to-IPv4 relaying (translation)
|
||||
#device firmware # firmware assist module
|
||||
device ether # Ethernet support
|
||||
device miibus # Required for ethernet
|
||||
|
||||
# Serial (COM) ports
|
||||
device uart # Multi-uart driver
|
||||
device uart # Multi-uart driver
|
||||
|
||||
#device iomux # IO Multiplexor
|
||||
#device iomux # IO Multiplexor
|
||||
|
||||
# SCSI peripherals
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
device scbus # SCSI bus (required for SCSI)
|
||||
device da # Direct Access (disks)
|
||||
device cd # CD
|
||||
device pass # Passthrough device (direct SCSI access)
|
||||
|
||||
# USB support
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
options USB_HOST_ALIGN=32 # Required for ARM, set to cache line size.
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
device u3g # USB modems
|
||||
#options USB_DEBUG # enable debug msgs
|
||||
options USB_HOST_ALIGN=32 # Required for ARM, set to cache line size.
|
||||
device ehci # OHCI USB interface
|
||||
device usb # USB Bus (required)
|
||||
device umass # Disks/Mass storage - Requires scbus and da
|
||||
device uhid # "Human Interface Devices"
|
||||
device u3g # USB modems
|
||||
|
||||
# USB Ethernet, requires miibus
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
#device aue # ADMtek USB Ethernet
|
||||
#device axe # ASIX Electronics USB Ethernet
|
||||
#device cdce # Generic USB over Ethernet
|
||||
#device cue # CATC USB Ethernet
|
||||
#device kue # Kawasaki LSI USB Ethernet
|
||||
#device rue # RealTek RTL8150 USB Ethernet
|
||||
#device udav # Davicom DM9601E USB
|
||||
|
||||
# USB Wireless
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
#device rum # Ralink Technology RT2501USB wireless NICs
|
||||
|
||||
# Watchdog timer.
|
||||
# WARNING: can't be disabled!!!
|
||||
#device imxwdt # Watchdog
|
||||
#device imxwdt # Watchdog
|
||||
|
||||
# Wireless NIC cards
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
#device wlan # 802.11 support
|
||||
#device wlan_wep # 802.11 WEP support
|
||||
#device wlan_ccmp # 802.11 CCMP support
|
||||
#device wlan_tkip # 802.11 TKIP support
|
||||
#device wlan_amrr # AMRR transmit rate control algorithm
|
||||
|
||||
# NOTE: serial console will be disabled if syscons enabled
|
||||
# Uncomment following lines for framebuffer/syscons support
|
||||
# Wandboard has no video console support yet.
|
||||
#device sc
|
||||
#device kbdmux
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#options SC_DFLT_FONT # compile font in
|
||||
#makeoptions SC_DFLT_FONT=cp437
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
#device ukbd # Allow keyboard like HIDs to control console
|
||||
#device ums
|
||||
|
||||
# required for netbooting
|
||||
@ -145,15 +145,15 @@ device u3g # USB modems
|
||||
# U-Boot stuff lives on slice 1, FreeBSD on slice 2.
|
||||
options ROOTDEVNAME=\"ufs:mmcsd0s2a\"
|
||||
|
||||
#device fsliic # Freescale i2c/iic (not ready yet)
|
||||
#device iic # iic protocol
|
||||
#device iicbus # iic bus
|
||||
#device fsliic # Freescale i2c/iic (not ready yet)
|
||||
#device iic # iic protocol
|
||||
#device iicbus # iic bus
|
||||
|
||||
device sdhci # SD controller
|
||||
device mmc # SD/MMC protocol
|
||||
device mmcsd # SDCard disk device
|
||||
device sdhci # SD controller
|
||||
device mmc # SD/MMC protocol
|
||||
device mmcsd # SDCard disk device
|
||||
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
device ffec # Freescale Fast Ethernet Controller
|
||||
|
||||
options FREEBSD_BOOT_LOADER # Process metadata passed from loader(8)
|
||||
|
||||
|
@ -1,22 +1,22 @@
|
||||
# ZEDBOARD -- Custom configuration for the Xilinx Zynq-7000 based
|
||||
# ZedBoard (www.zedboard.org)
|
||||
# ZEDBOARD -- Custom configuration for the Xilinx Zynq-7000 based
|
||||
# ZedBoard (www.zedboard.org)
|
||||
#
|
||||
# For more information on this file, please read the handbook section on
|
||||
# Kernel Configuration Files:
|
||||
# For more information on this file, please read the handbook section on
|
||||
# Kernel Configuration Files:
|
||||
#
|
||||
# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
|
||||
# http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
|
||||
#
|
||||
# The handbook is also available locally in /usr/share/doc/handbook
|
||||
# if you've installed the doc distribution, otherwise always see the
|
||||
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
|
||||
# latest information.
|
||||
# The handbook is also available locally in /usr/share/doc/handbook
|
||||
# if you've installed the doc distribution, otherwise always see the
|
||||
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
|
||||
# latest information.
|
||||
#
|
||||
# An exhaustive list of options and more detailed explanations of the
|
||||
# device lines is also present in the ../../conf/NOTES and NOTES files.
|
||||
# If you are in doubt as to the purpose or necessity of a line, check first
|
||||
# in NOTES.
|
||||
# An exhaustive list of options and more detailed explanations of the
|
||||
# device lines is also present in the ../../conf/NOTES and NOTES files.
|
||||
# If you are in doubt as to the purpose or necessity of a line, check first
|
||||
# in NOTES.
|
||||
#
|
||||
# $FreeBSD$
|
||||
# $FreeBSD$
|
||||
|
||||
ident ZEDBOARD
|
||||
|
||||
@ -25,37 +25,37 @@ include "../xilinx/zedboard/std.zedboard"
|
||||
makeoptions MODULES_OVERRIDE=""
|
||||
makeoptions WITHOUT_MODULES="ahc"
|
||||
|
||||
options SCHED_4BSD #4BSD scheduler
|
||||
options INET #InterNETworking
|
||||
options INET6 #IPv6 communications protocols
|
||||
options FFS #Berkeley Fast Filesystem
|
||||
options SOFTUPDATES #Enable FFS soft updates support
|
||||
options UFS_ACL #Support for access control lists
|
||||
options UFS_DIRHASH #Improve performance on big directories
|
||||
options SCHED_4BSD # 4BSD scheduler
|
||||
options INET # InterNETworking
|
||||
options INET6 # IPv6 communications protocols
|
||||
options FFS # Berkeley Fast Filesystem
|
||||
options SOFTUPDATES # Enable FFS soft updates support
|
||||
options UFS_ACL # Support for access control lists
|
||||
options UFS_DIRHASH # Improve performance on big directories
|
||||
# options ROOTDEVNAME=\"ufs:mmcsd0s2a\"
|
||||
|
||||
options NFSCL #Network Filesystem Client
|
||||
# options NFSSD #Network Filesystem Server
|
||||
# options NFSLOCKD #Network Lock Manager
|
||||
# options NFS_ROOT #NFS usable as /, requires NFSCL
|
||||
options NFSCL # Network Filesystem Client
|
||||
# options NFSSD # Network Filesystem Server
|
||||
# options NFSLOCKD # Network Lock Manager
|
||||
# options NFS_ROOT # NFS usable as /, requires NFSCL
|
||||
# options BOOTP_NFSROOT
|
||||
# options BOOTP
|
||||
|
||||
options GEOM_PART_BSD #BSD partition scheme
|
||||
options GEOM_PART_MBR #MBR partition scheme
|
||||
options TMPFS #Efficient memory filesystem
|
||||
options MSDOSFS #MSDOS Filesystem
|
||||
options CD9660 #ISO 9660 Filesystem
|
||||
options PROCFS #Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS #Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 #Delay (in ms) before probing SCSI
|
||||
options KTRACE #ktrace(1) support
|
||||
options SYSVSHM #SYSV-style shared memory
|
||||
options SYSVMSG #SYSV-style message queues
|
||||
options SYSVSEM #SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
|
||||
options GEOM_PART_BSD # BSD partition scheme
|
||||
options GEOM_PART_MBR # MBR partition scheme
|
||||
options TMPFS # Efficient memory filesystem
|
||||
options MSDOSFS # MSDOS Filesystem
|
||||
options CD9660 # ISO 9660 Filesystem
|
||||
options PROCFS # Process filesystem (requires PSEUDOFS)
|
||||
options PSEUDOFS # Pseudo-filesystem framework
|
||||
options SCSI_DELAY=5000 # Delay (in ms) before probing SCSI
|
||||
options KTRACE # ktrace(1) support
|
||||
options SYSVSHM # SYSV-style shared memory
|
||||
options SYSVMSG # SYSV-style message queues
|
||||
options SYSVSEM # SYSV-style semaphores
|
||||
options _KPOSIX_PRIORITY_SCHEDULING # Posix P1003_1B real-time extensions
|
||||
options FREEBSD_BOOT_LOADER
|
||||
options VFP # vfp/neon
|
||||
options VFP # vfp/neon
|
||||
|
||||
# Debugging
|
||||
makeoptions DEBUG=-g
|
||||
@ -63,10 +63,10 @@ options DDB
|
||||
options KDB
|
||||
# options BREAK_TO_DEBUGGER
|
||||
|
||||
# options INVARIANTS #Enable calls of extra sanity checking
|
||||
# options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS
|
||||
# options WITNESS #Enable checks to detect deadlocks and cycles
|
||||
# options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed
|
||||
# options INVARIANTS # Enable calls of extra sanity checking
|
||||
# options INVARIANT_SUPPORT # Extra sanity checks of internal structures, required by INVARIANTS
|
||||
# options WITNESS # Enable checks to detect deadlocks and cycles
|
||||
# options WITNESS_SKIPSPIN # Don't run witness on spinlocks for speed
|
||||
|
||||
device loop
|
||||
device random
|
||||
|
Loading…
Reference in New Issue
Block a user