From 4fb0b6769a1ea386ccdb1a8415f3535c7d9858e4 Mon Sep 17 00:00:00 2001 From: Daniel Frank Date: Fri, 12 Apr 2019 19:59:34 +0200 Subject: [PATCH] fix the list of the firmware files in images.list to include symlinks --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d9360f1..5008580 100755 --- a/build.sh +++ b/build.sh @@ -97,7 +97,7 @@ for t in $targets; do make -j$(nproc) GLUON_TARGET=$t $verbose done # Generate the images.list -( cd "${GLUON_OUTPUTDIR}/images" && find -type f ! -iname '*.manifest' ! -iname images.list | sed -e 's!^\./\(.*\)$!\1!' -e 's!/! !g' | sort > images.list ) +( cd "${GLUON_OUTPUTDIR}/images" && ( find -type f ! -iname '*.manifest' ! -iname images.list; find -type l ! -iname '*.manifest' ) | sed -e 's!^\./\(.*\)$!\1!' -e 's!/! !g' | sort > images.list ) announce Building manifest... make manifest if [ -n "${signature}" ]; then