xref: /OK3568_Linux_fs/device/rockchip/common/scripts/install-e2fsprogs.sh (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2
3# 1.46.6 has -d option and without metadata_csum_seed and orphan_file features
4E2FSPROGS_VER="v1.46.6"
5echo "git clone https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git --depth 1 -b $E2FSPROGS_VER"
6echo "cd e2fsprogs"
7echo "./configure"
8echo "sudo make install -j8 -k -i"
9