mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 02:05:57 +01:00
travis 8: ok that didnt help, now V=1
This commit is contained in:
@@ -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
|
||||
|
||||
7
run
7
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 \
|
||||
|
||||
Reference in New Issue
Block a user