[coreboot-gerrit] New patch to review for coreboot: bf9b97a qemu-armv7 CPU: Move Kconfig code into CPU directory

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Dec 3 21:08:39 CET 2013


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/4315

-gerrit

commit bf9b97a0cbe093ff766d5c2fcb3de12b660c772b
Author: Stefan Reinauer <reinauer at chromium.org>
Date:   Wed Jun 19 15:47:05 2013 -0700

    qemu-armv7 CPU: Move Kconfig code into CPU directory
    
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
    
    Change-Id: Icae8042add5f4dd5c707369ffc4587c613d69d29
    Reviewed-on: https://gerrit.chromium.org/gerrit/59324
    Reviewed-by: Stefan Reinauer <reinauer at chromium.org>
    Tested-by: Stefan Reinauer <reinauer at chromium.org>
    Commit-Queue: David Hendricks <dhendrix at chromium.org>
---
 src/cpu/armltd/Kconfig           |  7 -------
 src/cpu/armltd/cortex-a9/Kconfig | 10 ++++++++++
 2 files changed, 10 insertions(+), 7 deletions(-)

diff --git a/src/cpu/armltd/Kconfig b/src/cpu/armltd/Kconfig
index b1f4c2e..af0c5c5 100644
--- a/src/cpu/armltd/Kconfig
+++ b/src/cpu/armltd/Kconfig
@@ -1,8 +1 @@
-config CPU_ARMLTD_CORTEX_A9
-	depends on ARCH_ARMV7
-	bool
-	default n
-
-if CPU_ARMLTD_CORTEX_A9
 source src/cpu/armltd/cortex-a9/Kconfig
-endif
diff --git a/src/cpu/armltd/cortex-a9/Kconfig b/src/cpu/armltd/cortex-a9/Kconfig
index 7f35cfd..04861a6 100644
--- a/src/cpu/armltd/cortex-a9/Kconfig
+++ b/src/cpu/armltd/cortex-a9/Kconfig
@@ -1,5 +1,15 @@
+config CPU_ARMLTD_CORTEX_A9
+	depends on ARCH_ARMV7
+	bool
+	select EARLY_CONSOLE
+	default n
+
+if CPU_ARMLTD_CORTEX_A9
+
 config BOOTBLOCK_CPU_INIT
 	string
 	default "cpu/armltd/cortex-a9/bootblock.c"
 	help
 	  CPU/SoC-specific bootblock code.
+
+endif



More information about the coreboot-gerrit mailing list