From patchwork Fri Feb 8 14:55:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: packagegroup-core-boot: add VIRTUAL-RUNTIME_network_manager Date: Fri, 08 Feb 2013 14:55:13 -0000 From: ml@communistcode.co.uk X-Patchwork-Id: 44343 Message-Id: <1360335313-22408-1-git-send-email-ml@communistcode.co.uk> To: openembedded-core@lists.openembedded.org Cc: Jack Mitchell From: Jack Mitchell Now netbase has been split into netbase and init-ifupdown, the user should be able to make a choice on which network manager to install, and not be forced to install init-ifupdown alongside if they wish to use a vanilla copy of packagegroup-core-boot Signed-off-by: Jack Mitchell --- meta/recipes-core/packagegroups/packagegroup-core-boot.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb index b9183a8..a714879 100644 --- a/meta/recipes-core/packagegroups/packagegroup-core-boot.bb +++ b/meta/recipes-core/packagegroups/packagegroup-core-boot.bb @@ -29,6 +29,7 @@ VIRTUAL-RUNTIME_login_manager ?= "tinylogin" VIRTUAL-RUNTIME_init_manager ?= "${DISTRO_FEATURES_INITMAN}" VIRTUAL-RUNTIME_initscripts ?= "${@base_contains('DISTRO_FEATURES', 'sysvinit', 'initscripts', '',d)}" VIRTUAL-RUNTIME_keymaps ?= "keymaps" +VIRTUAL-RUNTIME_network_manager ?= "init-ifupdown" RDEPENDS_${PN} = "\ base-files \ @@ -38,7 +39,7 @@ RDEPENDS_${PN} = "\ ${@base_contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \ modutils-initscripts \ netbase \ - init-ifupdown \ + ${VIRTUAL-RUNTIME_network_manager} \ ${VIRTUAL-RUNTIME_login_manager} \ ${VIRTUAL-RUNTIME_init_manager} \ ${VIRTUAL-RUNTIME_initscripts} \