fix the list of the firmware files in images.list to include symlinks
This commit is contained in:
parent
001a6b6a6b
commit
4fb0b6769a
1 changed files with 1 additions and 1 deletions
2
build.sh
2
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
|
||||
|
|
Loading…
Reference in a new issue