mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 06:12:58 +00:00
69191fedf4
If CONFIG_RMOBILE_EXTRAM_BOOT is enabled, U-Boot is booted from External RAM. The default boot address is 0x70000000. Signed-off-by: Hisashi Nakamura <hisashi.nakamura.ak@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37 lines
650 B
Text
37 lines
650 B
Text
if RMOBILE
|
|
|
|
choice
|
|
prompt "Renesus ARM SoCs board select"
|
|
|
|
config TARGET_ARMADILLO_800EVA
|
|
bool "armadillo 800 eva board"
|
|
|
|
config TARGET_KOELSCH
|
|
bool "Koelsch board"
|
|
|
|
config TARGET_LAGER
|
|
bool "Lager board"
|
|
|
|
config TARGET_KZM9G
|
|
bool "KZM9D board"
|
|
|
|
config TARGET_ALT
|
|
bool "Alt board"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "rmobile"
|
|
|
|
config RMOBILE_EXTRAM_BOOT
|
|
bool "Enable boot from RAM"
|
|
depends on TARGET_LAGER || TARGET_KOELSCH
|
|
default n
|
|
|
|
source "board/atmark-techno/armadillo-800eva/Kconfig"
|
|
source "board/renesas/koelsch/Kconfig"
|
|
source "board/renesas/lager/Kconfig"
|
|
source "board/kmc/kzm9g/Kconfig"
|
|
source "board/renesas/alt/Kconfig"
|
|
|
|
endif
|