diff options
author | Alexander Kanavin <alex@linutronix.de> | 2021-09-06 11:38:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-09-10 09:25:38 +0100 |
commit | 84e0778f0af3d0327a6a462bc88cc86f33cf47c6 (patch) | |
tree | 13b755ec0445c7edc609f829b183eff0d348eb04 /meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch | |
parent | d42e12a0bd6dd94e1f43d1bd363b2c18624fb925 (diff) | |
download | poky-84e0778f0af3d0327a6a462bc88cc86f33cf47c6.tar.gz |
lttng: update 2.12 -> 2.13.0
Drop 0001-tests-regression-disable-the-tools-live-tests.patch
(mass-disabling of ptests) and replace that with more targeted fixes:
- a patch that adds explicit sleeps where races due to too tight timings
were observed (not a proper fix; upstream needs to figure out how
to sync explicitly and reliably)
- LD_LIBRARY_PATH so that helper binaries are able to find their
custom libraries they're linked with (we strip rpath from them
for reproducibility)
- set pgrep location explicitly as it used unconditionally
on target, but auto-detected (incorrectly) on the host
- enable kmod as it is available in target images
- correct various missing scripts, binaries, and inhibit stripping
where that is expected.
License-Update: license info consolidated in LICENSE
(From OE-Core rev: 750d640f12b5c6804af51a67e23d4aca93564b79)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch b/meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch new file mode 100644 index 0000000000..2d61dfa525 --- /dev/null +++ b/meta/recipes-kernel/lttng/lttng-ust/0001-lttng-ust-common-link-with-liburcu-explicitly.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | From 2058584b7e87d6bd9d1765577766e0df7752232c Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex@linutronix.de> | ||
3 | Date: Sun, 5 Sep 2021 10:44:19 +0200 | ||
4 | Subject: [PATCH] lttng-ust-common: link with liburcu explicitly | ||
5 | |||
6 | Otherwise linking errors are seen on x86-32. | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | Signed-off-by: Alexander Kanavin <alex@linutronix.de> | ||
10 | --- | ||
11 | src/lib/lttng-ust-common/Makefile.am | 1 + | ||
12 | 1 file changed, 1 insertion(+) | ||
13 | |||
14 | diff --git a/src/lib/lttng-ust-common/Makefile.am b/src/lib/lttng-ust-common/Makefile.am | ||
15 | index caeea2b..30febf0 100644 | ||
16 | --- a/src/lib/lttng-ust-common/Makefile.am | ||
17 | +++ b/src/lib/lttng-ust-common/Makefile.am | ||
18 | @@ -15,6 +15,7 @@ liblttng_ust_common_la_SOURCES = \ | ||
19 | |||
20 | liblttng_ust_common_la_LIBADD = \ | ||
21 | $(top_builddir)/src/common/libcommon.la \ | ||
22 | + $(URCU_LIBS) \ | ||
23 | $(DL_LIBS) | ||
24 | |||
25 | liblttng_ust_common_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION) | ||