mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-28 12:34:26 +01:00
travis 8: ok that didnt help, now V=1
This commit is contained in:
@@ -8,4 +8,4 @@ install: |
|
|||||||
|
|
||||||
script: |
|
script: |
|
||||||
cd "$TRAVIS_BUILD_DIR"
|
cd "$TRAVIS_BUILD_DIR"
|
||||||
./run -e 'init=/poweroff.out' -j16 -n
|
./run -e 'init=/poweroff.out' -j 16 -n -v
|
||||||
|
|||||||
7
run
7
run
@@ -4,7 +4,8 @@ arch='x86_64'
|
|||||||
extra_targets=''
|
extra_targets=''
|
||||||
j="$(($(nproc) - 2))"
|
j="$(($(nproc) - 2))"
|
||||||
x11=false
|
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
|
case "$OPT" in
|
||||||
'a')
|
'a')
|
||||||
arch="$OPTARG"
|
arch="$OPTARG"
|
||||||
@@ -18,6 +19,9 @@ while getopts a:j:t: OPT > /dev/null 2>&1; do
|
|||||||
'x')
|
'x')
|
||||||
x11=true
|
x11=true
|
||||||
;;
|
;;
|
||||||
|
'v')
|
||||||
|
v=1
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
case "$arch" in
|
case "$arch" in
|
||||||
@@ -64,6 +68,7 @@ time \
|
|||||||
O="$outdir" \
|
O="$outdir" \
|
||||||
BR2_JLEVEL="$j" \
|
BR2_JLEVEL="$j" \
|
||||||
HOST_QEMU_OPTS="--enable-debug --enable-sdl --extra-cflags='-DDEBUG_PL061=1' --with-sdlabi=2.0 --enable-trace-backends=simple" \
|
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 \
|
kernel_module-rebuild \
|
||||||
$extra_targets \
|
$extra_targets \
|
||||||
all \
|
all \
|
||||||
|
|||||||
Reference in New Issue
Block a user