summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/systemd.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-03-10 02:07:03 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-14 17:10:00 +0000
commit7e133f89f605ffcb25e8b538145f19e3c27444ce (patch)
treeda2b2690746f587f56d6d8a62ba48810ad97e302 /meta/classes-recipe/systemd.bbclass
parent6690023f2848fc9bd407c9ce22b78c29270a16f0 (diff)
downloadpoky-7e133f89f605ffcb25e8b538145f19e3c27444ce.tar.gz
systemd.bbclass: Add /usr/lib/systemd to searchpaths as well
Some packages like lirc places its unit files into $systemd_user_unitdir and also uses them in SYSTEMD_SERVICE list in recipe. This fails in do_package ERROR: Didn't find service unit 'lircmd.service', specified in SYSTEMD_SERVICE:lirc. here lircmd.service is installed in /usr/lib/systemd/system/lircmd.service (From OE-Core rev: 12808a4159835b67d8d53d32bc9135811701a779) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/systemd.bbclass')
-rw-r--r--meta/classes-recipe/systemd.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes-recipe/systemd.bbclass b/meta/classes-recipe/systemd.bbclass
index f9c92e6c2a..9a16babe43 100644
--- a/meta/classes-recipe/systemd.bbclass
+++ b/meta/classes-recipe/systemd.bbclass
@@ -152,6 +152,7 @@ python systemd_populate_packages() {
152 def systemd_check_services(): 152 def systemd_check_services():
153 searchpaths = [oe.path.join(d.getVar("sysconfdir"), "systemd", "system"),] 153 searchpaths = [oe.path.join(d.getVar("sysconfdir"), "systemd", "system"),]
154 searchpaths.append(d.getVar("systemd_system_unitdir")) 154 searchpaths.append(d.getVar("systemd_system_unitdir"))
155 searchpaths.append(d.getVar("systemd_user_unitdir"))
155 systemd_packages = d.getVar('SYSTEMD_PACKAGES') 156 systemd_packages = d.getVar('SYSTEMD_PACKAGES')
156 157
157 keys = 'Also' 158 keys = 'Also'