aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/cortexa72
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2021-08-07 01:42:43 +0300
committerStijn Tintel <stijn@linux-ipv6.be>2021-08-07 01:43:39 +0300
commitb1bff5cb57fab31932ceaa0dea9509effe9f5800 (patch)
treefa2f1f99f3b2fd18b2aee129a68a74f16b884774 /target/linux/mvebu/cortexa72
parent8347d8b4fbe41ce7db386f948df3ebb6c6bc32d3 (diff)
downloadupstream-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/cortexa72')
-rwxr-xr-xtarget/linux/mvebu/cortexa72/base-files/lib/upgrade/platform.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/mvebu/cortexa72/base-files/lib/upgrade/platform.sh b/target/linux/mvebu/cortexa72/base-files/lib/upgrade/platform.sh
index 04ea634097..1713f55b72 100755
--- a/target/linux/mvebu/cortexa72/base-files/lib/upgrade/platform.sh
+++ b/target/linux/mvebu/cortexa72/base-files/lib/upgrade/platform.sh
@@ -11,7 +11,7 @@ platform_check_image() {
case "$(board_name)" in
marvell,armada8040-mcbin-doubleshot|\
marvell,armada8040-mcbin-singleshot)
- platform_check_image_sdcard "$1"
+ sdcard_check_image "$1"
;;
*)
return 0
@@ -23,7 +23,7 @@ platform_do_upgrade() {
case "$(board_name)" in
marvell,armada8040-mcbin-doubleshot|\
marvell,armada8040-mcbin-singleshot)
- platform_do_upgrade_sdcard "$1"
+ sdcard_do_upgrade "$1"
;;
*)
default_do_upgrade "$1"
@@ -34,7 +34,7 @@ platform_copy_config() {
case "$(board_name)" in
marvell,armada8040-mcbin-doubleshot|\
marvell,armada8040-mcbin-singleshot)
- platform_copy_config_sdcard
+ sdcard_copy_config
;;
esac
}