Martin Roth (martinroth@google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/12660
-gerrit
commit 809dab92b121711ec46e29ffff433009acc916e5 Author: Martin Roth martinroth@google.com Date: Sun Dec 6 18:13:43 2015 -0700
emulation/qemu-arm7: Fix Kconfig symbols for stage compilers
These had typos ARM_STAGE_ARM7 instead of ARCH_STAGE_ARM7
Change-Id: Iffe8fecb3e52a50ff02b774478a10c353093688b Signed-off-by: Martin Roth martinroth@google.com --- src/mainboard/emulation/qemu-armv7/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/mainboard/emulation/qemu-armv7/Kconfig b/src/mainboard/emulation/qemu-armv7/Kconfig index c6199ea..bb13e98 100644 --- a/src/mainboard/emulation/qemu-armv7/Kconfig +++ b/src/mainboard/emulation/qemu-armv7/Kconfig @@ -27,9 +27,9 @@ config BOARD_SPECIFIC_OPTIONS # dummy select DRIVERS_UART_PL011 select BOOTBLOCK_CONSOLE select CONSOLE_SERIAL - select ARM_BOOTBLOCK_ARMV7 - select ARM_ROMSTAGE_ARMV7 - select ARM_RAMSTAGE_ARMV7 + select ARCH_BOOTBLOCK_ARMV7 + select ARCH_ROMSTAGE_ARMV7 + select ARCH_RAMSTAGE_ARMV7 select BOARD_ROMSIZE_KB_4096
config MAINBOARD_DIR