Bug fix for the boot_resource option
This commit is contained in:
parent
f99ff0b65e
commit
9da52bd7e6
4 changed files with 9 additions and 5 deletions
Binary file not shown.
Binary file not shown.
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -43,4 +43,5 @@ kobra_unleashed="192.168.1.234"
|
|||
#app_images="set1"
|
||||
|
||||
# Replace the boot logo
|
||||
boot_resource="kangaroo"
|
||||
#boot_resource="kangaroo"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue