[coreboot-gerrit] New patch to review for coreboot: Kconfig: Relocate DEVICETREE symbol

Marshall Dawson (marshalldawson3rd@gmail.com) gerrit at coreboot.org
Sun Sep 4 17:01:11 CEST 2016


Marshall Dawson (marshalldawson3rd at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16493

-gerrit

commit 21529d251b21bded15f5bd5a57290a0da8f51514
Author: Marshall Dawson <marshalldawson3rd at gmail.com>
Date:   Sun Sep 4 08:38:33 2016 -0600

    Kconfig: Relocate DEVICETREE symbol
    
    Place config DEVICETREE after the sourced mainboard Kconfig.  This
    gives the mainboard the opportunity to set a unique default value.
    
    Change-Id: Id877e1e8f555334a99b6c0ee1782d06a4a2b7a04
    Signed-off-by: Marshall Dawson <marshalldawson3rd at gmail.com>
---
 src/Kconfig | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/Kconfig b/src/Kconfig
index 64da061..a43a979 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -341,17 +341,6 @@ config BOARD_ID_STRING
 	  This string is placed in the 'board_id' CBFS file for indicating
 	  board type.
 
-config DEVICETREE
-	string
-	default "devicetree.cb"
-	help
-	  This symbol allows mainboards to select a different file under their
-	  mainboard directory for the devicetree.cb file.  This allows the board
-	  variants that need different devicetrees to be in the same directory.
-
-	  Examples: "devicetree.variant.cb"
-	            "variant/devicetree.cb"
-
 config RAM_CODE_SUPPORT
 	bool
 	default n
@@ -382,6 +371,17 @@ menu "Mainboard"
 
 source "src/mainboard/Kconfig"
 
+config DEVICETREE
+	string
+	default "devicetree.cb"
+	help
+	  This symbol allows mainboards to select a different file under their
+	  mainboard directory for the devicetree.cb file.  This allows the board
+	  variants that need different devicetrees to be in the same directory.
+
+	  Examples: "devicetree.variant.cb"
+	            "variant/devicetree.cb"
+
 # defaults for CBFS_SIZE are set at the end of the file.
 config CBFS_SIZE
 	hex "Size of CBFS filesystem in ROM"



More information about the coreboot-gerrit mailing list