From 337c7eeb4a49da72cea9ba4f51be5ceb24641a10 Mon Sep 17 00:00:00 2001 From: Andrea Righi Date: Wed, 26 Apr 2023 11:20:49 +0200 Subject: [PATCH] UBUNTU: [Packaging] ignore KBUILD_VERBOSE in arch-has-odm-enabled.sh Recent kernels don't seem to set KBUILD_VERBOSE anymore, also checking this variable to determine if we need to enable/disable Ubuntu ODM drivers does not make any sense, so simply disable this check. Signed-off-by: Andrea Righi --- debian/scripts/misc/arch-has-odm-enabled.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/debian/scripts/misc/arch-has-odm-enabled.sh b/debian/scripts/misc/arch-has-odm-enabled.sh index 23fe34a868a7..b812cc091983 100755 --- a/debian/scripts/misc/arch-has-odm-enabled.sh +++ b/debian/scripts/misc/arch-has-odm-enabled.sh @@ -3,10 +3,6 @@ set -e if [ "$1" = "" ]; then - # This would be set doing the actual kernel build - if [ "$KBUILD_VERBOSE" = "" ]; then - return 1 - fi case $ARCH in x86) ARCH=amd64;; *) ;;