summaryrefslogtreecommitdiffstats
path: root/arch/mips/Makefile
diff options
context:
space:
mode:
authorJames Hogan2018-02-09 17:11:56 +0100
committerJames Hogan2018-02-19 22:03:07 +0100
commit318df8062852b6b7b6a9b2667289eca77fe42e3b (patch)
tree8c360484c8bd19764a77c6d5f108868641890224 /arch/mips/Makefile
parentMIPS: generic: Enable crc32-mips on r6 configs (diff)
downloadkernel-qcow2-linux-318df8062852b6b7b6a9b2667289eca77fe42e3b.tar.gz
kernel-qcow2-linux-318df8062852b6b7b6a9b2667289eca77fe42e3b.tar.xz
kernel-qcow2-linux-318df8062852b6b7b6a9b2667289eca77fe42e3b.zip
MIPS: Refactor legacy defconfigs
Define legacy defconfigs which have been converted to the generic platform more programatically, so that they can be listed in the Makefile help text and as a separate Makefile target without duplication. Signed-off-by: James Hogan <jhogan@kernel.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Paul Burton <paul.burton@mips.com> Cc: Matt Redfearn <matt.redfearn@mips.com> Cc: linux-mips@linux-mips.org Cc: linux-kbuild@vger.kernel.org Patchwork: https://patchwork.linux-mips.org/patch/18596/
Diffstat (limited to 'arch/mips/Makefile')
-rw-r--r--arch/mips/Makefile19
1 files changed, 10 insertions, 9 deletions
diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index 44a6ed53d018..22aa38b28d33 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -546,14 +546,15 @@ generic_defconfig:
# now that the boards have been converted to use the generic kernel they are
# wrappers around the generic rules above.
#
-.PHONY: sead3_defconfig
-sead3_defconfig:
- $(Q)$(MAKE) -f $(srctree)/Makefile 32r2el_defconfig BOARDS=sead-3
+legacy_defconfigs += sead3_defconfig
+sead3_defconfig-y := 32r2el_defconfig BOARDS=sead-3
-.PHONY: sead3micro_defconfig
-sead3micro_defconfig:
- $(Q)$(MAKE) -f $(srctree)/Makefile micro32r2el_defconfig BOARDS=sead-3
+legacy_defconfigs += sead3micro_defconfig
+sead3micro_defconfig-y := micro32r2el_defconfig BOARDS=sead-3
-.PHONY: xilfpga_defconfig
-xilfpga_defconfig:
- $(Q)$(MAKE) -f $(srctree)/Makefile 32r2el_defconfig BOARDS=xilfpga
+legacy_defconfigs += xilfpga_defconfig
+xilfpga_defconfig-y := 32r2el_defconfig BOARDS=xilfpga
+
+.PHONY: $(legacy_defconfigs)
+$(legacy_defconfigs):
+ $(Q)$(MAKE) -f $(srctree)/Makefile $($@-y)