]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/arm/conf/BEAGLEBONE
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / arm / conf / BEAGLEBONE
1 #
2 # BEAGLEBONE -- Custom configuration for the BeagleBone ARM development
3 # platforms, check out http://www.beagleboard.org/bone and
4 # http://www.beagleboard.org/black. This kernel config file is used for the
5 # original BeagleBone and the BeagleBone Black.
6 #
7 # For more information on this file, please read the config(5) manual page,
8 # and/or the handbook section on Kernel Configuration Files:
9 #
10 #    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
11 #
12 # The handbook is also available locally in /usr/share/doc/handbook
13 # if you've installed the doc distribution, otherwise always see the
14 # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
15 # latest information.
16 #
17 # An exhaustive list of options and more detailed explanations of the
18 # device lines is also present in the ../../conf/NOTES and NOTES files.
19 # If you are in doubt as to the purpose or necessity of a line, check first
20 # in NOTES.
21 #
22 # $FreeBSD$
23
24 ident           BEAGLEBONE
25
26 include         "../ti/am335x/std.am335x"
27
28 makeoptions     MODULES_EXTRA="dtb/am335x"
29
30 options         HZ=100
31 options         SCHED_4BSD              # 4BSD scheduler
32 options         PREEMPTION              # Enable kernel thread preemption
33 options         INET                    # InterNETworking
34 options         INET6                   # IPv6 communications protocols
35 options         SCTP                    # Stream Control Transmission Protocol
36 options         FFS                     # Berkeley Fast Filesystem
37 options         SOFTUPDATES             # Enable FFS soft updates support
38 options         UFS_ACL                 # Support for access control lists
39 options         UFS_DIRHASH             # Improve performance on big directories
40 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
41 options         QUOTA                   # Enable disk quotas for UFS
42 options         NFSCL                   # New Network Filesystem Client
43 options         NFSLOCKD                # Network Lock Manager
44 options         NFS_ROOT                # NFS usable as /, requires NFSCL
45 options         MSDOSFS                 # MSDOS Filesystem
46 options         CD9660                  # ISO 9660 Filesystem
47 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
48 options         PSEUDOFS                # Pseudo-filesystem framework
49 options         TMPFS                   # Efficient memory filesystem
50 options         GEOM_PART_GPT           # GUID Partition Tables
51 options         GEOM_PART_BSD           # BSD partition scheme
52 options         GEOM_PART_MBR           # MBR partition scheme
53 options         GEOM_LABEL              # Provides labelization 
54 options         COMPAT_43               # Compatible with BSD 4.3 [KEEP THIS!]
55 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
56 options         KTRACE                  # ktrace(1) support
57 options         SYSVSHM                 # SYSV-style shared memory
58 options         SYSVMSG                 # SYSV-style message queues
59 options         SYSVSEM                 # SYSV-style semaphores
60 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
61 options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev
62 options         FREEBSD_BOOT_LOADER     # Process metadata passed from loader(8)
63 options         VFP                     # Enable floating point hardware support
64
65 # Debugging for use in -current
66 makeoptions     DEBUG=-g                # Build kernel with gdb(1) debug symbols
67 options         BREAK_TO_DEBUGGER
68 #options        VERBOSE_SYSINIT         # Enable verbose sysinit messages
69 options         KDB                     # Enable kernel debugger support
70 # For minimum debugger support (stable branch) use:
71 #options        KDB_TRACE               # Print a stack trace for a panic
72 # For full debugger support use this instead:
73 options         DDB                     # Enable the kernel debugger
74 #options        INVARIANTS              # Enable calls of extra sanity checking
75 #options        INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
76 #options        WITNESS                 # Enable checks to detect deadlocks and cycles
77 #options        WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
78 #options        DIAGNOSTIC
79
80 # NFS server support
81 #options        NFSD
82
83 # NFS root from boopt/dhcp
84 #options        BOOTP
85 #options        BOOTP_NFSROOT
86 #options        BOOTP_COMPAT
87 #options        BOOTP_NFSV3
88 #options        BOOTP_WIRED_TO=cpsw0
89
90 # Boot device is 2nd slice on MMC/SD card
91 options         ROOTDEVNAME=\"ufs:mmcsd0s2\"
92
93 # MMC/SD/SDIO Card slot support
94 device          mmc                     # mmc/sd bus
95 device          mmcsd                   # mmc/sd flash cards
96 device          sdhci                   # mmc/sd host controller
97
98 # I2C support
99 device          iicbus
100 device          iic
101 device          ti_i2c
102 device          am335x_pmic             # AM335x Power Management IC (TPC65217)
103
104 device          am335x_rtc              # RTC support (power management only)
105
106 # Console and misc
107 device          uart
108 device          uart_ns8250
109 device          pty
110 device          snp
111 device          md
112 device          random                  # Entropy device
113
114 # GPIO
115 device          gpio
116 device          gpioled
117
118 # ADC support
119 device          ti_adc
120
121 # Watchdog support
122 # If we don't enable the watchdog driver, the system could potentially
123 # reboot automatically because the boot loader might have enabled the
124 # watchdog.
125 device          ti_wdt
126
127 # TI Programmable Realtime Unit support
128 device          ti_pruss
129
130 # Mailbox support
131 device          ti_mbox
132
133 # USB support
134 device          usb
135 options         USB_HOST_ALIGN=64       # Align usb buffers to cache line size.
136 options         USB_DEBUG
137 #options        USB_REQ_DEBUG
138 #options        USB_VERBOSE
139 device          musb
140 device          umass
141 device          scbus                   # SCSI bus (required for ATA/SCSI)
142 device          da                      # Direct Access (disks)
143
144 # Ethernet
145 device          loop
146 device          ether
147 device          mii
148 device          smscphy
149 device          cpsw
150 device          bpf
151
152 # USB Ethernet support, requires miibus
153 device          miibus
154 device          axe                     # ASIX Electronics USB Ethernet
155
156 # Device mode support and USFS template
157 device          usb_template            # Control of the gadget
158 device          usfs
159
160 # Flattened Device Tree
161 options         FDT                     # Configure using FDT/DTB data