mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
rootfs_ipk: don't echo opkg-cl output to log.do_rootfs
* log_check can find some files with ERR or Fail substring e.g. in "Source: " field (From OE-Core rev: 76c83f107d4a4688a879e30821ab70812052bbdc) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
525275dcfd
commit
debd5d5bb1
@@ -127,10 +127,12 @@ list_installed_packages() {
|
||||
}
|
||||
|
||||
get_package_filename() {
|
||||
set +x
|
||||
info=`opkg-cl ${IPKG_ARGS} info $1 | grep -B 7 -A 7 "^Status.* \(\(installed\)\|\(unpacked\)\)" || true`
|
||||
name=`echo "${info}" | awk '/^Package/ {printf $2"_"}'`
|
||||
name=$name`echo "${info}" | awk -F: '/^Version/ {printf $NF"_"}' | sed 's/^\s*//g'`
|
||||
name=$name`echo "${info}" | awk '/^Archi/ {print $2".ipk"}'`
|
||||
set -x
|
||||
|
||||
fullname=`find ${DEPLOY_DIR_IPK} -name "$name" || true`
|
||||
if [ "$fullname" = "" ] ; then
|
||||
|
||||
Reference in New Issue
Block a user