diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-11-09 12:36:10 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-12 10:26:53 +0000 |
commit | 532e3efe76b62a4454193af9da59ced24e05bd33 (patch) | |
tree | 01693280a1e93083e96f4bba8b666409271a07ff /meta/recipes-extended/packagegroups | |
parent | c210393b3e0c54606493e311d7c2040efebc4dcd (diff) | |
download | openembedded-core-532e3efe76b62a4454193af9da59ced24e05bd33.tar.gz openembedded-core-532e3efe76b62a4454193af9da59ced24e05bd33.tar.bz2 openembedded-core-532e3efe76b62a4454193af9da59ced24e05bd33.zip |
packagegroup-core-basic: define VIRTUAL-RUNTIME_syslog
We have rsyslog and syslog-ng in our layer, and oe-core
has sysklogd, define VIRTUAL-RUNTIME_syslog so that we
can switch them easily. Set sysklogd as default here,
we will have setting in distro confs to override it.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/packagegroups')
-rw-r--r-- | meta/recipes-extended/packagegroups/packagegroup-core-basic.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb b/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb index 55de32fcf8..c89923d3e2 100644 --- a/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb +++ b/meta/recipes-extended/packagegroups/packagegroup-core-basic.bb @@ -96,12 +96,13 @@ RDEPENDS_packagegroup-core-dev-utils = "\ VIRTUAL-RUNTIME_initscripts ?= "initscripts" VIRTUAL-RUNTIME_init_manager ?= "sysvinit" VIRTUAL-RUNTIME_login_manager ?= "busybox" +VIRTUAL-RUNTIME_syslog ?= "sysklogd" RDEPENDS_packagegroup-core-initscripts = "\ ${VIRTUAL-RUNTIME_initscripts} \ ${VIRTUAL-RUNTIME_init_manager} \ ethtool \ ${VIRTUAL-RUNTIME_login_manager} \ - sysklogd \ + ${VIRTUAL-RUNTIME_syslog} \ " RDEPENDS_packagegroup-core-multiuser = "\ |