fix compatibility issue with older Recovery notifications

Signed-off-by: Michel-FK <michel.stempin@funkey-project.com>
This commit is contained in:
Michel-FK 2021-06-07 22:54:31 +02:00
parent 8ba4b07964
commit 50d83ed555
1 changed files with 16 additions and 11 deletions

View File

@ -7,9 +7,14 @@ root_part_num=2
root_part=/dev/mmcblk0p${root_part_num} root_part=/dev/mmcblk0p${root_part_num}
root_mount=/tmp/rootfs root_mount=/tmp/rootfs
# Compatibility issue with older Recovery notifications
if [ -x /usr/local/sbin/notif ]; then
alias notif_set="notif set"
fi
do_preinst() do_preinst()
{ {
notif set 0 " 1/4 EXTRACT FIRMWARE UPDATE..^DO NOT TURN OFF THE CONSOLE" notif_set 0 " 1/4 EXTRACT FIRMWARE UPDATE..^DO NOT TURN OFF THE CONSOLE"
exit 0 exit 0
} }
@ -19,24 +24,24 @@ do_postinst()
################# #################
# Resize Rootfs # # Resize Rootfs #
################# #################
notif set 0 " 2/4 RESIZE ROOT FILESYSTEM^DO NOT TURN OFF THE CONSOLE" notif_set 0 " 2/4 RESIZE ROOT FILESYSTEM^DO NOT TURN OFF THE CONSOLE"
resize2fs ${root_part} resize2fs ${root_part}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
notif set 0 " CANNOT RESIZE ROOT^FILESYSTEM" notif_set 0 " CANNOT RESIZE ROOT^FILESYSTEM"
exit 1 exit 1
fi fi
############################## ##############################
# SHARED PARTITION PROCESSES # # SHARED PARTITION PROCESSES #
############################## ##############################
notif set 0 " 3/4 COPY OPKS TO USB MOUNT^DO NOT TURN OFF THE CONSOLE" notif_set 0 " 3/4 COPY OPKS TO USB MOUNT^DO NOT TURN OFF THE CONSOLE"
# Mount Rootfs # Mount Rootfs
mkdir -p ${root_mount} mkdir -p ${root_mount}
mount -t ext4 ${root_part} ${root_mount} mount -t ext4 ${root_part} ${root_mount}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
notif set 0 "CANNOT MOUNT ROOT^FILESYSTEM" notif_set 0 "CANNOT MOUNT ROOT^FILESYSTEM"
exit 1 exit 1
fi fi
# Copy OPKs # Copy OPKs
@ -48,8 +53,8 @@ do_postinst()
# Unmount Rootfs # Unmount Rootfs
umount ${root_mount} umount ${root_mount}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
notif set 0 "CANNOT UNMOUNT ROOT^FILESYSTEM" notif_set 0 "CANNOT UNMOUNT ROOT^FILESYSTEM"
exit 1 exit 1
fi fi
# Change FunKey config files extension from .cfg to .fkcfg # Change FunKey config files extension from .cfg to .fkcfg
@ -66,8 +71,8 @@ do_postinst()
# Erase update file # # Erase update file #
##################### #####################
for file in $(ls /mnt/FunKey-*.fwu); do for file in $(ls /mnt/FunKey-*.fwu); do
notif set 0 " 4/4 ERASE UPDATE FILE^DO NOT TURN OFF THE CONSOLE" notif_set 0 " 4/4 ERASE UPDATE FILE^DO NOT TURN OFF THE CONSOLE"
rm -f "${file}" rm -f "${file}"
done done
exit 0 exit 0
} }