blob: d6f061142717811b2a356e090dc1a39157d77b6c (
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
34
|
if ARCH_MXC
menu "Freescale MXC Implementations"
choice
prompt "MXC/iMX System Type"
default 0
config ARCH_MX3
bool "MX31-based"
help
This enables support for systems based on Freescale i.MX31
config ARCH_MX27
bool "MX27-based"
select MXC_EMMA
select GENERIC_TIME
help
This enables support for systems based on Freescale i.MX27
endchoice
source "arch/arm/mach-mx27/Kconfig"
source "arch/arm/mach-mx3/Kconfig"
endmenu
config MXC_EMMA
bool
depends on ARCH_MXC
endif
|