From 439bdd51e512a2bd4f868bd454d7c74d98932e65 Mon Sep 17 00:00:00 2001 From: Robert Jacob Date: Sat, 8 Jul 2017 22:41:37 +0200 Subject: [PATCH] Change order of builds. --- build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index f871e04..391561d 100755 --- a/build.sh +++ b/build.sh @@ -2,9 +2,8 @@ set -euo errexit platforms=' - CONFIG_TARGET_arm64=y - CONFIG_TARGET_ath25=y CONFIG_TARGET_ar71xx=y + CONFIG_TARGET_ath25=y CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2708=y CONFIG_TARGET_brcm2708=y\nCONFIG_TARGET_brcm2708_bcm2709=y CONFIG_TARGET_bcm53xx=y @@ -15,6 +14,7 @@ platforms=' CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_mt7628=y CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt3883=y CONFIG_TARGET_ramips=y\nCONFIG_TARGET_ramips_rt288x=y + CONFIG_TARGET_arm64=y ' for platform in $platforms; do @@ -31,5 +31,4 @@ for platform in $platforms; do # Build image make defconfig make -j4 - exit 1 done