1# 2# Custom kernel for Marvell Armada XP 3# 4# $FreeBSD$ 5# 6 7ident MV-88F78XX0 8include "../mv/armadaxp/std.mv78x60" 9 10options SOC_MV_ARMADAXP 11makeoptions MODULES_OVERRIDE="" 12 13makeoptions DEBUG=-g #Build kernel with gdb(1) debug symbols 14makeoptions WERROR="-Werror" 15 16#options SCHED_ULE #ULE scheduler 17options SCHED_4BSD #4BSD scheduler 18options INET #InterNETworking 19options INET6 #IPv6 communications protocols 20options FFS #Berkeley Fast Filesystem 21options NFSCL #Network Filesystem Client 22options NFSLOCKD #Network Lock Manager 23options NFS_ROOT #NFS usable as /, requires NFSCLIENT 24options BOOTP 25options BOOTP_NFSROOT 26options BOOTP_NFSV3 27options BOOTP_WIRED_TO=mge0 28 29options GEOM_PART_GPT 30options ROOTDEVNAME=\"ufs:/dev/da0p1\" 31 32options SYSVSHM #SYSV-style shared memory 33options SYSVMSG #SYSV-style message queues 34options SYSVSEM #SYSV-style semaphores 35options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions 36options MUTEX_NOINLINE 37options RWLOCK_NOINLINE 38options NO_FFS_SNAPSHOT 39options NO_SWAPPING 40options VFP 41 42options SMP 43 44# Debugging 45#options VERBOSE_SYSINIT 46options ALT_BREAK_TO_DEBUGGER 47options DDB 48options GDB 49#options DIAGNOSTIC 50#options INVARIANTS #Enable calls of extra sanity checking 51#options INVARIANT_SUPPORT #Extra sanity checks of internal structures, required by INVARIANTS 52options KDB 53options KDB_TRACE 54#options KTR 55#options KTR_VERBOSE=0 56#options KTR_ENTRIES=16384 57#options KTR_MASK=(KTR_SPARE2) 58#options KTR_COMPILE=KTR_ALL 59#options WITNESS #Enable checks to detect deadlocks and cycles 60#options WITNESS_SKIPSPIN #Don't run witness on spinlocks for speed 61#options WITNESS_KDB 62 63# Pseudo devices 64device random 65device pty 66device loop 67device md 68 69# USB 70options USB_DEBUG # enable debug msgs 71device usb 72device ehci 73device umass 74device scbus 75device pass 76device da 77 78# SATA 79device mvs 80 81# Serial ports 82device uart 83 84# I2C (TWSI) 85device iic 86device iicbus 87 88#Network 89device ether 90device mge # Marvell Gigabit Ethernet controller 91device mii 92device e1000phy 93device bpf 94options HZ=1000 95options DEVICE_POLLING 96device vlan 97 98#PCI/PCIE 99device pci 100 101#FDT 102options FDT 103options FDT_DTB_STATIC 104makeoptions FDT_DTS_FILE=db78460.dts 105