summaryrefslogtreecommitdiffstats
path: root/arch/ppc
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2007-07-05 18:02:17 +0200
committerSascha Hauer <sha@octopus.labnet.pengutronix.de>2007-07-05 18:02:17 +0200
commit4e95f5bda8bcd159bc8a28d07b85e3e88fa79333 (patch)
treef6efba5b2513689b0e09102d758c23fe0d0d76f2 /arch/ppc
parente74a1633aa3f33e9149c427b431915988ceedbce (diff)
downloadbarebox-4e95f5bda8bcd159bc8a28d07b85e3e88fa79333.tar.gz
barebox-4e95f5bda8bcd159bc8a28d07b85e3e88fa79333.tar.xz
svn_rev_687
split board specific stuff apart
Diffstat (limited to 'arch/ppc')
-rw-r--r--arch/ppc/Kconfig13
-rw-r--r--arch/ppc/mach-mpc5xxx/Kconfig12
2 files changed, 15 insertions, 10 deletions
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig
index 36d2890942..aa70a2b6f1 100644
--- a/arch/ppc/Kconfig
+++ b/arch/ppc/Kconfig
@@ -26,18 +26,11 @@ config MACH_PHYCORE_MPC5200B_TINY
select MPC5200
select HAS_CFI
help
- Say Y here if you are using the Motorola MX1ADS board
-
-config MACH_PHYCORE_MPC5200B_TINY_REV_1
- bool "Build U-Boot for revision 1 board"
- default y
- depends on MACH_PHYCORE_MPC5200B_TINY
- help
- Revision 0 and revision 1 of the tiny board are not
- compatible with each other. Unless you have a very old
- board you should enable this option.
+ Say Y here if you are using the Phytec Phycore MPC5200B Tiny
+ board
endchoice
+source arch/ppc/mach-mpc5xxx/Kconfig
source common/Kconfig
source commands/Kconfig
source net/Kconfig
diff --git a/arch/ppc/mach-mpc5xxx/Kconfig b/arch/ppc/mach-mpc5xxx/Kconfig
new file mode 100644
index 0000000000..632fb857f1
--- /dev/null
+++ b/arch/ppc/mach-mpc5xxx/Kconfig
@@ -0,0 +1,12 @@
+menu "Board specific settings "
+
+config MACH_PHYCORE_MPC5200B_TINY_REV
+ int "Board Revision"
+ default 1
+ depends on MACH_PHYCORE_MPC5200B_TINY
+ help
+ Revision 0 and revision 1 of the tiny board have
+ incompatible flash settings. Unless you have a very
+ old board you should set this option to 1
+
+endmenu