diff options
author | Martin Roth <martinroth@google.com> | 2015-12-06 18:13:43 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-12-10 16:36:04 +0100 |
commit | ae1bab3c9daa075b98d3be3add9d08ee7f02a0f1 (patch) | |
tree | 04279423251a34a4987f3f6e6394d902ec09f545 /src/mainboard/emulation/qemu-armv7 | |
parent | 3e41ee9847f0acd4a57c0c4cb11156eace16fd05 (diff) |
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>
Reviewed-on: https://review.coreboot.org/12660
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/emulation/qemu-armv7')
-rw-r--r-- | src/mainboard/emulation/qemu-armv7/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainboard/emulation/qemu-armv7/Kconfig b/src/mainboard/emulation/qemu-armv7/Kconfig index c6199ea521..bb13e988a9 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 |