From 5e2e7bca827f0d5829a1813b800c6552dee8f2d3 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 20 Dec 2020 02:22:47 +0000 Subject: [PATCH] scripts/run-regression-tests: More Linux kernel v5.10 fixes git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@9218 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scripts/run-regression-tests | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/run-regression-tests b/scripts/run-regression-tests index e88d07fbe..5716503a7 100755 --- a/scripts/run-regression-tests +++ b/scripts/run-regression-tests @@ -409,7 +409,7 @@ function run_sparse { echo "Running sparse on the patched kernel in $* ..." if (cd "${outputdir}/linux-$k" \ - && make -s prepare \ + && make -s modules_prepare \ && make -s scripts \ && if grep -q '^CONFIG_PPC=y$' .config; then LC_ALL=C make -k M=arch/powerpc/lib; fi \ && for subdir; do @@ -450,7 +450,7 @@ function run_smatch { if (cd "${outputdir}/linux-$k" && for c in $disable; do sed -i.tmp "s/^$c=y\$/$c=n/" .config; done && make -s oldconfig "${outputfile}" @@ -499,7 +499,7 @@ function run_namespacecheck { echo "Running namespacecheck on the patched $1 kernel ..." ( cd "${outputdir}/linux-$1" \ - && make -s prepare \ + && make -s modules_prepare \ && make -s scripts \ && LC_ALL=C make -k namespacecheck ) &> "${outputfile}" @@ -516,7 +516,7 @@ function run_headers_check { echo "Running headers check on the patched $1 kernel ..." ( cd "${outputdir}/linux-$1" \ - && make -s prepare \ + && make -s modules_prepare \ && make -s scripts \ && LC_ALL=C make -k headers_check ) &> "${outputfile}" @@ -536,7 +536,7 @@ function run_make_htmldocs { echo "Generating HTML documentation for the patched $1 kernel ..." ( cd "${outputdir}/linux-$1" \ - && make -s prepare \ + && make -s modules_prepare \ && make -s scripts \ && LC_ALL=C make -k htmldocs ) &> "${outputfile}"