[patch 07/10] powerpc: multiplatformize 52xx configuration
From: arnd@arndb.de
Date: 2007-06-11 23:36:27
Efika and Lite5200 can both coexist with other 6xx compatible configurations, so change the Kconfig allow selecting both at the same time. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/arch/powerpc/platforms/52xx/Kconfig ===================================================================
--- linux-2.6.orig/arch/powerpc/platforms/52xx/Kconfig
+++ linux-2.6/arch/powerpc/platforms/52xx/Kconfig@@ -1,11 +1,26 @@ config PPC_MPC52xx - bool + bool "Freescale 52xx" select FSL_SOC + +config PPC_EFIKA + bool "bPlan Efika 5k2. MPC5200B based computer" + depends on PPC_MULTIPLATFORM && PPC32 + depends on PPC_MPC52xx + select PPC_RTAS + select RTAS_PROC + select PPC_NATIVE + default n + +config PPC_LITE5200 + bool "Freescale Lite5200 Eval Board" + depends on PPC_MULTIPLATFORM && PPC32 + depends on PPC_MPC52xx + select PPC_MPC5200 default n config PPC_MPC5200 bool - select PPC_MPC52xx + depends on PPC_MPC52xx default n config PPC_MPC5200_BUGFIX
@@ -18,19 +33,4 @@ config PPC_MPC5200_BUGFIX It is safe to say 'Y' here -config PPC_EFIKA - bool "bPlan Efika 5k2. MPC5200B based computer" - depends on PPC_MULTIPLATFORM && PPC32 - select PPC_RTAS - select RTAS_PROC - select PPC_MPC52xx - select PPC_NATIVE - default n - -config PPC_LITE5200 - bool "Freescale Lite5200 Eval Board" - depends on PPC_MULTIPLATFORM && PPC32 - select PPC_MPC5200 - default n - --