mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-12 15:48:51 +01:00
copy opk to /mnt/apps if it does not exist yet
Signed-off-by: Michel-FK <michel.stempin@funkey-project.com>
This commit is contained in:
parent
269c3f3567
commit
a02b1a8237
@ -9,20 +9,36 @@ root_mount=/tmp/rootfs
|
|||||||
|
|
||||||
do_preinst()
|
do_preinst()
|
||||||
{
|
{
|
||||||
notif " 1/3 EXTRACT FIRMWARE UPDATE..^DO NOT TURN OFF THE CONSOLE"
|
notif " 1/4 EXTRACT FIRMWARE UPDATE..^DO NOT TURN OFF THE CONSOLE"
|
||||||
exit 0
|
exit 0
|
||||||
}
|
}
|
||||||
|
|
||||||
do_postinst()
|
do_postinst()
|
||||||
{
|
{
|
||||||
notif " 2/3 RESIZE ROOT FILESYSTEM^DO NOT TURN OFF THE CONSOLE"
|
notif " 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 " CANNOT RESIZE ROOT ^FILESYSTEM"
|
notif " CANNOT RESIZE ROOT^FILESYSTEM"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
notif " 3/4 COPY OPKS TO USB MOUNT^DO NOT TURN OFF THE CONSOLE"
|
||||||
|
if [ ! -d /mnt/apps ]; then
|
||||||
|
mkdir -p /mnt/apps
|
||||||
|
mkdir -p ${root_mount}
|
||||||
|
mount -t ext4 ${root_part} ${root_mount}
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
notif "CANNOT MOUNT ROOT^FILESYSTEM"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
cp -f ${root_mount}/usr/games/opk/*.opk /mnt/apps/
|
||||||
|
umount ${root_mount}
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
notif "CANNOT UNMOUNT ROOT^FILESYSTEM"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
for file in $(ls /mnt/FunKey-*.fwu); do
|
for file in $(ls /mnt/FunKey-*.fwu); do
|
||||||
notif " 3/3 ERASE UPDATE FILE^DO NOT TURN OFF THE CONSOLE"
|
notif " 4/4 ERASE UPDATE FILE^DO NOT TURN OFF THE CONSOLE"
|
||||||
rm -f "${file}"
|
rm -f "${file}"
|
||||||
done
|
done
|
||||||
exit 0
|
exit 0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user