2014-12-21 11:37:00 +00:00
|
|
|
#
|
2013-01-15 08:26:16 +00:00
|
|
|
# CUBIEBOARD -- Custom configuration for the CUBIEBOARD ARM development
|
|
|
|
# platform, check out http://www.cubieboard.org
|
|
|
|
#
|
2014-12-21 11:37:00 +00:00
|
|
|
# For more information on this file, please read the config(5) manual page,
|
|
|
|
# and/or the handbook section on Kernel Configuration Files:
|
2013-01-15 08:26:16 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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$
|
|
|
|
|
|
|
|
ident CUBIEBOARD
|
|
|
|
|
2015-05-07 12:38:23 +00:00
|
|
|
include "std.armv6"
|
|
|
|
include "../allwinner/std.a10"
|
2013-01-15 08:26:16 +00:00
|
|
|
|
|
|
|
options HZ=100
|
2014-03-16 15:22:46 +00:00
|
|
|
options SCHED_4BSD # 4BSD scheduler
|
2013-01-15 08:26:16 +00:00
|
|
|
|
2014-12-21 11:37:00 +00:00
|
|
|
# Debugging for use in -current
|
2014-03-16 15:22:46 +00:00
|
|
|
makeoptions DEBUG=-g # Build kernel with gdb(1) debug symbols
|
2015-05-25 23:27:13 +00:00
|
|
|
options ALT_BREAK_TO_DEBUGGER
|
2014-03-16 15:22:46 +00:00
|
|
|
#options VERBOSE_SYSINIT # Enable verbose sysinit messages
|
2014-12-21 11:37:00 +00:00
|
|
|
options KDB # Enable kernel debugger support
|
|
|
|
# For minimum debugger support (stable branch) use:
|
|
|
|
#options KDB_TRACE # Print a stack trace for a panic
|
|
|
|
# For full debugger support use this instead:
|
2014-03-16 15:22:46 +00:00
|
|
|
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
|
2013-01-15 08:26:16 +00:00
|
|
|
#options DIAGNOSTIC
|
|
|
|
|
2014-12-21 11:37:00 +00:00
|
|
|
# NFS root from boopt/dhcp
|
|
|
|
#options BOOTP
|
2013-01-15 08:26:16 +00:00
|
|
|
#options BOOTP_NFSROOT
|
|
|
|
#options BOOTP_COMPAT
|
|
|
|
#options BOOTP_NFSV3
|
|
|
|
#options BOOTP_WIRED_TO=cpsw0
|
|
|
|
|
|
|
|
# Boot device is 2nd slice on MMC/SD card
|
2014-03-18 14:41:18 +00:00
|
|
|
options ROOTDEVNAME=\"ufs:/dev/da0s2\"
|
2013-01-15 08:26:16 +00:00
|
|
|
|
2014-12-21 11:37:00 +00:00
|
|
|
# MMC/SD/SDIO Card slot support
|
2015-05-21 17:39:42 +00:00
|
|
|
device mmc # mmc/sd bus
|
|
|
|
device mmcsd # mmc/sd flash cards
|
2014-12-21 11:37:00 +00:00
|
|
|
|
2013-01-15 08:26:16 +00:00
|
|
|
# ATA controllers
|
2015-07-03 14:11:01 +00:00
|
|
|
device ahci # AHCI-compatible SATA controllers
|
2014-03-16 15:22:46 +00:00
|
|
|
#device ata # Legacy ATA/SATA controllers
|
2014-12-21 11:55:40 +00:00
|
|
|
#options ATA_STATIC_ID # Static device numbering
|
2013-01-15 08:26:16 +00:00
|
|
|
|
|
|
|
# Console and misc
|
2013-03-01 01:47:11 +00:00
|
|
|
device uart
|
|
|
|
device uart_ns8250
|
2013-01-15 08:26:16 +00:00
|
|
|
device pty
|
|
|
|
device snp
|
|
|
|
device md
|
|
|
|
device random # Entropy device
|
|
|
|
|
|
|
|
# I2C support
|
|
|
|
#device iicbus
|
|
|
|
#device iic
|
|
|
|
|
|
|
|
# GPIO
|
2013-02-05 02:25:13 +00:00
|
|
|
device gpio
|
2013-01-15 08:26:16 +00:00
|
|
|
|
2014-09-01 03:49:21 +00:00
|
|
|
device scbus # SCSI bus (required for ATA/SCSI)
|
2013-01-15 08:26:16 +00:00
|
|
|
device da # Direct Access (disks)
|
2015-07-03 14:11:01 +00:00
|
|
|
device pass # Passthrough device (direct ATA/SCSI access)
|
2013-01-15 08:26:16 +00:00
|
|
|
|
|
|
|
# USB support
|
2014-02-07 04:05:08 +00:00
|
|
|
options USB_HOST_ALIGN=64 # Align usb buffers to cache line size.
|
2013-01-29 07:21:50 +00:00
|
|
|
device usb
|
|
|
|
options USB_DEBUG
|
2013-01-15 08:26:16 +00:00
|
|
|
#options USB_REQ_DEBUG
|
|
|
|
#options USB_VERBOSE
|
|
|
|
#device uhci
|
|
|
|
#device ohci
|
2013-01-29 07:21:50 +00:00
|
|
|
device ehci
|
2013-01-15 08:26:16 +00:00
|
|
|
|
2013-01-29 07:21:50 +00:00
|
|
|
device umass
|
2013-01-15 08:26:16 +00:00
|
|
|
|
|
|
|
# Ethernet
|
|
|
|
device loop
|
|
|
|
device ether
|
|
|
|
device mii
|
|
|
|
device bpf
|
|
|
|
|
2014-03-03 11:36:39 +00:00
|
|
|
device emac
|
|
|
|
|
2013-01-15 08:26:16 +00:00
|
|
|
# USB ethernet support, requires miibus
|
|
|
|
device miibus
|
|
|
|
|
|
|
|
# Flattened Device Tree
|
2014-12-21 11:37:00 +00:00
|
|
|
options FDT # Configure using FDT/DTB data
|
2014-03-18 14:41:18 +00:00
|
|
|
options FDT_DTB_STATIC
|
2013-01-15 08:26:16 +00:00
|
|
|
makeoptions FDT_DTS_FILE=cubieboard.dts
|
2015-04-20 22:12:19 +00:00
|
|
|
makeoptions MODULES_EXTRA=dtb/allwinner
|