base-files: exit if mtd write command fails during sysupgrade
It avoids confusing situations like: > Could not get image magic > Image check failed. > Upgrade completed > Rebooting system... Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
parent
1c1e254244
commit
5b2e20807d
1 changed files with 1 additions and 0 deletions
|
@ -222,6 +222,7 @@ default_do_upgrade() {
|
||||||
else
|
else
|
||||||
get_image "$1" "$2" | mtd write - "${PART_NAME:-image}"
|
get_image "$1" "$2" | mtd write - "${PART_NAME:-image}"
|
||||||
fi
|
fi
|
||||||
|
[ $? -ne 0 ] && exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
do_upgrade_stage2() {
|
do_upgrade_stage2() {
|
||||||
|
|
Loading…
Reference in a new issue