From 964d6ad12717f32d436f77deaeed41fc7fcdf6a0 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Fri, 29 Jul 2016 14:10:55 -0400 Subject: reproducible_openwrt_common: fix OpenWrt log message in lede build Signed-off-by: Holger Levsen --- bin/reproducible_openwrt_common.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'bin') diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index a36fbc22..f287041b 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -121,8 +121,9 @@ openwrt_build_toolchain() { } openwrt_build() { - RUN=$1 - TARGET=$2 + TYPE=$1 + RUN=$2 + TARGET=$3 OPTIONS="-j $NUM_CPU IGNORE_ERRORS=ym BUILD_LOG=1" @@ -131,7 +132,7 @@ openwrt_build() { [ "$RUN" = "b2" ] && RUN="second" echo "=============================================================================" - echo "$(date -u) - Building OpenWrt ${OPENWRT_VERSION} ($TARGET) - $RUN build run." + echo "$(date -u) - Building $TYPE ${OPENWRT_VERSION} ($TARGET) - $RUN build run." echo "=============================================================================" ionice -c 3 $MAKE $OPTIONS target/compile ionice -c 3 $MAKE $OPTIONS package/cleanup @@ -163,7 +164,7 @@ build_two_times() { # FIRST BUILD export TZ="/usr/share/zoneinfo/Etc/GMT+12" MAKE=make - openwrt_build b1 "$TARGET" + openwrt_build "$TYPE" b1 "$TARGET" # get banner cat $(find build_dir/ -name banner | grep etc/banner|head -1) > $BANNER_HTML @@ -188,7 +189,7 @@ build_two_times() { # use allmost all cores for second build NEW_NUM_CPU=$(echo $NUM_CPU-1|bc) MAKE="linux64 --uname-2.6 make" - openwrt_build b2 "$TARGET" + openwrt_build "$TYPE" b2 "$TARGET" # save results in b2 [ "$TYPE" = "lede" ] && save_lede_results b2 -- cgit v1.2.3-54-g00ecf