new/device/rockchip/common/scripts/install-e2fsprogs.sh
2025-05-10 21:58:58 +08:00

9 lines
286 B
Bash
Executable File

#!/bin/sh
# 1.46.6 has -d option and without metadata_csum_seed and orphan_file features
E2FSPROGS_VER="v1.46.6"
echo "git clone https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git --depth 1 -b $E2FSPROGS_VER"
echo "cd e2fsprogs"
echo "./configure"
echo "sudo make install -j8 -k -i"