aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/armltd
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2013-06-19 15:47:05 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-12-05 00:38:06 +0100
commit9531692ee18553098b951d8bf5a2eaf46e4d76f5 (patch)
tree66761ea44c78ff1d146091ff54804fd9744f3dba /src/cpu/armltd
parenta9c8361c02474f66c398fc292c6c5129b48578de (diff)
qemu-armv7 CPU: Move Kconfig code into CPU directory
Signed-off-by: Stefan Reinauer <reinauer@google.com> Change-Id: Icae8042add5f4dd5c707369ffc4587c613d69d29 Reviewed-on: https://gerrit.chromium.org/gerrit/59324 Reviewed-by: Stefan Reinauer <reinauer@chromium.org> Tested-by: Stefan Reinauer <reinauer@chromium.org> Commit-Queue: David Hendricks <dhendrix@chromium.org> Reviewed-on: http://review.coreboot.org/4315 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/armltd')
-rw-r--r--src/cpu/armltd/Kconfig7
-rw-r--r--src/cpu/armltd/cortex-a9/Kconfig10
2 files changed, 10 insertions, 7 deletions
diff --git a/src/cpu/armltd/Kconfig b/src/cpu/armltd/Kconfig
index b1f4c2ee4e..af0c5c531c 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 7f35cfd653..04861a623c 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