commit: 02b80009c952c48763130f160a4cd4f55940faae
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 7 20:14:25 2019 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 20:16:50 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b80009
kernel-2.eclass: add linux 5.x support
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
eclass/kernel-2.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass
index 8e595d581cf..48146b7284b 100644
--- a/eclass/kernel-2.eclass
+++ b/eclass/kernel-2.eclass
@@ -509,7 +509,7 @@ detect_version() {
# as of 12/5/2017, the rc patch is no longer offered as
a compressed
# file, and no longer is it mirrored on kernel.org
- if [[ ${KV_MAJOR} -ge 4 ]] && [[ ${KV_PATCH} -ge 12 ]];
then
+ if ver_test "${KV_MAJOR}.${KV_PATCH}" -ge "4.12"; then
KERNEL_URI="https://git.kernel.org/torvalds/p/v${KV_FULL}/v${OKV} ->
patch-${KV_FULL}.patch
${KERNEL_BASE_URI}/linux-${OKV}.tar.xz"
UNIPATCH_LIST_DEFAULT="${DISTDIR}/patch-${CKV//_/-}.patch"