From: Tomasz Maciej Nowak Date: Fri, 31 Jan 2020 15:46:14 +0000 (+0100) Subject: mvebu: image: align subtargets makefile names X-Git-Tag: v21.02.0-rc1~3885 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87b14bc6c289e7e80052b344c0f0c35e95ced267;p=thirdparty%2Fopenwrt.git mvebu: image: align subtargets makefile names Align subtargets makefiles names to actual subtargets. Signed-off-by: Tomasz Maciej Nowak Acked-by: Adrian Schmutzler --- diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index c08b113b36f..aeabffdca2c 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -118,15 +118,15 @@ define Device/NAND-512K endef ifeq ($(SUBTARGET),cortexa9) -include cortex-a9.mk +include cortexa9.mk endif ifeq ($(SUBTARGET),cortexa53) -include cortex-a53.mk +include cortexa53.mk endif ifeq ($(SUBTARGET),cortexa72) -include cortex-a72.mk +include cortexa72.mk endif $(eval $(call BuildImage)) diff --git a/target/linux/mvebu/image/cortex-a53.mk b/target/linux/mvebu/image/cortexa53.mk similarity index 100% rename from target/linux/mvebu/image/cortex-a53.mk rename to target/linux/mvebu/image/cortexa53.mk diff --git a/target/linux/mvebu/image/cortex-a72.mk b/target/linux/mvebu/image/cortexa72.mk similarity index 100% rename from target/linux/mvebu/image/cortex-a72.mk rename to target/linux/mvebu/image/cortexa72.mk diff --git a/target/linux/mvebu/image/cortex-a9.mk b/target/linux/mvebu/image/cortexa9.mk similarity index 100% rename from target/linux/mvebu/image/cortex-a9.mk rename to target/linux/mvebu/image/cortexa9.mk