diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-07-08 18:25:05 +0000 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-07-08 18:28:17 +0000 |
commit | 7918af5e635629a70ddb97a3ecfb94e8c7548d0c (patch) | |
tree | 949143fa92ea185dbf2d2dd41a0501050fb1d079 /scripts | |
parent | 30862c32cb5b1fef1f678791220de68d5ef50a0c (diff) |
aglsetup script: fix interactive execution of the script generated from fragments
This fixes the problem with Qualcomm boards where EULA approval is required.
See: https://lists.linuxfoundation.org/pipermail/automotive-discussions/2016-July/002279.html
Change-Id: Ifad216bf559a246d6883e7c2828dacd7bd225075
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/.aglsetup_genconfig.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/.aglsetup_genconfig.bash b/scripts/.aglsetup_genconfig.bash index 6be95d0fa..c6e5a36a1 100755 --- a/scripts/.aglsetup_genconfig.bash +++ b/scripts/.aglsetup_genconfig.bash @@ -340,7 +340,7 @@ EOF append_fragment $BUILDDIR/conf/setup.sh "" "echo '--- end of setup script'" infon " Executing setup script ... " - execute_setup $BUILDDIR/conf/setup.sh >$BUILDDIR/conf/setup.log 2>&1 \ + execute_setup $BUILDDIR/conf/setup.sh 2>&1 | tee $BUILDDIR/conf/setup.log \ && { info "OK" [[ $VERBOSE == 1 ]] && dump_log $BUILDDIR/conf/setup.log |