diff options
| author | Heinrich Schuchardt <[email protected]> | 2024-11-05 20:31:29 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-11-13 08:18:20 -0600 |
| commit | 3147f00f7a9801a5ecf1a7fbb8619da2909f8f76 (patch) | |
| tree | a8fcd286610e0f3b5120a9f86be4b2c244b36e8f | |
| parent | e6b937f35e317962aab3d02cbace9ee363b27a76 (diff) | |
board: qemu-arm: select CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR
qemu_arm64_defconfig with CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=n leads to a
build error:
arch/arm/lib/crt0_64.S:85:
Error: constant expression expected at operand 2 --
`ldr x0,=((CFG_SYS_INIT_RAM_ADDR+CFG_SYS_INIT_RAM_SIZE-480))'
We do not define CFG_SYS_INIT_RAM_ADDR and CFG_SYS_INIT_RAM_SIZE for QEMU.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Acked-by: Ilias Apalodimas <[email protected]>
| -rw-r--r-- | board/emulation/qemu-arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/emulation/qemu-arm/Kconfig b/board/emulation/qemu-arm/Kconfig index e21c135e86f..80ab9d8e1c3 100644 --- a/board/emulation/qemu-arm/Kconfig +++ b/board/emulation/qemu-arm/Kconfig @@ -5,6 +5,7 @@ config TEXT_BASE config BOARD_SPECIFIC_OPTIONS # dummy def_bool y + select HAS_CUSTOM_SYS_INIT_SP_ADDR select QFW if ACPI select QFW_MMIO if CMD_QFW imply VIRTIO_MMIO |
