From f59ab3d057c5535b83735ed997f9bcc39fa0b661 Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Wed, 8 Apr 2015 11:25:34 +0800 Subject: kmod: upgrade to 20 The following patches are rebased. -- Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch -- avoid_parallel_tests.patch The following patch is added to solve a parallel build bug. -- 0001-Makefile.am-fix-parallel-build-problem.patch Signed-off-by: Chen Qi --- meta/recipes-kernel/kmod/kmod.inc | 5 ++-- ...01-Makefile.am-fix-parallel-build-problem.patch | 29 +++++++++++++++++++++ ...alling-bswap_-instead-of-htobe-and-be-toh.patch | 15 +++++------ .../kmod/kmod/avoid_parallel_tests.patch | 30 ++++++++++++++-------- 4 files changed, 57 insertions(+), 22 deletions(-) create mode 100644 meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc index 899881e1fb..dd2267ecb6 100644 --- a/meta/recipes-kernel/kmod/kmod.inc +++ b/meta/recipes-kernel/kmod/kmod.inc @@ -16,9 +16,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \ " inherit autotools gtk-doc ptest -SRCREV = "fd56638aed3fe147015bfa10ed4a5f7491303cb4" +SRCREV = "d9c71758595cad72c8278179eabf17017615f704" # Lookout for PV bump too when SRCREV is changed -PV = "19+git${SRCPV}" +PV = "20+git${SRCPV}" SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \ file://depmod-search.conf \ @@ -26,6 +26,7 @@ SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \ file://ptest.patch \ file://avoid_parallel_tests.patch \ file://fix-O_CLOEXEC.patch \ + file://0001-Makefile.am-fix-parallel-build-problem.patch \ " S = "${WORKDIR}/git" diff --git a/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch b/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch new file mode 100644 index 0000000000..49b0209029 --- /dev/null +++ b/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch @@ -0,0 +1,29 @@ +Upstream-Status: Pending + +Subject: Makefile.am: fix parallel build problem + +Fix parallel build problem to avoid errors like below. + + install: cannot stat 'testsuite/module-playground/mod-fake-cciss.ko': No such file or directory + +Signed-off-by: Chen Qi +--- + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 9457655..d5b02eb 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -237,7 +237,7 @@ rootfs: build-module-playground + + .PHONY: rootfs build-playground + +-$(ROOTFS): $(ROOTFS_PRISTINE) ++$(ROOTFS): $(ROOTFS_PRISTINE) build-module-playground + $(CREATE_ROOTFS) + + TESTSUITE_OVERRIDE_LIBS = \ +-- +1.9.1 + diff --git a/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch b/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch index 7c0a27510b..b722183b68 100644 --- a/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch +++ b/meta/recipes-kernel/kmod/kmod/Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch @@ -1,7 +1,4 @@ -From 4b68940b1ed46c54a5a0bdf6bb9d4599bc64e6f4 Mon Sep 17 00:00:00 2001 -From: Chen Qi -Date: Wed, 24 Dec 2014 10:12:40 +0800 -Subject: [PATCH] Change to calling bswap_* instead of htobe* and be*toh +Subject: Change to calling bswap_* instead of htobe* and be*toh We can't use htobe* and be*toh functions because they are not available on older versions of glibc, For example, shipped on Centos 5.5. @@ -17,10 +14,10 @@ Signed-off-by: Chen Qi 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libkmod/libkmod-signature.c b/libkmod/libkmod-signature.c -index 2b976a5..ffe58c2 100644 +index 6fc06fc..912185a 100644 --- a/libkmod/libkmod-signature.c +++ b/libkmod/libkmod-signature.c -@@ -19,6 +19,7 @@ +@@ -18,6 +18,7 @@ */ #include @@ -28,15 +25,15 @@ index 2b976a5..ffe58c2 100644 #include #include #include -@@ -124,7 +125,7 @@ bool kmod_module_signature_info(const struct kmod_file *file, struct kmod_signat +@@ -127,7 +128,7 @@ bool kmod_module_signature_info(const struct kmod_file *file, struct kmod_signat modsig->hash >= PKEY_HASH__LAST || modsig->id_type >= PKEY_ID_TYPE__LAST) return false; - sig_len = be32toh(get_unaligned(&modsig->sig_len)); + sig_len = bswap_32(get_unaligned(&modsig->sig_len)); - if (size < (off_t)(modsig->signer_len + modsig->key_id_len + sig_len)) + if (sig_len == 0 || + size < (int64_t)(modsig->signer_len + modsig->key_id_len + sig_len)) return false; - -- 1.9.1 diff --git a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch index 4c37d44836..feafcb9b7c 100644 --- a/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch +++ b/meta/recipes-kernel/kmod/kmod/avoid_parallel_tests.patch @@ -7,15 +7,23 @@ serial-tests is now required Signed-off-by: Tudor Florea Upstream-Status: Inappropriate (disable feature incompatible with ptest) -diff -ruN a/configure.ac b/configure.ac ---- a/configure.ac 2013-09-02 15:05:18.662366800 +0200 -+++ b/configure.ac 2013-11-28 09:26:49.557066764 +0200 -@@ -8,7 +8,7 @@ - AC_CONFIG_SRCDIR([libkmod/libkmod.c]) - AC_CONFIG_AUX_DIR([build-aux]) - AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules -- tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests]) -+ tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests]) - AC_PROG_CC_STDC - AC_USE_SYSTEM_EXTENSIONS +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index eb0f9d1..a539968 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS AC_SYS_LARGEFILE + AC_PREFIX_DEFAULT([/usr]) + AM_MAINTAINER_MODE([enable]) +-AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests]) ++AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests]) + AM_SILENT_RULES([yes]) + LT_INIT([disable-static pic-only]) + +-- +1.9.1 + -- cgit 1.2.3-korg