e2fsprogs: create symlinks to fsck.*, install remove fsck binary from target (we want the one from util-linux)

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-06-07 00:25:30 +02:00
parent 6b45521b40
commit 79191da0dd

View File

@ -80,6 +80,7 @@ post_makeinstall_target() {
rm -rf $INSTALL/sbin/e2undo
rm -rf $INSTALL/sbin/e4defrag
rm -rf $INSTALL/sbin/filefrag
rm -rf $INSTALL/sbin/fsck
rm -rf $INSTALL/sbin/logsave
rm -rf $INSTALL/sbin/mklost+found
}
@ -91,5 +92,9 @@ pre_configure_init() {
makeinstall_init() {
mkdir -p $INSTALL/sbin
cp e2fsck/e2fsck $INSTALL/sbin
cp e2fsck/e2fsck $INSTALL/sbin
ln -sf e2fsck $INSTALL/sbin/fsck.ext2
ln -sf e2fsck $INSTALL/sbin/fsck.ext3
ln -sf e2fsck $INSTALL/sbin/fsck.ext4
ln -sf e2fsck $INSTALL/sbin/fsck.ext4dev
}