diff options
author | Richard Tollerton <rich.tollerton@ni.com> | 2014-11-05 15:26:16 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-20 14:08:11 +0000 |
commit | 887c75a9ffdfde63168e544814d13d1e77713d29 (patch) | |
tree | ea8c4669e8c7f9839eeaff2931cdb887431beb42 | |
parent | 92afbaee1e7dd4db2fb4e10f2e02827f1466e91e (diff) | |
download | poky-887c75a9ffdfde63168e544814d13d1e77713d29.tar.gz |
default-providers.inc: define VIRTUAL-RUNTIME_getopt
getopt can be provided by either util-linux or busybox. Allow the
distro to control which implementation is used, and default it to
util-linux.
(From OE-Core rev: 218d5eb990011442d3b15e8fbb3e682af6bcbe92)
Signed-off-by: Richard Tollerton <rich.tollerton@ni.com>
Acked-by: Ken Sharp <ken.sharp@ni.com>
Acked-by: Ben Shelton <ben.shelton@ni.com
Acked-by: Brad Mouring <brad.mouring@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/distro/include/default-providers.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/conf/distro/include/default-providers.inc b/meta/conf/distro/include/default-providers.inc index a1167fdfbf..e15794f2a1 100644 --- a/meta/conf/distro/include/default-providers.inc +++ b/meta/conf/distro/include/default-providers.inc | |||
@@ -21,6 +21,7 @@ PREFERRED_PROVIDER_xf86-video-intel ?= "xf86-video-intel" | |||
21 | VIRTUAL-RUNTIME_update-alternatives ?= "update-alternatives-opkg" | 21 | VIRTUAL-RUNTIME_update-alternatives ?= "update-alternatives-opkg" |
22 | VIRTUAL-RUNTIME_apm ?= "apm" | 22 | VIRTUAL-RUNTIME_apm ?= "apm" |
23 | VIRTUAL-RUNTIME_alsa-state ?= "alsa-state" | 23 | VIRTUAL-RUNTIME_alsa-state ?= "alsa-state" |
24 | VIRTUAL-RUNTIME_getopt ?= "util-linux-getopt" | ||
24 | 25 | ||
25 | # | 26 | # |
26 | # Default recipe providers | 27 | # Default recipe providers |
@@ -45,3 +46,4 @@ PREFERRED_PROVIDER_udev ?= "${@bb.utils.contains('DISTRO_FEATURES','systemd','sy | |||
45 | PREFERRED_PROVIDER_bluez4 ?= "bluez4" | 46 | PREFERRED_PROVIDER_bluez4 ?= "bluez4" |
46 | # Alternative is ltp-ddt in meta-oe: meta-oe/recipes-devtools/ltp-ddt/ltp-ddt_0.0.4.bb | 47 | # Alternative is ltp-ddt in meta-oe: meta-oe/recipes-devtools/ltp-ddt/ltp-ddt_0.0.4.bb |
47 | PREFERRED_PROVIDER_ltp ?= "ltp" | 48 | PREFERRED_PROVIDER_ltp ?= "ltp" |
49 | PREFERRED_PROVIDER_getopt ?= "util-linux-getopt" | ||