svn commit: r281905 - in head/sys/arm: amlogic/aml8726 conf

Andrew Turner andrew at FreeBSD.org
Thu Apr 23 20:53:30 UTC 2015


Author: andrew
Date: Thu Apr 23 20:53:29 2015
New Revision: 281905
URL: https://svnweb.freebsd.org/changeset/base/281905

Log:
  Remove the need for board specific std files on aml8726 by moving the
  options they set to the main kernel config.

Deleted:
  head/sys/arm/amlogic/aml8726/std.odroidc1
  head/sys/arm/amlogic/aml8726/std.vsatv102-m6
Modified:
  head/sys/arm/conf/ODROIDC1
  head/sys/arm/conf/VSATV102

Modified: head/sys/arm/conf/ODROIDC1
==============================================================================
--- head/sys/arm/conf/ODROIDC1	Thu Apr 23 20:43:24 2015	(r281904)
+++ head/sys/arm/conf/ODROIDC1	Thu Apr 23 20:53:29 2015	(r281905)
@@ -19,7 +19,7 @@
 
 ident		ODROIDC1
 
-include 	"../amlogic/aml8726/std.odroidc1"
+include 	"../amlogic/aml8726/std.aml8726"
 
 options 	HZ=100
 options 	SCHED_ULE		# ULE scheduler
@@ -56,6 +56,7 @@ options 	KBD_INSTALL_CDEV	# install a CD
 options 	FREEBSD_BOOT_LOADER	# Process metadata passed from loader(8)
 options 	LINUX_BOOT_ABI
 options 	VFP			# Enable floating point hardware support
+options 	SMP			# Enable multiple cores
 
 # Debugging
 makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
@@ -141,3 +142,4 @@ device		axe			# ASIX Electronics USB Eth
 # Flattened Device Tree
 options 	FDT			# Configure using FDT/DTB data
 options 	FDT_DTB_STATIC
+makeoptions	FDT_DTS_FILE=odroidc1.dts

Modified: head/sys/arm/conf/VSATV102
==============================================================================
--- head/sys/arm/conf/VSATV102	Thu Apr 23 20:43:24 2015	(r281904)
+++ head/sys/arm/conf/VSATV102	Thu Apr 23 20:53:29 2015	(r281905)
@@ -19,7 +19,7 @@
 
 ident		ODROIDC1
 
-include 	"../amlogic/aml8726/std.vsatv102-m6"
+include 	"../amlogic/aml8726/std.aml8726"
 
 options 	HZ=100
 options 	SCHED_ULE		# ULE scheduler
@@ -56,6 +56,7 @@ options 	KBD_INSTALL_CDEV	# install a CD
 options 	FREEBSD_BOOT_LOADER	# Process metadata passed from loader(8)
 options 	LINUX_BOOT_ABI
 options 	VFP			# Enable floating point hardware support
+options		SMP				# Enable multiple cores
 
 # Debugging
 makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
@@ -141,3 +142,4 @@ device		axe			# ASIX Electronics USB Eth
 # Flattened Device Tree
 options 	FDT			# Configure using FDT/DTB data
 options 	FDT_DTB_STATIC
+makeoptions	FDT_DTS_FILE=vsatv102-m6.dts


More information about the svn-src-all mailing list