diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2015-06-26 10:27:49 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-27 22:42:55 +0100 |
commit | c8042fdefb3507e1a3ea968a779fbb5a1cd3700f (patch) | |
tree | 47a0b53cad97a5b0f4ad418fb7aec71ebcb98a26 | |
parent | b428f88bc15e36f42204d5f584eabc3cc17175e8 (diff) | |
download | poky-c8042fdefb3507e1a3ea968a779fbb5a1cd3700f.tar.gz |
kmod: upgrade to 21
Upgrade kmod to 21.
Fix cross compilation problem.
(From OE-Core rev: 120983cea780b04a40320b810746ce102cb4cedf)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/kmod/kmod.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-kernel/kmod/kmod.inc b/meta/recipes-kernel/kmod/kmod.inc index 53574b6e39..e9aa67d56a 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 \ | |||
16 | " | 16 | " |
17 | inherit autotools gtk-doc | 17 | inherit autotools gtk-doc |
18 | 18 | ||
19 | SRCREV = "d9c71758595cad72c8278179eabf17017615f704" | 19 | SRCREV = "0d833715eaa65636dda2705b89359a1e0154dc58" |
20 | # Lookout for PV bump too when SRCREV is changed | 20 | # Lookout for PV bump too when SRCREV is changed |
21 | PV = "20+git${SRCPV}" | 21 | PV = "21+git${SRCPV}" |
22 | 22 | ||
23 | SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \ | 23 | SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git \ |
24 | file://depmod-search.conf \ | 24 | file://depmod-search.conf \ |
@@ -37,3 +37,7 @@ PACKAGECONFIG[logging] = " --enable-logging,--disable-logging" | |||
37 | do_configure_prepend () { | 37 | do_configure_prepend () { |
38 | gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make | 38 | gtkdocize --docdir ${S}/libkmod/docs || touch ${S}/libkmod/docs/gtk-doc.make |
39 | } | 39 | } |
40 | |||
41 | do_configure_append () { | ||
42 | sed -i 's#}libtool#}${TARGET_SYS}-libtool#' ${B}/doltlibtool | ||
43 | } | ||