summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/test_kernel_git7
1 files changed, 6 insertions, 1 deletions
diff --git a/build_tools/test_kernel_git b/build_tools/test_kernel_git
index 1d6e514..2508b58 100755
--- a/build_tools/test_kernel_git
+++ b/build_tools/test_kernel_git
@@ -58,7 +58,12 @@ case "$command" in
set_var kernel_ver "$kernel_ver"
;;
test)
- make KSRC="$kernel_dir" KVERS=$kernel_ver
+ # you can pass extra parameters to the make command in
+ # two ways:
+ # 1. Set th value of MAKE_PARAMS in git_test.conf .
+ # 2. Any extra command-line parameter.
+ shift
+ make KSRC="$kernel_dir" KVERS=$kernel_ver $MAKE_PARAMS "$@"
;;
*)
echo "$0: no such command $command. Aborting."