VSATV102 revision 281905
1# VSATV102 -- Custom configuration for the Visson ATV-102 media player
2#
3# For more information on this file, please read the config(5) manual page,
4# and/or the handbook section on Kernel Configuration Files:
5#
6#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
7#
8# The handbook is also available locally in /usr/share/doc/handbook
9# if you've installed the doc distribution, otherwise always see the
10# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
11# latest information.
12#
13# An exhaustive list of options and more detailed explanations of the
14# device lines is also present in the ../../conf/NOTES and NOTES files.
15# If you are in doubt as to the purpose or necessity of a line, check first
16# in NOTES.
17#
18# $FreeBSD: head/sys/arm/conf/VSATV102 281905 2015-04-23 20:53:29Z andrew $
19
20ident		ODROIDC1
21
22include 	"../amlogic/aml8726/std.aml8726"
23
24options 	HZ=100
25options 	SCHED_ULE		# ULE scheduler
26options 	PREEMPTION		# Enable kernel thread preemption
27options 	INET			# InterNETworking
28options 	INET6			# IPv6 communications protocols
29options 	SCTP			# Stream Control Transmission Protocol
30options 	FFS			# Berkeley Fast Filesystem
31options 	SOFTUPDATES		# Enable FFS soft updates support
32options 	UFS_ACL			# Support for access control lists
33options 	UFS_DIRHASH		# Improve performance on big directories
34options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
35options 	QUOTA			# Enable disk quotas for UFS
36options 	NFSCL			# Network Filesystem Client
37options 	NFSLOCKD		# Network Lock Manager
38options 	NFS_ROOT		# NFS usable as /, requires NFSCL
39options 	MSDOSFS			# MSDOS Filesystem
40options 	CD9660			# ISO 9660 Filesystem
41options 	PROCFS			# Process filesystem (requires PSEUDOFS)
42options 	PSEUDOFS		# Pseudo-filesystem framework
43options 	TMPFS			# Efficient memory filesystem
44options 	GEOM_PART_GPT		# GUID Partition Tables
45options 	GEOM_PART_BSD		# BSD partition scheme
46options 	GEOM_PART_MBR		# MBR partition scheme
47options 	COMPAT_43		# Compatible with BSD 4.3 [KEEP THIS!]
48options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
49options 	KTRACE			# ktrace(1) support
50options 	SYSVSHM			# SYSV-style shared memory
51options 	SYSVMSG			# SYSV-style message queues
52options 	SYSVSEM			# SYSV-style semaphores
53options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
54options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
55options 	KBD_INSTALL_CDEV	# install a CDEV entry in /dev
56options 	FREEBSD_BOOT_LOADER	# Process metadata passed from loader(8)
57options 	LINUX_BOOT_ABI
58options 	VFP			# Enable floating point hardware support
59options		SMP				# Enable multiple cores
60
61# Debugging
62makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
63options 	ALT_BREAK_TO_DEBUGGER
64#options 	VERBOSE_SYSINIT		# Enable verbose sysinit messages
65options 	BOOTVERBOSE=1
66options 	KDB			# Enable kernel debugger support
67# For minimum debugger support (stable branch) use:
68#options 	KDB_TRACE		# Print a stack trace for a panic
69# For full debugger support use this instead:
70options 	DDB			# Enable the kernel debugger
71options 	INVARIANTS		# Enable calls of extra sanity checking
72options 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
73options 	WITNESS			# Enable checks to detect deadlocks and cycles
74options 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
75#options 	DIAGNOSTIC
76
77# NFS root from boopt/dhcp
78#options 	BOOTP
79#options 	BOOTP_NFSROOT
80#options 	BOOTP_COMPAT
81#options 	BOOTP_NFSV3
82#options 	BOOTP_WIRED_TO=axe0
83
84# MMC/SD/SDIO Card slot support
85device		mmc			# mmc/sd bus
86device		mmcsd			# mmc/sd flash cards
87
88# Boot device is 2nd slice on MMC/SD card
89options 	ROOTDEVNAME=\"ufs:mmcsd0s2\"
90
91# GPIO
92device		gpio
93device		gpioled
94
95# I2C support
96device		iicbus
97device		iicbb
98device		iic
99
100# vt is the default console driver, resembling an SCO console
101device		vt
102#device		kbdmux
103
104# Serial (COM) ports
105device		uart			# Generic UART driver
106
107# Pseudo devices.
108device		loop			# Network loopback
109device		random			# Entropy device
110device		ether			# Ethernet support
111device		pty			# BSD-style compatibility pseudo ttys
112
113# The `bpf' device enables the Berkeley Packet Filter.
114# Be aware of the administrative consequences of enabling this!
115# Note that 'bpf' is required for DHCP.
116device		bpf			# Berkeley packet filter
117
118# USB support
119device		usb			# General USB code (mandatory for USB)
120device		dwcotg			# DWC OTG controller
121options 	USB_HOST_ALIGN=64	# Align usb buffers to cache line size.
122options 	USB_DEBUG
123#options 	USB_REQ_DEBUG
124#options 	USB_VERBOSE
125
126#device		ukbd			# USB keyboard
127#device		ums			# USB mouse
128
129device		scbus			# SCSI bus (required for ATA/SCSI)
130device		da			# Direct Access (disks)
131device		umass			# Disks/Mass storage - Requires scbus and da
132
133# Ethernet support
134device		miibus			# MII bus support
135
136# SoC Ethernet, requires miibus
137device		dwc
138
139# USB Ethernet support, requires miibus
140device		axe			# ASIX Electronics USB Ethernet
141
142# Flattened Device Tree
143options 	FDT			# Configure using FDT/DTB data
144options 	FDT_DTB_STATIC
145makeoptions	FDT_DTS_FILE=vsatv102-m6.dts
146