21 lines
323 B
Text
21 lines
323 B
Text
|
#!/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
|