diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-10-15 02:21:18 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-11-14 09:16:28 -0800 |
commit | 6f3327658b03f448c324ac54aad1bd6cc2c2e50d (patch) | |
tree | 81717a7e51e4bbe38ab278b325be76502395eccc /board | |
parent | 4135e10732a0eb3c66b34d2fde32eb54d6323fc6 (diff) |
arm: qemu: Add a Kconfig in the board directory
This adds a Kconfig file in the board directory, so that some
board-specific options can be specified there.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board')
-rw-r--r-- | board/emulation/qemu-arm/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board/emulation/qemu-arm/Kconfig b/board/emulation/qemu-arm/Kconfig new file mode 100644 index 0000000000..d1c08c2f6a --- /dev/null +++ b/board/emulation/qemu-arm/Kconfig @@ -0,0 +1,9 @@ +if TARGET_QEMU_ARM_32BIT || TARGET_QEMU_ARM_64BIT + +config SYS_TEXT_BASE + default 0x00000000 + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + +endif |