diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-19 06:57:00 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-23 12:29:12 -0800 |
commit | 50feffd0917b0ab408b34ded9c2f741a9c4e5b74 (patch) | |
tree | a687007dd0638a71c09496c98f4b0c01d2734c01 /meta | |
parent | 7265e99d0b4b662ca7f23d480f2845a309ac57fc (diff) | |
download | openembedded-core-50feffd0917b0ab408b34ded9c2f741a9c4e5b74.tar.gz openembedded-core-50feffd0917b0ab408b34ded9c2f741a9c4e5b74.tar.bz2 openembedded-core-50feffd0917b0ab408b34ded9c2f741a9c4e5b74.zip |
depmodwrapper-cross/qemuwrapper-cross: Drop unneeded binutils dependency
By default these pull in binutils-cross since they're a cross tool
and pull in any native tool requirements. In reality they don't
need such tools at build time or runtime since they're scripts.
Therefore clear the dependency and save on some processing time.
(From OE-Core rev: 63796765122e2eee2b78930797d571acb5c244d1)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb b/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb index b86400bd27..e40cdafc94 100644 --- a/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb +++ b/meta/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb @@ -7,6 +7,8 @@ DEPENDS += "qemu-native" inherit qemu +do_populate_sysroot[depends] = "" + do_install () { install -d ${D}${bindir_crossscripts}/ diff --git a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb index aa2805b035..17a99a4afb 100644 --- a/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb +++ b/meta/recipes-kernel/kmod/depmodwrapper-cross_1.0.bb @@ -11,6 +11,8 @@ PACKAGE_ARCH = "${MACHINE_ARCH}" SSTATE_SCAN_FILES += "depmodwrapper" EXTRA_STAGING_FIXMES = "PKGDATA_DIR" +do_populate_sysroot[depends] = "" + do_install() { install -d ${D}${bindir_crossscripts}/ |