Skip to content

Commit

Permalink
kernel_patch_verify: Drop headers_check
Browse files Browse the repository at this point in the history
Since v5.5 kernel headers_check has been a no-op and dropped in v5.15
kernel. Drop it now (assume that at least all LTS kernels have moved
on).

Signed-off-by: Nishanth Menon <[email protected]>
  • Loading branch information
nmenon committed Apr 23, 2024
1 parent 64e28a5 commit 9f3e23c
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions kernel_patch_verify
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,6 @@ btest_include() {
kmake_single includecheck 1>&2
}

btest_headers_check() {
kmake_single headers_check 1>&2
}

btest_kbuild() {
if [ "$UBOOT_TESTING" -eq 0 ]; then
kmake C=1 "$KP_TARGETS" "$MODULES" > /dev/null
Expand Down Expand Up @@ -348,7 +344,7 @@ tests_start() {
if [ -n "$COMPLETE_TESTS" ]; then
TESTS_ALL_SET="$TESTS_ALL_SET build_all"
if [ $UBOOT_TESTING -eq 0 ]; then
TESTS_ALL1_SET="btest_stack btest_namespace btest_include btest_headers_check"
TESTS_ALL1_SET="btest_stack btest_namespace btest_include"
fi
fi
echo "Sequential tests to run: $TESTS_ALL_SET"
Expand Down

0 comments on commit 9f3e23c

Please sign in to comment.