x86: make sysupgrade.tgz reachable again
authorTomasz Maciej Nowak <tomek_n@o2.pl>
Wed, 28 Nov 2018 19:44:21 +0000 (20:44 +0100)
committerJohn Crispin <john@phrozen.org>
Mon, 3 Dec 2018 06:38:20 +0000 (07:38 +0100)
Moving binding mount before check for saved sysupgrade configuration
made it unreachable. Fix it by moving binding mount after the check.

Fixes: f78b2616 (x86: mount writable bootfs)
Reported-by: Lucian Cristian <luci@powerneth.ro>
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
target/linux/x86/base-files/lib/preinit/79_move_config

index debce43557849689114699930cc6a1e50f4f9d9e..aff720a52c5afc6e4a1dee5a67d14b953f975eae 100644 (file)
@@ -9,10 +9,10 @@ move_config() {
        if export_bootdevice && export_partdevice partdev 1; then
                mkdir -p /boot
                mount -t ext4 -o rw,noatime "/dev/$partdev" /boot
-               mount --bind /boot/boot /boot
                if [ -f /boot/sysupgrade.tgz ]; then
                        mv -f /boot/sysupgrade.tgz /
                fi
+               mount --bind /boot/boot /boot
        fi
 }