| Submitter | ml@communistcode.co.uk |
|---|---|
| Date | Feb. 8, 2013, 2:55 p.m. |
| Message ID | <1360335313-22408-1-git-send-email-ml@communistcode.co.uk> |
| Download | mbox | patch |
| Permalink | /patch/44343/ |
| State | New |
| Headers | show |
Comments
On 8 February 2013 14:55, <ml@communistcode.co.uk> wrote: > From: Jack Mitchell <jack.mitchell@dbbroadcast.co.uk> > > 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 Seems like a reasonable solution to me. At the moment the sato packagegroup pulls in connman indirectly via connman-gnome, it might be reasonable to set VIRTUAL_RUNTIME_network_manager there too. Ross
Patch
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} \