From afb2d27da6ef793e7767b675f113998f83510047 Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Thu, 2 Nov 2017 15:57:28 +0000 Subject: [PATCH] travis 8: ok that didnt help, now V=1 --- .travis.yml | 2 +- run | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3f1fce1..3383e4f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,4 @@ install: | script: | cd "$TRAVIS_BUILD_DIR" - ./run -e 'init=/poweroff.out' -j16 -n + ./run -e 'init=/poweroff.out' -j 16 -n -v diff --git a/run b/run index e284ae0..117553f 100755 --- a/run +++ b/run @@ -4,7 +4,8 @@ arch='x86_64' extra_targets='' j="$(($(nproc) - 2))" x11=false -while getopts a:j:t: OPT > /dev/null 2>&1; do +v=0 +while getopts a:j:t:v OPT > /dev/null 2>&1; do case "$OPT" in 'a') arch="$OPTARG" @@ -18,6 +19,9 @@ while getopts a:j:t: OPT > /dev/null 2>&1; do 'x') x11=true ;; + 'v') + v=1 + ;; esac done case "$arch" in @@ -64,6 +68,7 @@ time \ O="$outdir" \ BR2_JLEVEL="$j" \ HOST_QEMU_OPTS="--enable-debug --enable-sdl --extra-cflags='-DDEBUG_PL061=1' --with-sdlabi=2.0 --enable-trace-backends=simple" \ + V="$v" \ kernel_module-rebuild \ $extra_targets \ all \