diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-06-05 17:09:02 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 10:25:40 +0100 |
commit | f39d8765b1233219a36331975a248b2cd008abdf (patch) | |
tree | 14288537701978e9f391fa4e35aa7b9bc0776387 /meta/classes/update-rc.d.bbclass | |
parent | 5f0634a2709bf8c4382c79b190e8b09f91dff8d7 (diff) | |
download | poky-f39d8765b1233219a36331975a248b2cd008abdf.tar.gz |
update-rc.d/useradd: Add additional dependecies
These dependcies are needed to ensure that thier packages are created
correctly since these classes have runtime dependiences in their packages
but they are not actually created yet at rootfs time.
[YOCTO #6072]
(From OE-Core rev: bba835fed88c3bd5bb5bd58962034aef57c408d8)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/update-rc.d.bbclass')
-rw-r--r-- | meta/classes/update-rc.d.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/update-rc.d.bbclass b/meta/classes/update-rc.d.bbclass index 56eef4e06d..ca9486b426 100644 --- a/meta/classes/update-rc.d.bbclass +++ b/meta/classes/update-rc.d.bbclass | |||
@@ -1,6 +1,7 @@ | |||
1 | UPDATERCPN ?= "${PN}" | 1 | UPDATERCPN ?= "${PN}" |
2 | 2 | ||
3 | DEPENDS_append = " update-rc.d-native" | 3 | DEPENDS_append = " update-rc.d-native" |
4 | DEPENDS_append_class-target = " initscripts" | ||
4 | UPDATERCD = "update-rc.d" | 5 | UPDATERCD = "update-rc.d" |
5 | UPDATERCD_class-cross = "" | 6 | UPDATERCD_class-cross = "" |
6 | UPDATERCD_class-native = "" | 7 | UPDATERCD_class-native = "" |
@@ -67,6 +68,7 @@ python __anonymous() { | |||
67 | } | 68 | } |
68 | 69 | ||
69 | PACKAGESPLITFUNCS_prepend = "populate_packages_updatercd " | 70 | PACKAGESPLITFUNCS_prepend = "populate_packages_updatercd " |
71 | PACKAGESPLITFUNCS_remove_class-nativesdk = "populate_packages_updatercd " | ||
70 | 72 | ||
71 | populate_packages_updatercd[vardeps] += "updatercd_prerm updatercd_postrm updatercd_preinst updatercd_postinst" | 73 | populate_packages_updatercd[vardeps] += "updatercd_prerm updatercd_postrm updatercd_preinst updatercd_postinst" |
72 | 74 | ||