From 7d4e8c9ec82f6eaa5d20bb46be4a9de4063af974 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 1 Nov 2018 13:38:02 +0100 Subject: turrix4x: use turris-build.conf and improve some script parts --- templates/turris4x.run | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'templates/turris4x.run') diff --git a/templates/turris4x.run b/templates/turris4x.run index b14821e..2842d08 100755 --- a/templates/turris4x.run +++ b/templates/turris4x.run @@ -22,30 +22,35 @@ else echo_stage "Prepare SDK" mkdir openwrt + ( cd openwrt - GIT_MIRROR="$TWORKSPACE/openwrt-git-mirror" \ - CCACHE_HOST_DIR="$TWORKSPACE/ccache-host" \ - CCACHE_TARGET_DIR="$WORKSPACE/ccache-target" \ - ../turris-build/compile_fw -a "$njobs" -t $BOARD -p $BRANCH repo_prepare + cat > .turris-build.conf <> feeds.conf ./scripts/feeds update personal -./scripts/feeds uninstall $(./scripts/feeds list -r personal | awk '{print $1}') +./scripts/feeds list -r personal | awk '{print $1}' | xargs ./scripts/feeds uninstall # Remove any package provided by personal feed ./scripts/feeds install -p personal -d y -f -a # TODO drop this and replace it with autopkg deployment using compile_fw cp ./feeds/personal/autopkg-*.mk include/ echo_stage "Compile packages from personal feed" -$make $(ls package/feeds/personal | sed -n 's/^\([^ ]*\).*$/package\/\1\/compile/p' | tr '\n' ' ') +find package/feeds/personal -maxdepth 1 -type d -printf 'package/%P/compile\\0' | \ + xargs --null $make echo_stage "Generate index and sign" $make package/index BUILD_KEY=~/openwrt-repo.key -- cgit v1.2.3