From c0ef8a91f671f30acd92e2734144f7ddf1acda53 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 16 Jul 2018 21:56:11 -0700 Subject: recipes: Enforce ARM ISA just for arm arches <= armv5 armv7+ used thumb2 ISA and it compiles fine with thumb2 issues are only when using thumb1 ISA Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'meta/recipes-devtools') diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb index a8baca51e3..4bee3713a7 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb @@ -36,6 +36,8 @@ do_install () { install -m 0755 unsquashfs ${D}${sbindir}/ } -ARM_INSTRUCTION_SET = "arm" +ARM_INSTRUCTION_SET_armv4 = "arm" +ARM_INSTRUCTION_SET_armv5 = "arm" +ARM_INSTRUCTION_SET_armv6 = "arm" BBCLASSEXTEND = "native nativesdk" -- cgit 1.2.3-korg