travis 8: ok that didnt help, now V=1

This commit is contained in:
Ciro Santilli
2017-11-02 15:57:28 +00:00
parent 0f52efe935
commit afb2d27da6
2 changed files with 7 additions and 2 deletions

7
run
View File

@@ -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 \