From 48b8f915476fe86a4252c25c10fe1889d88c1366 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Fri, 1 May 2015 07:56:57 +0200 Subject: [PATCH] scripts/generate-kernel-patch: Add support for kernel versions >= 4.0.1 Signed-off-by: Bart Van Assche --- scripts/specialize-patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/specialize-patch b/scripts/specialize-patch index f0b0e79ce..b10179c6b 100755 --- a/scripts/specialize-patch +++ b/scripts/specialize-patch @@ -478,7 +478,7 @@ BEGIN { exit 1 } LINUX_VERSION_CODE = version_code(kernel_version) - if (LINUX_VERSION_CODE < 2*65536 || LINUX_VERSION_CODE > 4*65536) + if (LINUX_VERSION_CODE < 2*65536) { printf "Error: kernel version (%s) is out of range.\n", kernel_version exit 1