[oe-commits] Mark Hatle : package_ipk: Add support for PACKAGE_EXCLUDE

git at git.openembedded.org git at git.openembedded.org
Thu Aug 22 17:19:41 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 6d7f5581bbfaf174edb77d92846e720e8057481c
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=6d7f5581bbfaf174edb77d92846e720e8057481c

Author: Mark Hatle <mark.hatle at windriver.com>
Date:   Tue Aug 13 20:31:23 2013 -0500

package_ipk: Add support for PACKAGE_EXCLUDE

This uses the new --add-exclude arguments in opkg-cl, to list the excluded
packages.

If an excluded package is needed for the install to resolve,
an error will be generated.  Recommended packages will not
generate an error.

Signed-off-by: Mark Hatle <mark.hatle at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/classes/package_ipk.bbclass |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass
index 69a6d95..68ffc62 100644
--- a/meta/classes/package_ipk.bbclass
+++ b/meta/classes/package_ipk.bbclass
@@ -12,6 +12,7 @@ OPKGBUILDCMD ??= "opkg-build"
 
 OPKG_ARGS = "-f $INSTALL_CONF_IPK -o $INSTALL_ROOTFS_IPK --force_postinstall --prefer-arch-to-version"
 OPKG_ARGS += "${@['', '--no-install-recommends'][d.getVar("NO_RECOMMENDATIONS", True) == "1"]}"
+OPKG_ARGS += "${@['', '--add-exclude ' + ' --add-exclude '.join((d.getVar('PACKAGE_EXCLUDE', True) or "").split())][(d.getVar("PACKAGE_EXCLUDE", True) or "") != ""]}"
 
 OPKGLIBDIR = "${localstatedir}/lib"
 



More information about the Openembedded-commits mailing list