diff options
author | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 14:11:46 +0200 |
---|---|---|
committer | Karel Kočí <karel.koci@nic.cz> | 2018-08-27 14:11:46 +0200 |
commit | 331499a7eca05fde81266104bb71f834bb50e66d (patch) | |
tree | accc00db90b8eef1b09d0bdbe2b66d035a43d310 /templates | |
parent | e7c1cd6f4320a1fe7949aead660c1128a703c1b0 (diff) | |
download | laminar-cnf-331499a7eca05fde81266104bb71f834bb50e66d.tar.gz laminar-cnf-331499a7eca05fde81266104bb71f834bb50e66d.tar.bz2 laminar-cnf-331499a7eca05fde81266104bb71f834bb50e66d.zip |
turris4x: additional tweaks
Diffstat (limited to 'templates')
-rwxr-xr-x | templates/turris4x.run | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/turris4x.run b/templates/turris4x.run index f4a61b5..323f4c9 100755 --- a/templates/turris4x.run +++ b/templates/turris4x.run @@ -18,15 +18,15 @@ echo ../turris-build/compile_fw -t $BOARD -p $BRANCH repo_prepare ../turris-build/compile_fw -t $BOARD -p $BRANCH repo_prepare echo_stage "Add our repository as feed" -echo "src-git personal $WORKSPACE/pkgs" >> feeds.conf +echo "src-git personal file://$WORKSPACE/pkgs" >> feeds.conf ./scripts/feeds update personal ./scripts/feeds install -p personal -d y -f -a echo_stage "Compile tools" -make -j4 tools/compile toolchain/compile +make -j4 IS_TTY=1 BUILD_LOG=1 tools/compile toolchain/compile echo_stage "Compile packages from our feed" -make -j4 $(./scripts/feeds list -r personal | sed -n 's/^\([^ ]*\).*$/package\/\1\/compile/p' | tr '\n' ' ') +make -j4 IS_TTY=1 BUILD_LOG=1 $(./scripts/feeds list -r personal | sed -n 's/^\([^ ]*\).*$/package\/\1\/compile/p' | tr '\n' ' ') # TODO is there Packages index? Where the hack it is? #echo_stage "Sign" |