From: Michael Jeanson Date: Tue, 29 Aug 2023 14:49:14 +0000 (-0400) Subject: jjb: lttng-modules: refine range for elfcore.o patch X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=4d7942d1bce4243b959f79641ca209e86701b7ee;p=lttng-ci.git jjb: lttng-modules: refine range for elfcore.o patch Change-Id: I200aaf9ea444a4ad7c72ab24c3ca7962c4a7eb12 Signed-off-by: Michael Jeanson --- diff --git a/scripts/lttng-modules/param-build.sh b/scripts/lttng-modules/param-build.sh index 1d63084..eee5a57 100644 --- a/scripts/lttng-modules/param-build.sh +++ b/scripts/lttng-modules/param-build.sh @@ -424,10 +424,10 @@ index bbb1d225..8deeacbc 100644 EOF fi - if ( { vergte "${kversion}" "3.15"; } && { verlt "${kversion}" "4.4"; } ) || + if ( { vergte "${kversion}" "3.14"; } && { verlt "${kversion}" "4.4"; } ) || ( { vergte "${kversion}" "4.15"; } && { verlt "${kversion}" "4.17"; } ); then # While the original motivation of this patch is for fixing builds using - # clang, the same error occurs between linux >= 3.15 and < 4.4, and in + # clang, the same error occurs between linux >= 3.14 and < 4.4, and in # 4.15, 4.16. # # This patch only partially applies due to changes in kernel/Makefile,