blob: 2b333a3d467443f6aad669cd58e75aa22f9925aa [file] [log] [blame]
Masahiro Yamadaf40b9892014-08-31 07:10:57 +09001if RMOBILE
2
3choice
4 prompt "Renesus ARM SoCs board select"
5
6config TARGET_ARMADILLO_800EVA
7 bool "armadillo 800 eva board"
8
Nobuhiro Iwamatsu6a994e52014-11-06 15:39:28 +09009config TARGET_GOSE
10 bool "Gose board"
11
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090012config TARGET_KOELSCH
13 bool "Koelsch board"
14
15config TARGET_LAGER
16 bool "Lager board"
17
18config TARGET_KZM9G
19 bool "KZM9D board"
20
21config TARGET_ALT
22 bool "Alt board"
23
Vladimir Barinov3b7f0e12015-01-12 19:17:07 +030024config TARGET_SILK
25 bool "Silk board"
26
Vladimir Barinov60c04672015-02-14 01:06:13 +030027config TARGET_PORTER
28 bool "Porter board"
29
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090030endchoice
31
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090032config SYS_SOC
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090033 default "rmobile"
34
Nobuhiro Iwamatsufb6f6002014-10-31 16:16:26 +090035config RMOBILE_EXTRAM_BOOT
36 bool "Enable boot from RAM"
Vladimir Barinov60c04672015-02-14 01:06:13 +030037 depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK
Nobuhiro Iwamatsufb6f6002014-10-31 16:16:26 +090038 default n
39
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090040source "board/atmark-techno/armadillo-800eva/Kconfig"
Nobuhiro Iwamatsu6a994e52014-11-06 15:39:28 +090041source "board/renesas/gose/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090042source "board/renesas/koelsch/Kconfig"
43source "board/renesas/lager/Kconfig"
44source "board/kmc/kzm9g/Kconfig"
45source "board/renesas/alt/Kconfig"
Vladimir Barinov3b7f0e12015-01-12 19:17:07 +030046source "board/renesas/silk/Kconfig"
Vladimir Barinov60c04672015-02-14 01:06:13 +030047source "board/renesas/porter/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +090048
49endif