blob: 733334f93186fc116010cc421ebd1fc47457f122 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
menu "SPARC architecture"
depends on SPARC
config SYS_ARCH
default "sparc"
choice
prompt "Target select"
config TARGET_GRSIM_LEON2
bool "Support grsim_leon2"
config TARGET_GR_CPCI_AX2000
bool "Support gr_cpci_ax2000"
config TARGET_GR_EP2S60
bool "Support gr_ep2s60"
config TARGET_GR_XC3S_1500
bool "Support gr_xc3s_1500"
config TARGET_GRSIM
bool "Support grsim"
endchoice
source "board/gaisler/gr_cpci_ax2000/Kconfig"
source "board/gaisler/gr_ep2s60/Kconfig"
source "board/gaisler/gr_xc3s_1500/Kconfig"
source "board/gaisler/grsim/Kconfig"
source "board/gaisler/grsim_leon2/Kconfig"
endmenu
|