diff options
author | Alejandro Joya <alejandro.joya.cruz@intel.com> | 2015-11-17 16:13:16 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-06 15:27:33 +0000 |
commit | eb5bb0ee291eaa32ce22317f11379142a4fa21e2 (patch) | |
tree | c697f21daa61cef8bb6765b0ed1b993efaea986d /meta/recipes-core | |
parent | cc7bb6c9ddd748ffa048d657a1b8716119d7b778 (diff) | |
download | poky-eb5bb0ee291eaa32ce22317f11379142a4fa21e2.tar.gz |
packagegroup-core-boot:replace busybox to variable
It replaces the use of busybox as hardcoded dependency to more dynamic
this wouldn't affect the way that the system is build only it let a more
flexible replacement in the core.
(From OE-Core rev: 9f5b8047c5247b18602dd79d384d57e07220abb2)
Signed-off-by: Alejandro Joya <alejandro.joya.cruz@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/packagegroups/packagegroup-core-boot.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb index 09f537372e..bac93b89b3 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb | |||
@@ -24,7 +24,7 @@ VIRTUAL-RUNTIME_init_manager ?= "sysvinit" | |||
24 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" | 24 | VIRTUAL-RUNTIME_initscripts ?= "initscripts" |
25 | VIRTUAL-RUNTIME_keymaps ?= "keymaps" | 25 | VIRTUAL-RUNTIME_keymaps ?= "keymaps" |
26 | 26 | ||
27 | SYSVINIT_SCRIPTS = "${@bb.utils.contains('MACHINE_FEATURES', 'rtc', 'busybox-hwclock', '', d)} \ | 27 | SYSVINIT_SCRIPTS = "${@bb.utils.contains('MACHINE_FEATURES', 'rtc', '${VIRTUAL-RUNTIME_base-utils-hwclock}', '', d)} \ |
28 | modutils-initscripts \ | 28 | modutils-initscripts \ |
29 | init-ifupdown \ | 29 | init-ifupdown \ |
30 | ${VIRTUAL-RUNTIME_initscripts} \ | 30 | ${VIRTUAL-RUNTIME_initscripts} \ |
@@ -33,7 +33,7 @@ SYSVINIT_SCRIPTS = "${@bb.utils.contains('MACHINE_FEATURES', 'rtc', 'busybox-hwc | |||
33 | RDEPENDS_${PN} = "\ | 33 | RDEPENDS_${PN} = "\ |
34 | base-files \ | 34 | base-files \ |
35 | base-passwd \ | 35 | base-passwd \ |
36 | busybox \ | 36 | ${VIRTUAL-RUNTIME_base-utils} \ |
37 | ${@bb.utils.contains("DISTRO_FEATURES", "sysvinit", "${SYSVINIT_SCRIPTS}", "", d)} \ | 37 | ${@bb.utils.contains("DISTRO_FEATURES", "sysvinit", "${SYSVINIT_SCRIPTS}", "", d)} \ |
38 | ${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \ | 38 | ${@bb.utils.contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \ |
39 | netbase \ | 39 | netbase \ |