summaryrefslogtreecommitdiffstats
path: root/meta/classes/systemd.bbclass
diff options
context:
space:
mode:
authorRandy Witt <rewitt@lpdev.prtdev.lexmark.com>2013-06-26 17:33:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-10 09:41:51 +0100
commitce1638c50dc44c69717c67049dcc76a1cb5b7e75 (patch)
tree35a73a89caee81eea2f45c72ce22a0e35938541c /meta/classes/systemd.bbclass
parent4285e856aa073979bf046168a75188ccf5a1e7d4 (diff)
downloadpoky-ce1638c50dc44c69717c67049dcc76a1cb5b7e75.tar.gz
systemd: Don't enable systemd services when native.
It shouldn't be desired that systemd enable services when using class native. Blanking out the SYSTEMD_PACKAGES when native seems like the most straightforward way to fix this problem. (From OE-Core rev: e0ce07010d2e818dc43ffdff6f3cdd94f18d7af5) Signed-off-by: Randy Witt <rewitt@declaratino.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/systemd.bbclass')
-rw-r--r--meta/classes/systemd.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/systemd.bbclass b/meta/classes/systemd.bbclass
index 86d9a9a835..0447e53db9 100644
--- a/meta/classes/systemd.bbclass
+++ b/meta/classes/systemd.bbclass
@@ -2,6 +2,8 @@
2# each entry, optionally have a SYSTEMD_SERVICE_[package] that lists the service 2# each entry, optionally have a SYSTEMD_SERVICE_[package] that lists the service
3# files in this package. If this variable isn't set, [package].service is used. 3# files in this package. If this variable isn't set, [package].service is used.
4SYSTEMD_PACKAGES ?= "${PN}" 4SYSTEMD_PACKAGES ?= "${PN}"
5SYSTEMD_PACKAGES_class-native ?= ""
6SYSTEMD_PACKAGES_class-nativesdk ?= ""
5 7
6# Whether to enable or disable the services on installation. 8# Whether to enable or disable the services on installation.
7SYSTEMD_AUTO_ENABLE ??= "enable" 9SYSTEMD_AUTO_ENABLE ??= "enable"