diff options
author | Stijn Tintel <stijn@linux-ipv6.be> | 2021-08-07 01:42:43 +0300 |
---|---|---|
committer | Stijn Tintel <stijn@linux-ipv6.be> | 2021-08-07 01:43:39 +0300 |
commit | b1bff5cb57fab31932ceaa0dea9509effe9f5800 (patch) | |
tree | fa2f1f99f3b2fd18b2aee129a68a74f16b884774 /target/linux/mvebu/cortexa53/base-files | |
parent | 8347d8b4fbe41ce7db386f948df3ebb6c6bc32d3 (diff) | |
download | upstream-b1bff5cb57fab31932ceaa0dea9509effe9f5800.tar.gz upstream-b1bff5cb57fab31932ceaa0dea9509effe9f5800.tar.bz2 upstream-b1bff5cb57fab31932ceaa0dea9509effe9f5800.zip |
mvebu: switch to generic sdcard upgrade method
Now that we have a generic sdcard upgrade method, which was copied from
the mvebu platform method, we can switch mvebu to the generic method.
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'target/linux/mvebu/cortexa53/base-files')
-rwxr-xr-x | target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh b/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh index d78f4e884a..26bb022415 100755 --- a/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh +++ b/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh @@ -15,7 +15,7 @@ platform_check_image() { globalscale,espressobin-ultra|\ globalscale,espressobin-v7|\ globalscale,espressobin-v7-emmc) - platform_check_image_sdcard "$1" + sdcard_check_image "$1" ;; *) return 0 @@ -31,7 +31,7 @@ platform_do_upgrade() { globalscale,espressobin-ultra|\ globalscale,espressobin-v7|\ globalscale,espressobin-v7-emmc) - platform_do_upgrade_sdcard "$1" + sdcard_do_upgrade "$1" ;; methode,udpu) platform_do_upgrade_uDPU "$1" @@ -49,7 +49,7 @@ platform_copy_config() { globalscale,espressobin-ultra|\ globalscale,espressobin-v7|\ globalscale,espressobin-v7-emmc) - platform_copy_config_sdcard + sdcard_copy_config ;; methode,udpu) platform_copy_config_uDPU |