]> code.ossystems Code Review - openembedded-core.git/commitdiff
Add support for BAD_RECOMMENDATIONS to rootfs_ipk
authorChris Elston <celston@katalix.com>
Mon, 11 Jul 2011 12:14:15 +0000 (13:14 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 12 Jul 2011 14:01:24 +0000 (15:01 +0100)
As discussed on IRC on 30/06/11, this patch adds support for
BAD_RECOMMENDATIONS to rootfs_ipk, which is a list of packages NOT to
install if suggested or recommended by a recipe.  Taken from
http://thread.gmane.org/gmane.comp.handhelds.openembedded/30417.

Note that current support for this in oe.dev may also be broken,
depending on the version of opkg in use.

Signed-off-by: Chris Elston <celston@katalix.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/rootfs_ipk.bbclass

index 3b4b4da43d35d349e97d0ffc55ced204747d2755..4fcacc67ecdca2f4a205ec5689207d1ba1fa0a26 100644 (file)
@@ -20,6 +20,9 @@ OPKG_POSTPROCESS_COMMANDS = "ipk_insert_feed_uris"
 
 opkglibdir = "${localstatedir}/lib/opkg"
 
+# Which packages to not install on the basis of a recommendation
+BAD_RECOMMENDATIONS ?= ""
+
 fakeroot rootfs_ipk_do_rootfs () {
        set -x
 
@@ -29,6 +32,23 @@ fakeroot rootfs_ipk_do_rootfs () {
        ${OPKG_PREPROCESS_COMMANDS}
 
        mkdir -p ${T}/
+       STATUS=${IMAGE_ROOTFS}${opkglibdir}/status
+       mkdir -p ${IMAGE_ROOTFS}${opkglibdir}
+
+       opkg-cl ${IPKG_ARGS} update
+
+       # prime the status file with bits that we don't want
+       for i in ${BAD_RECOMMENDATIONS}; do
+               pkginfo="`opkg-cl ${IPKG_ARGS} info $i`"
+               if [ ! -z "$pkginfo" ]; then
+                       echo "$pkginfo" | grep -e '^Package:' -e '^Architecture:' -e '^Version:' >> $STATUS
+                       echo "Status: deinstall ok not-installed" >> $STATUS
+                       echo >> $STATUS
+               else
+                       echo "Requested ignored recommendation $i is not a package"
+               fi
+       done
 
        #install
        export INSTALL_PACKAGES_ATTEMPTONLY_IPK="${PACKAGE_INSTALL_ATTEMPTONLY}"