diff options
| author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-02-19 12:14:58 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-20 14:28:11 +0000 |
| commit | bac890580c4454a5f94eadb40dec8972a13bbf6f (patch) | |
| tree | 7dd6e5f93c0b7c1885e7306405c72b10f9940952 /meta/classes/populate_sdk_ipk.bbclass | |
| parent | 7e595a5f9432188f5adec99e675827114c70d0c8 (diff) | |
| download | poky-bac890580c4454a5f94eadb40dec8972a13bbf6f.tar.gz | |
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.
(From OE-Core rev: 6c1e379ce81a6f397bf8e7e7c9dd3cea91274b46)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ipk.bbclass')
| -rw-r--r-- | meta/classes/populate_sdk_ipk.bbclass | 20 |
1 files changed, 0 insertions, 20 deletions
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" | |||
| 3 | 3 | ||
| 4 | do_populate_sdk[lockfiles] += "${WORKDIR}/ipk.lock" | 4 | do_populate_sdk[lockfiles] += "${WORKDIR}/ipk.lock" |
| 5 | 5 | ||
| 6 | list_installed_packages() { | ||
| 7 | if [ "$1" = "arch" ] ; then | ||
| 8 | opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -a | ||
| 9 | elif [ "$1" = "file" ] ; then | ||
| 10 | opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -f | while read pkg pkgfile pkgarch | ||
| 11 | do | ||
| 12 | fullpath=`find ${DEPLOY_DIR_IPK} -name "$pkgfile" || true` | ||
| 13 | if [ "$fullpath" = "" ] ; then | ||
| 14 | echo "$pkg $pkgfile $pkgarch" | ||
| 15 | else | ||
| 16 | echo "$pkg $fullpath $pkgarch" | ||
| 17 | fi | ||
| 18 | done | ||
| 19 | elif [ "$1" = "ver" ] ; then | ||
| 20 | opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py -v | ||
| 21 | else | ||
| 22 | opkg-cl ${OPKG_ARGS} list_installed | awk '{ print $1 }' | ||
| 23 | fi | ||
| 24 | } | ||
| 25 | |||
| 26 | rootfs_list_installed_depends() { | 6 | rootfs_list_installed_depends() { |
| 27 | opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py | 7 | opkg-cl ${OPKG_ARGS} status | opkg-query-helper.py |
| 28 | } | 8 | } |
