summaryrefslogtreecommitdiff
path: root/arch/sh/config.in
blob: 0b476c6045183ae4dd22f8ea1a92d83f34922daf (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
# Super-H specific configuration file

config ARCH_sh
    select ARCH_SUPPORTS_BOTH_ENDIAN
    select ARCH_DEFAULT_LE

choice
    bool
    prompt "Variant"

config ARCH_SH_SH3
    bool
    prompt "sh3"

config ARCH_SH_SH4
    bool
    prompt "sh4"

config ARCH_SH_SH4A
    bool
    prompt "sh4a"

endchoice

config ARCH_SH_VARIANT
    string
    default "sh3"   if ARCH_SH_SH3
    default "sh4"   if ARCH_SH_SH4
    default "sh4a"  if ARCH_SH_SH4A