aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files/lib/upgrade/common.sh
diff options
context:
space:
mode:
authorRafał Miłecki <rafal@milecki.pl>2019-07-02 16:10:57 +0200
committerJo-Philipp Wich <jo@mein.io>2019-09-04 13:25:46 +0200
commita074ed29333dbb71d40da2f0b4ad9a8e6e781bfd (patch)
tree3adb21a3fea5d923abf368163d46bd7d9f052da6 /package/base-files/files/lib/upgrade/common.sh
parente98eab1b6b775afaec2c62071ca703ea75c6358a (diff)
downloadupstream-a074ed29333dbb71d40da2f0b4ad9a8e6e781bfd.tar.gz
upstream-a074ed29333dbb71d40da2f0b4ad9a8e6e781bfd.tar.bz2
upstream-a074ed29333dbb71d40da2f0b4ad9a8e6e781bfd.zip
base-files: drop support for NAND upgrade in platform_pre_upgrade()
With bcm53xx switched to the new procedure there is no more need for keeping that backward compatibility code. Signed-off-by: Rafał Miłecki <rafal@milecki.pl> (cherry picked from commit ea4e1dac71dfa015c0da10e68149478fa25878f9)
Diffstat (limited to 'package/base-files/files/lib/upgrade/common.sh')
-rw-r--r--package/base-files/files/lib/upgrade/common.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/package/base-files/files/lib/upgrade/common.sh b/package/base-files/files/lib/upgrade/common.sh
index 0f6fab97f8..a13a6aaf5a 100644
--- a/package/base-files/files/lib/upgrade/common.sh
+++ b/package/base-files/files/lib/upgrade/common.sh
@@ -228,9 +228,7 @@ default_do_upgrade() {
do_upgrade_stage2() {
v "Performing system upgrade..."
- if [ -n "$do_upgrade" ]; then
- eval "$do_upgrade"
- elif type 'platform_do_upgrade' >/dev/null 2>/dev/null; then
+ if type 'platform_do_upgrade' >/dev/null 2>/dev/null; then
platform_do_upgrade "$IMAGE"
else
default_do_upgrade "$IMAGE"