diff options
author | Masahiro Yamada | 2015-03-27 17:01:11 +0900 |
---|---|---|
committer | Tom Rini | 2015-03-28 09:03:09 -0400 |
commit | f47fb6b4a0082d1a9da03cec86150a5af4131eb3 (patch) | |
tree | 7a197b01fae433bc8b73008e8fde8381a14cdb49 /arch/m68k/Kconfig | |
parent | 2bb1cd53e97f996bc13df425602b85f9f1159db8 (diff) |
m68k: mcf523x: move CPU type to Kconfig and refactor config.mk
Move the CPU type config options from include/configs/M5235EVB.h
to arch/m68k/Kconfig and refactor the CPU flags select in
arch/m68k/cpu/mcf523x/config.mk.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Alison Wang <alison.wang@freescale.com>
Cc: Angelo Dureghello <angelo@sysam.it>
Diffstat (limited to 'arch/m68k/Kconfig')
-rw-r--r-- | arch/m68k/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index a645d95da0c..a3f0cbc2a44 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig @@ -11,6 +11,9 @@ config MCF520x config MCF52x2 bool +config MCF523x + bool + config MCF530x bool @@ -37,6 +40,10 @@ config M5208 bool select MCF520x +config M5235 + bool + select MCF523x + config M5249 bool select MCF52x2 @@ -103,6 +110,7 @@ config TARGET_M52277EVB config TARGET_M5235EVB bool "Support M5235EVB" + select M5235 config TARGET_COBRA5272 bool "Support cobra5272" |