From 67c0c5978d5419c6dc5908c912ade316134c4f34 Mon Sep 17 00:00:00 2001 From: Yangbo Lu Date: Tue, 10 Oct 2017 19:17:37 +0800 Subject: [PATCH] layerscape: only support 64-bit for ls1088ardb/ls2088ardb This is no requirement and plan to support 32-bit for ls1088ardb and ls2088ardb. Current 32-bit firmware for them couldn't work, so only keep 64-bit support for these two boards in menuconfig. Signed-off-by: Yangbo Lu --- target/linux/layerscape/image/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/linux/layerscape/image/Makefile b/target/linux/layerscape/image/Makefile index 92206a364f..5577b16238 100644 --- a/target/linux/layerscape/image/Makefile +++ b/target/linux/layerscape/image/Makefile @@ -87,6 +87,7 @@ define Device/ls1012ardb endef TARGET_DEVICES += ls1012ardb +ifeq ($(SUBTARGET),armv8_64b) define Device/ls1088ardb DEVICE_TITLE := ls1088ardb-$(SUBTARGET) DEVICE_PACKAGES += rcw-layerscape-ls1088ardb uboot-layerscape-$(SUBTARGET)-ls1088ardb mc-binary-ls1088ardb @@ -106,5 +107,6 @@ define Device/ls2088ardb append-rootfs | pad-rootfs | check-size 51380225 endef TARGET_DEVICES += ls2088ardb +endif $(eval $(call BuildImage)) -- 2.30.2