c2a5cd110c
Make the OF-compatible zImage per-board selectable. This allows the image to only be built with the wrapper if the target actually uses it. This fixes build-failures for the mpc85xx-p2020 subtarget. Fixes: 557c094f0579 ("mpc85xx: only build zImage on required targets") Signed-off-by: David Bauer <mail@david-bauer.net>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
--- a/arch/powerpc/platforms/85xx/Kconfig
|
|
+++ b/arch/powerpc/platforms/85xx/Kconfig
|
|
@@ -114,6 +114,18 @@ config FIREBOX_T10
|
|
This board is a VPN Gateway-Router with a
|
|
Freescale P1010 SoC.
|
|
|
|
+config MSM460
|
|
+ bool "HPE MSM460"
|
|
+ select DEFAULT_UIMAGE
|
|
+ select ARCH_REQUIRE_GPIOLIB
|
|
+ select GPIO_MPC8XXX
|
|
+ select PPC_ZIMAGE_LA3000000
|
|
+ help
|
|
+ This option enables support for the HPE MSM460 board.
|
|
+
|
|
+ This board is a Concurrent Dual-Band wireless access point with a
|
|
+ Freescale P1020 SoC.
|
|
+
|
|
config MPC8540_ADS
|
|
bool "Freescale MPC8540 ADS"
|
|
select DEFAULT_UIMAGE
|
|
--- a/arch/powerpc/platforms/85xx/Makefile
|
|
+++ b/arch/powerpc/platforms/85xx/Makefile
|
|
@@ -19,6 +19,7 @@ obj8259-$(CONFIG_PPC_I8259) += mpc85xx
|
|
obj-$(CONFIG_MPC85xx_DS) += mpc85xx_ds.o $(obj8259-y)
|
|
obj-$(CONFIG_MPC85xx_MDS) += mpc85xx_mds.o
|
|
obj-$(CONFIG_MPC85xx_RDB) += mpc85xx_rdb.o
|
|
+obj-$(CONFIG_MSM460) += msm460.o
|
|
obj-$(CONFIG_P1010_RDB) += p1010rdb.o
|
|
obj-$(CONFIG_P1022_DS) += p1022_ds.o
|
|
obj-$(CONFIG_P1022_RDK) += p1022_rdk.o
|