diff options
| author | Robert Marko | 2023-07-10 11:43:51 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-06-17 18:16:20 +0000 |
| commit | 149a1ab273ca5b8582c6e02c7aa99cf9887c4437 (patch) | |
| tree | fdede7b75fe4684333cc2f0d8905b0e1c33d89bd | |
| parent | 23191b407564d81d28f709c5a05fb93edb7b96ba (diff) | |
| download | openwrt-149a1ab273ca5b8582c6e02c7aa99cf9887c4437.tar.gz | |
mvebu: uDPU/eDPU: mount misc partition with ZSTD compression
F2FS requires the compression algorith to be passed as argument while
mounting, so lets do so for the misc partition.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
| -rw-r--r-- | target/linux/mvebu/cortexa53/base-files/lib/preinit/82_uDPU | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mvebu/cortexa53/base-files/lib/preinit/82_uDPU b/target/linux/mvebu/cortexa53/base-files/lib/preinit/82_uDPU index 8d5a482b82..1c72d0fe66 100644 --- a/target/linux/mvebu/cortexa53/base-files/lib/preinit/82_uDPU +++ b/target/linux/mvebu/cortexa53/base-files/lib/preinit/82_uDPU @@ -15,7 +15,7 @@ preinit_mount_udpu() { if [ -b "${mmcdev}p4" ]; then mkdir /misc - mount -t f2fs ${mmcdev}p4 /misc + mount -o compress_algorithm=zstd -t f2fs ${mmcdev}p4 /misc [ -f "/misc/$BACKUP_FILE" ] && { echo "- Restoring configuration files -" tar xzf "/misc/$BACKUP_FILE" -C / |