diff options
| author | Markus Volk <f_l_k@t-online.de> | 2025-12-26 15:10:47 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-12-26 17:36:58 -0800 |
| commit | 922ca44f5e2314979d0cf0577a1fd13dd59f85d3 (patch) | |
| tree | dfe37e818d81ab1c0a79fb1d8b6c5265ac1753b2 /meta-oe/recipes-support/rtkit/rtkit_0.14.bb | |
| parent | 0d52ba2fed303bef6d99f978fe2f4e96e8f7eb2d (diff) | |
| download | meta-openembedded-922ca44f5e2314979d0cf0577a1fd13dd59f85d3.tar.gz | |
rtkit: update 0.13 -> 0.14
- add HOMEPAGE
- update SRC_URI
Release notes
Fix a bug that caused all RT privileges to sometimes be dropped on resume from suspend (#13 (closed))
Drop autotools build system
Add an rtkit_make_realtime_simple() with no arguments
Drop default log level to reduce log spam
Rename priority parameter of MakeThreadHighPriority to nice_level (does not change API)
Implement org.freedesktop.DBus.Properties.GetAll
Add a sysusers config
Correctly specify client license as MIT
A number of documentation and build cleanups
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/rtkit/rtkit_0.14.bb')
| -rw-r--r-- | meta-oe/recipes-support/rtkit/rtkit_0.14.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/rtkit/rtkit_0.14.bb b/meta-oe/recipes-support/rtkit/rtkit_0.14.bb new file mode 100644 index 0000000000..e63c786c95 --- /dev/null +++ b/meta-oe/recipes-support/rtkit/rtkit_0.14.bb | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | DESCRIPTION = "REALTIMEKIT Realtime Policy and Watchdog Daemon" | ||
| 2 | HOMEPAGE = "https://gitlab.freedesktop.org/pipewire/rtkit" | ||
| 3 | LICENSE = "GPL-3.0-only & BSD-3-Clause" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a8e768468b658b3ed44971b53d4a6716" | ||
| 5 | |||
| 6 | SRC_URI = "git://gitlab.freedesktop.org/pipewire/rtkit.git;protocol=https;branch=master" | ||
| 7 | |||
| 8 | SRCREV = "c52db0a9849908613ab8775b519834671b7bec8b" | ||
| 9 | |||
| 10 | inherit meson pkgconfig features_check useradd | ||
| 11 | |||
| 12 | REQUIRED_DISTRO_FEATURES = "polkit" | ||
| 13 | |||
| 14 | DEPENDS = "dbus libcap polkit xxd-native" | ||
| 15 | |||
| 16 | PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" | ||
| 17 | PACKAGECONFIG[systemd] = ",,systemd" | ||
| 18 | |||
| 19 | USERADD_PACKAGES = "${PN}" | ||
| 20 | USERADD_PARAM:${PN} = "--system --no-create-home --user-group --shell /bin/nologin rtkit" | ||
| 21 | |||
| 22 | FILES:${PN} += "${libdir} ${datadir} ${systemd_system_unitdir}" | ||
| 23 | |||
