diff options
author | Juergen Beisert <j.beisert@pengutronix.de> | 2008-07-05 10:03:02 +0200 |
---|---|---|
committer | Robert Schwebel <r.schwebel@pengutronix.de> | 2008-07-05 10:03:02 +0200 |
commit | 1bd55a436f1f90de0e7f476e514e01bd67497b88 (patch) | |
tree | 2e801038851db5f5403e2f42b7662e020e833313 /arch/arm/plat-mxc/Kconfig | |
parent | ff6552e4f3505da9c2886098773146be71c872e3 (diff) | |
download | kernel_samsung_smdk4412-1bd55a436f1f90de0e7f476e514e01bd67497b88.zip kernel_samsung_smdk4412-1bd55a436f1f90de0e7f476e514e01bd67497b88.tar.gz kernel_samsung_smdk4412-1bd55a436f1f90de0e7f476e514e01bd67497b88.tar.bz2 |
i.MX2 family: Add basic mach support
This patch adds basic mach support for the mx2 processor family, based
on the original freescale code and adapted to mainline kernel coding
style.
This part adds the global build only.
Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/Kconfig')
-rw-r--r-- | arch/arm/plat-mxc/Kconfig | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/Kconfig b/arch/arm/plat-mxc/Kconfig index bb6e127..e14eaad 100644 --- a/arch/arm/plat-mxc/Kconfig +++ b/arch/arm/plat-mxc/Kconfig @@ -3,9 +3,14 @@ if ARCH_MXC menu "Freescale MXC Implementations" choice - prompt "MXC/iMX System Type" + prompt "MXC/iMX Base Type" default ARCH_MX3 +config ARCH_MX2 + bool "MX2-based" + help + This enables support for systems based on the Freescale i.MX2 family + config ARCH_MX3 bool "MX3-based" help @@ -13,6 +18,7 @@ config ARCH_MX3 endchoice +source "arch/arm/mach-mx2/Kconfig" source "arch/arm/mach-mx3/Kconfig" endmenu |