diff options
| author | Robert Marko | 2023-07-10 11:37:42 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-06-17 18:16:19 +0000 |
| commit | 793b925f8b35e278114bb3ab92564bae8b678122 (patch) | |
| tree | 5998106f634e356f9967d533a3073c012643869e | |
| parent | ae358b84895b54990a5ffb4e4777028db84ef9ec (diff) | |
| download | openwrt-793b925f8b35e278114bb3ab92564bae8b678122.tar.gz | |
mvebu: cortexa53: include mkfs.f2fs and fdisk for sysupgrade
Methode devices require mkfs.f2fs in order to format rootfs and misc
partitions if they have not already been formatted.
fdisk is required if partition table got broke so it can be regenerated.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
| -rwxr-xr-x | target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh | 2 |
1 files changed, 1 insertions, 1 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 cd41c39d7c..f77f15ecab 100755 --- a/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh +++ b/target/linux/mvebu/cortexa53/base-files/lib/upgrade/platform.sh @@ -3,7 +3,7 @@ # Copyright (C) 2016 LEDE-Project.org # -RAMFS_COPY_BIN='fw_printenv fw_setenv' +RAMFS_COPY_BIN='fw_printenv fw_setenv mkfs.f2fs fdisk' RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock' REQUIRE_IMAGE_METADATA=1 |