mirror of https://github.com/hak5/openwrt-owl.git
base-files: drop fwtool_pre_upgrade
this feature has never worked, the fw image name was not passed and the -t parameter was missing in the tool invocation. drop the feature. Signed-off-by: John Crispin <john@phrozen.org>master
parent
5660c8fb20
commit
5e1b4c57de
|
@ -1,7 +1,3 @@
|
||||||
fwtool_pre_upgrade() {
|
|
||||||
fwtool -q -i /dev/null "$1"
|
|
||||||
}
|
|
||||||
|
|
||||||
fwtool_check_image() {
|
fwtool_check_image() {
|
||||||
[ $# -gt 1 ] && return 1
|
[ $# -gt 1 ] && return 1
|
||||||
|
|
||||||
|
|
|
@ -137,7 +137,6 @@ add_overlayfiles() {
|
||||||
|
|
||||||
# hooks
|
# hooks
|
||||||
sysupgrade_image_check="fwtool_check_image platform_check_image"
|
sysupgrade_image_check="fwtool_check_image platform_check_image"
|
||||||
sysupgrade_pre_upgrade="fwtool_pre_upgrade"
|
|
||||||
|
|
||||||
if [ $SAVE_OVERLAY = 1 ]; then
|
if [ $SAVE_OVERLAY = 1 ]; then
|
||||||
[ ! -d /overlay/upper/etc ] && {
|
[ ! -d /overlay/upper/etc ] && {
|
||||||
|
@ -264,8 +263,6 @@ else
|
||||||
rm -f /tmp/sysupgrade.always.overwrite.bootdisk.partmap
|
rm -f /tmp/sysupgrade.always.overwrite.bootdisk.partmap
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run_hooks "" $sysupgrade_pre_upgrade
|
|
||||||
|
|
||||||
install_bin /sbin/upgraded
|
install_bin /sbin/upgraded
|
||||||
v "Commencing upgrade. Closing all shell sessions."
|
v "Commencing upgrade. Closing all shell sessions."
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue