]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/rmobile/Kconfig
arch: Make board selection choices optional
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / rmobile / Kconfig
1 if RMOBILE
2
3 choice
4         prompt "Renesus ARM SoCs board select"
5         optional
6
7 config TARGET_ARMADILLO_800EVA
8         bool "armadillo 800 eva board"
9
10 config TARGET_GOSE
11         bool "Gose board"
12         select DM
13         select DM_SERIAL
14
15 config TARGET_KOELSCH
16         bool "Koelsch board"
17         select DM
18         select DM_SERIAL
19
20 config TARGET_LAGER
21         bool "Lager board"
22         select DM
23         select DM_SERIAL
24
25 config TARGET_KZM9G
26         bool "KZM9D board"
27
28 config TARGET_ALT
29         bool "Alt board"
30         select DM
31         select DM_SERIAL
32
33 config TARGET_SILK
34         bool "Silk board"
35         select DM
36         select DM_SERIAL
37
38 config TARGET_PORTER
39         bool "Porter board"
40         select DM
41         select DM_SERIAL
42
43 endchoice
44
45 config SYS_SOC
46         default "rmobile"
47
48 config RMOBILE_EXTRAM_BOOT
49         bool "Enable boot from RAM"
50         depends on TARGET_ALT || TARGET_KOELSCH || TARGET_LAGER || TARGET_PORTER || TARGET_SILK
51         default n
52
53 source "board/atmark-techno/armadillo-800eva/Kconfig"
54 source "board/renesas/gose/Kconfig"
55 source "board/renesas/koelsch/Kconfig"
56 source "board/renesas/lager/Kconfig"
57 source "board/kmc/kzm9g/Kconfig"
58 source "board/renesas/alt/Kconfig"
59 source "board/renesas/silk/Kconfig"
60 source "board/renesas/porter/Kconfig"
61
62 endif