svn commit: r283137 - head/sys/arm/conf

Ganbold Tsagaankhuu ganbold at FreeBSD.org
Wed May 20 05:49:54 UTC 2015


Author: ganbold
Date: Wed May 20 05:49:52 2015
New Revision: 283137
URL: https://svnweb.freebsd.org/changeset/base/283137

Log:
  D2432 (Patch for Amlogic single core PIC) moved the SMP option out
  of AML8726 and into board specific config files since some boards
  (e.g. YYHD18) use the aml8726-m3 which only have a single core.
  
  r283057 applied most of D2432, however while it removed SMP from
  AML8726, it missed adding the SMP option to the board specific
  config files.
  
  Differential Revision:	https://reviews.freebsd.org/D2589
  Submitted by:	John Wehle

Modified:
  head/sys/arm/conf/ODROIDC1
  head/sys/arm/conf/VSATV102

Modified: head/sys/arm/conf/ODROIDC1
==============================================================================
--- head/sys/arm/conf/ODROIDC1	Wed May 20 01:08:01 2015	(r283136)
+++ head/sys/arm/conf/ODROIDC1	Wed May 20 05:49:52 2015	(r283137)
@@ -22,6 +22,8 @@
 include 	"AML8726"
 ident		ODROIDC1
 
+options 	SMP			# Enable multiple cores
+
 # Interrupt controller
 device		gic
 

Modified: head/sys/arm/conf/VSATV102
==============================================================================
--- head/sys/arm/conf/VSATV102	Wed May 20 01:08:01 2015	(r283136)
+++ head/sys/arm/conf/VSATV102	Wed May 20 05:49:52 2015	(r283137)
@@ -22,6 +22,8 @@
 include 	"AML8726"
 ident		VSATV102
 
+options 	SMP			# Enable multiple cores
+
 # Interrupt controller
 device		gic
 


More information about the svn-src-head mailing list