diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2019-05-28 10:21:14 -0700 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2019-05-30 12:12:37 +0200 |
commit | aff084adf339cf9fd966ce8e2b1173b3ff51fd48 (patch) | |
tree | 092b8013cd7f8ed13755f898ad129680c3c715b4 /target/linux/at91/image/Makefile | |
parent | 28e00650a5756cab9405198392e30ae545f2ae4c (diff) | |
download | upstream-aff084adf339cf9fd966ce8e2b1173b3ff51fd48.tar.gz upstream-aff084adf339cf9fd966ce8e2b1173b3ff51fd48.tar.bz2 upstream-aff084adf339cf9fd966ce8e2b1173b3ff51fd48.zip |
at91: Merge SAMA5 subtargets
Instead of maintaining 3 very similar subtargets merge them into one.
This does not use the Arm NEON extension any more, because the SAMA5D3
does not support NEON.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Tested-by: Sandeep Sheriker <sandeepsheriker.mallikarjun@microchip.com>
Diffstat (limited to 'target/linux/at91/image/Makefile')
-rw-r--r-- | target/linux/at91/image/Makefile | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index 49d93aa97d..f4d942b682 100644 --- a/target/linux/at91/image/Makefile +++ b/target/linux/at91/image/Makefile @@ -16,14 +16,8 @@ endef ifeq ($(SUBTARGET),legacy) include ./legacy.mk endif -ifeq ($(SUBTARGET),sama5d2) -include ./sama5d2.mk -endif -ifeq ($(SUBTARGET),sama5d3) -include ./sama5d3.mk -endif -ifeq ($(SUBTARGET),sama5d4) -include ./sama5d4.mk +ifeq ($(SUBTARGET),sama5) +include ./sama5.mk endif AT91_SD_BOOT_PARTSIZE:=64 |