mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
a6ea77f3b2
Update from 2.13.9 to 2.15.0 (skips 2.14.x stable series). Highlights of the 2.14/2.15 series: - C++ header compatibility improvements (tracepoint API usable from C++) - liblttng-ust-tracepoint split into its own shared library - Add liblttng-ust-fd, liblttng-ust-fork helper libraries - Ring buffer API cleanup and modernisation - Drop internal libcompat layer Patch update: - 100-no-tests.patch: adjust hunk offset from line 7 to line 9; the tests/ entry in SUBDIRS moved down two lines in Makefile.am Reference: https://lttng.org/files/lttng-ust/ Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
18 lines
362 B
Bash
18 lines
362 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
lttng-ust)
|
|
ls /usr/lib/liblttng-ust.so.* >/dev/null 2>&1 || {
|
|
echo "FAIL: liblttng-ust.so not found in /usr/lib"
|
|
exit 1
|
|
}
|
|
echo "liblttng-ust: OK"
|
|
|
|
ls /usr/lib/liblttng-ust-tracepoint.so.* >/dev/null 2>&1 || {
|
|
echo "FAIL: liblttng-ust-tracepoint.so not found in /usr/lib"
|
|
exit 1
|
|
}
|
|
echo "liblttng-ust-tracepoint: OK"
|
|
;;
|
|
esac
|