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 ptest part of kmod is removed because new version of kmod port all tests to
use modules from module-playground instead of copying prebuilt modules to the
repository. So, we cannot use ptest as before. Remove it so that kmod can build
successfully.

(From OE-Core rev: f80d136bdd578468035a88125fa1b84973fd912b)

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Chen Qi 2015-04-13 09:55:04 +08:00 committed by Richard Purdie
parent 710b01e01e
commit 7ad628e0ef
5 changed files with 57 additions and 40 deletions

View File

@ -14,16 +14,14 @@ DEPENDS += "pkgconfig-native"
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
file://libkmod/COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343 \
"
inherit autotools gtk-doc ptest
inherit autotools gtk-doc
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 \
file://run-ptest \
file://ptest.patch \
file://avoid_parallel_tests.patch \
file://fix-O_CLOEXEC.patch \
"

View File

@ -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 <Qi.Chen@windriver.com>
---
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

View File

@ -1,7 +1,4 @@
From 4b68940b1ed46c54a5a0bdf6bb9d4599bc64e6f4 Mon Sep 17 00:00:00 2001
From: Chen Qi <Qi.Chen@windriver.com>
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 <Qi.Chen@windriver.com>
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 <endian.h>
@ -28,15 +25,15 @@ index 2b976a5..ffe58c2 100644
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
@@ -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

View File

@ -7,15 +7,23 @@ serial-tests is now required
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
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

View File

@ -33,27 +33,12 @@ do_install_append () {
# install depmod.d file for search/ dir
install -Dm644 "${WORKDIR}/depmod-search.conf" "${D}${base_libdir}/depmod.d/search.conf"
if ${@base_contains('DISTRO_FEATURES', 'ptest', 'true', 'false', d)}; then
find testsuite -name *.ko -exec tar rf testmodule.tar {} \;
find testsuite -name *.ko -exec rm -f {} \;
fi
}
do_compile_prepend() {
sed -i 's/ac_pwd=/#ac_pwd=/' config.status ; sed -i "/#ac_pwd=/a\ac_pwd='.'" config.status
}
do_compile_ptest () {
oe_runmake buildtest-TESTS rootfs
}
do_install_ptest () {
install testmodule.tar ${D}${PTEST_PATH}
}
INSANE_SKIP_${PN}-ptest = "arch"
inherit update-alternatives
ALTERNATIVE_PRIORITY = "60"