diff options
author | Georges Savoundararadj <savoundg@gmail.com> | 2014-10-28 23:16:09 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-10-29 09:02:09 -0400 |
commit | 2e07c249a67e055db294818ff063d502d15db0f8 (patch) | |
tree | a55d9c43dd8ba01ad54dae4e0f42bd7e0967376a /board/siemens | |
parent | 678398b19ee23ee5227074bc0d0e7c3925af815c (diff) | |
download | u-boot-imx-2e07c249a67e055db294818ff063d502d15db0f8.zip u-boot-imx-2e07c249a67e055db294818ff063d502d15db0f8.tar.gz u-boot-imx-2e07c249a67e055db294818ff063d502d15db0f8.tar.bz2 |
kconfig: arm: introduce symbol for ARM CPUs
This commit introduces a Kconfig symbol for each ARM CPU:
CPU_ARM720T, CPU_ARM920T, CPU_ARM926EJS, CPU_ARM946ES, CPU_ARM1136,
CPU_ARM1176, CPU_V7, CPU_PXA, CPU_SA1100.
Also, it adds the CPU feature Kconfig symbol HAS_VBAR which is selected
for CPU_ARM1176 and CPU_V7.
For each target, the corresponding CPU is selected and the definition of
SYS_CPU in the corresponding Kconfig file is removed.
Also, it removes redundant "string" type in some Kconfig files.
Signed-off-by: Georges Savoundararadj <savoundg@gmail.com>
Acked-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/siemens')
-rw-r--r-- | board/siemens/corvus/Kconfig | 3 | ||||
-rw-r--r-- | board/siemens/draco/Kconfig | 6 | ||||
-rw-r--r-- | board/siemens/pxm2/Kconfig | 3 | ||||
-rw-r--r-- | board/siemens/rut/Kconfig | 3 | ||||
-rw-r--r-- | board/siemens/taurus/Kconfig | 3 |
5 files changed, 0 insertions, 18 deletions
diff --git a/board/siemens/corvus/Kconfig b/board/siemens/corvus/Kconfig index 80018c5..7b505aa 100644 --- a/board/siemens/corvus/Kconfig +++ b/board/siemens/corvus/Kconfig @@ -1,8 +1,5 @@ if TARGET_CORVUS -config SYS_CPU - default "arm926ejs" - config SYS_BOARD default "corvus" diff --git a/board/siemens/draco/Kconfig b/board/siemens/draco/Kconfig index b930a76..d138ece 100644 --- a/board/siemens/draco/Kconfig +++ b/board/siemens/draco/Kconfig @@ -1,8 +1,5 @@ if TARGET_DRACO -config SYS_CPU - default "armv7" - config SYS_BOARD default "draco" @@ -19,9 +16,6 @@ endif if TARGET_DXR2 -config SYS_CPU - default "armv7" - config SYS_BOARD default "draco" diff --git a/board/siemens/pxm2/Kconfig b/board/siemens/pxm2/Kconfig index f76ec69..62604ec 100644 --- a/board/siemens/pxm2/Kconfig +++ b/board/siemens/pxm2/Kconfig @@ -1,8 +1,5 @@ if TARGET_PXM2 -config SYS_CPU - default "armv7" - config SYS_BOARD default "pxm2" diff --git a/board/siemens/rut/Kconfig b/board/siemens/rut/Kconfig index b7e49da..3371077 100644 --- a/board/siemens/rut/Kconfig +++ b/board/siemens/rut/Kconfig @@ -1,8 +1,5 @@ if TARGET_RUT -config SYS_CPU - default "armv7" - config SYS_BOARD default "rut" diff --git a/board/siemens/taurus/Kconfig b/board/siemens/taurus/Kconfig index 1fedbd3..c07d244 100644 --- a/board/siemens/taurus/Kconfig +++ b/board/siemens/taurus/Kconfig @@ -1,8 +1,5 @@ if TARGET_TAURUS -config SYS_CPU - default "arm926ejs" - config SYS_BOARD default "taurus" |