From 6c1e379ce81a6f397bf8e7e7c9dd3cea91274b46 Mon Sep 17 00:00:00 2001 From: Laurentiu Palcu Date: Wed, 19 Feb 2014 12:14:58 +0200 Subject: populate_sdk_*.bbclass: remove left over bash routines The list_installed_packages bash routine is no longer needed here. We've got a python replacement. Signed-off-by: Laurentiu Palcu Signed-off-by: Saul Wold --- meta/classes/populate_sdk_ipk.bbclass | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'meta/classes/populate_sdk_ipk.bbclass') diff --git a/meta/classes/populate_sdk_ipk.bbclass b/meta/classes/populate_sdk_ipk.bbclass index f51a22cb8a..4c23f055c1 100644 --- a/meta/classes/populate_sdk_ipk.bbclass +++ b/meta/classes/populate_sdk_ipk.bbclass @@ -3,26 +3,6 @@ do_populate_sdk[recrdeptask] += "do_package_write_ipk" do_populate_sdk[lockfiles] += "${WORKDIR}/ipk.lock" -list_installed_packages() { - if [ "$1" = "arch" ] ; then - opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -a - elif [ "$1" = "file" ] ; then - opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -f | while read pkg pkgfile pkgarch - do - fullpath=`find ${DEPLOY_DIR_IPK} -name "$pkgfile" || true` - if [ "$fullpath" = "" ] ; then - echo "$pkg $pkgfile $pkgarch" - else - echo "$pkg $fullpath $pkgarch" - fi - done - elif [ "$1" = "ver" ] ; then - opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -v - else - opkg-cl ${OPKG_ARGS} list_installed | awk '{ print $1 }' - fi -} - rootfs_list_installed_depends() { opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py } -- cgit v1.2.3