Bug fix for the boot_resource option

This commit is contained in:
AGG2017 2024-02-14 13:50:52 -05:00
parent f99ff0b65e
commit 9da52bd7e6
4 changed files with 9 additions and 5 deletions

View file

@ -27,10 +27,13 @@ cp boot-resource-src boot-resource
chmod 664 boot-resource
# replace all images in the copy of the source
mount -t vfat boot-resource ./temp
/bin/cp -f ./*.bmp ./temp
umount ./temp
rm -rf temp
mount -t vfat boot-resource "$PWD/temp" -o rw
/bin/cp -f *.bmp "$PWD/temp"
sync
sync
sync
umount "$PWD/temp"
rm -rf "$PWD/temp"
# setup the result boot-resource
rm -f ../boot-resource

View file

@ -43,4 +43,5 @@ kobra_unleashed="192.168.1.234"
#app_images="set1"
# Replace the boot logo
boot_resource="kangaroo"
#boot_resource="kangaroo"