diff options
author | He Zhe <zhe.he@windriver.com> | 2020-02-03 15:47:42 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-04 15:56:29 +0000 |
commit | ce39a9e35228d2de804e40b1d2b48289df5bf4d2 (patch) | |
tree | 5293a5aa865977fd6a36ebdc723342b5cffc0a5a /meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb | |
parent | 264f0975808bf228b4f84bd47886a5b8297cd6cf (diff) | |
download | poky-ce39a9e35228d2de804e40b1d2b48289df5bf4d2.tar.gz |
lttng-modules: update to 2.11.1
Fix build failure with kernel v5.5.
Remove patches as issues fixed upstream.
(From OE-Core rev: d313e49e1d1cee4bbc24650e60b8ec56700e9e1f)
Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb b/meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb new file mode 100644 index 0000000000..c833ff7009 --- /dev/null +++ b/meta/recipes-kernel/lttng/lttng-modules_2.11.1.bb | |||
@@ -0,0 +1,43 @@ | |||
1 | SECTION = "devel" | ||
2 | SUMMARY = "Linux Trace Toolkit KERNEL MODULE" | ||
3 | DESCRIPTION = "The lttng-modules 2.0 package contains the kernel tracer modules" | ||
4 | LICENSE = "LGPLv2.1 & GPLv2 & MIT" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3f882d431dc0f32f1f44c0707aa41128" | ||
6 | |||
7 | inherit module | ||
8 | |||
9 | COMPATIBLE_HOST = '(x86_64|i.86|powerpc|aarch64|mips|nios2|arm|riscv).*-linux' | ||
10 | |||
11 | SRC_URI = "https://lttng.org/files/${BPN}/${BPN}-${PV}.tar.bz2 \ | ||
12 | file://Makefile-Do-not-fail-if-CONFIG_TRACEPOINTS-is-not-en.patch \ | ||
13 | file://BUILD_RUNTIME_BUG_ON-vs-gcc7.patch \ | ||
14 | " | ||
15 | |||
16 | SRC_URI[md5sum] = "0d964723c8765b39835e5e6efc60a604" | ||
17 | SRC_URI[sha256sum] = "d3e5648937e59dee983ef844f9316c55e9961f9dc8515b9260c473bbb70696c1" | ||
18 | |||
19 | export INSTALL_MOD_DIR="kernel/lttng-modules" | ||
20 | |||
21 | EXTRA_OEMAKE += "KERNELDIR='${STAGING_KERNEL_DIR}'" | ||
22 | |||
23 | do_install_append() { | ||
24 | # Delete empty directories to avoid QA failures if no modules were built | ||
25 | find ${D}/${nonarch_base_libdir} -depth -type d -empty -exec rmdir {} \; | ||
26 | } | ||
27 | |||
28 | python do_package_prepend() { | ||
29 | if not os.path.exists(os.path.join(d.getVar('D'), d.getVar('nonarch_base_libdir')[1:], 'modules')): | ||
30 | bb.warn("%s: no modules were created; this may be due to CONFIG_TRACEPOINTS not being enabled in your kernel." % d.getVar('PN')) | ||
31 | } | ||
32 | |||
33 | BBCLASSEXTEND = "devupstream:target" | ||
34 | LIC_FILES_CHKSUM_class-devupstream = "file://LICENSE;md5=3f882d431dc0f32f1f44c0707aa41128" | ||
35 | DEFAULT_PREFERENCE_class-devupstream = "-1" | ||
36 | SRC_URI_class-devupstream = "git://git.lttng.org/lttng-modules;branch=stable-2.11 \ | ||
37 | file://Makefile-Do-not-fail-if-CONFIG_TRACEPOINTS-is-not-en.patch \ | ||
38 | file://BUILD_RUNTIME_BUG_ON-vs-gcc7.patch \ | ||
39 | " | ||
40 | SRCREV_class-devupstream = "6ad0e68b43c3e52fcb3d47c4d823a7b84aeb443a" | ||
41 | PV_class-devupstream = "2.11.1+git${SRCPV}" | ||
42 | S_class-devupstream = "${WORKDIR}/git" | ||
43 | SRCREV_FORMAT ?= "lttng_git" | ||