diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-06-07 13:11:15 +0200 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-06-11 01:44:13 +0200 |
commit | bb39fea11aae2888e6a0129055de21995da92073 (patch) | |
tree | 5dcca668bad0414fc458db065424b4ecc456e20a /target/linux/mvebu | |
parent | 108df3eabbb4dd93ff3c616c9455d69daaa98b49 (diff) | |
download | upstream-bb39fea11aae2888e6a0129055de21995da92073.tar.gz upstream-bb39fea11aae2888e6a0129055de21995da92073.tar.bz2 upstream-bb39fea11aae2888e6a0129055de21995da92073.zip |
treewide: simplify inclusion of subtarget image files
Many target use a repetitive if-include scheme for their subtarget
image files, though their names are consistent with the subtarget
names.
This patch removes these redundant conditions and just uses the
variable for the include where the target setup allows it.
For sunxi, this includes a trivial rename of the subtarget image
Makefiles.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/mvebu')
-rw-r--r-- | target/linux/mvebu/image/Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index 3a47878069..cbf34c1bc8 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -138,16 +138,6 @@ define Device/NAND-512K PAGESIZE := 4096 endef -ifeq ($(SUBTARGET),cortexa9) -include cortexa9.mk -endif - -ifeq ($(SUBTARGET),cortexa53) -include cortexa53.mk -endif - -ifeq ($(SUBTARGET),cortexa72) -include cortexa72.mk -endif +include $(SUBTARGET).mk $(eval $(call BuildImage)) |