blob: 6b66fbd42d4f9a69165a650e4ab5484becae8ccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
. /lib/imx6.sh
. /lib/functions.sh
move_config() {
local board=$(board_name)
case "$board" in
apalis*)
if [ -b $(bootpart_from_uuid) ]; then
apalis_mount_boot
[ -f /boot/sysupgrade.tgz ] && mv -f /boot/sysupgrade.tgz /
umount /boot
fi
;;
esac
}
boot_hook_add preinit_mount_root move_config
|