summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/buildhistory.bbclass16
1 files changed, 15 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index baa7c8e279..5bf2726810 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -67,7 +67,7 @@ PATCH_GIT_USER_NAME ?= "OpenEmbedded"
67 67
68buildhistory_emit_sysroot() { 68buildhistory_emit_sysroot() {
69 mkdir --parents ${BUILDHISTORY_DIR_PACKAGE} 69 mkdir --parents ${BUILDHISTORY_DIR_PACKAGE}
70 buildhistory_list_files ${SYSROOT_DESTDIR} ${BUILDHISTORY_DIR_PACKAGE}/sysroot 70 buildhistory_list_files_no_owners ${SYSROOT_DESTDIR} ${BUILDHISTORY_DIR_PACKAGE}/sysroot
71} 71}
72 72
73# 73#
@@ -537,6 +537,20 @@ buildhistory_list_files() {
537 fi | sort -k5 | sed 's/ * -> $//' > $2 ) 537 fi | sort -k5 | sed 's/ * -> $//' > $2 )
538} 538}
539 539
540buildhistory_list_files_no_owners() {
541 # List the files in the specified directory, but exclude date/time etc.
542 # Also don't output the ownership data, but instead output just - - so
543 # that the same parsing code as for _list_files works.
544 # This is somewhat messy, but handles where the size is not printed for device files under pseudo
545 ( cd $1
546 find_cmd='find . ! -path . -printf "%M - - %10s %p -> %l\n"'
547 if [ "$3" = "fakeroot" ] ; then
548 eval ${FAKEROOTENV} ${FAKEROOTCMD} "$find_cmd"
549 else
550 eval "$find_cmd"
551 fi | sort -k5 | sed 's/ * -> $//' > $2 )
552}
553
540buildhistory_list_pkg_files() { 554buildhistory_list_pkg_files() {
541 # Create individual files-in-package for each recipe's package 555 # Create individual files-in-package for each recipe's package
542 for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do 556 for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do