[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#272728: /usr/lib/e2initrd_helper not found



Package: initrd-tools
Version: 0.1.74

I got an error message at mkinitrd's runtime:

# mkinitrd -o /boot/initrd.img-2.6.8.1 2.6.8.1
cp: cannot stat `/usr/lib/e2initrd_helper': No such file or directory
ldd: /usr/lib/e2initrd_helper: No such file or directory


The string "e2initrd_helper" appears in

	/usr/share/initrd-tools/scripts/e2fsprogs

Here is a patch:

--- e2fsprogs~	2004-09-19 14:27:17.000000000 +0200
+++ e2fsprogs	2004-09-21 18:17:03.000000000 +0200
@@ -14,7 +14,9 @@
        ;;
 esac

-PROGS="/sbin/tune2fs /usr/lib/e2initrd_helper"
+PROGS="$(find /sbin/tune2fs /usr/lib/e2initrd_helper -print)"
+test "$PROGS" || exit 0
+
 LIBS=`ldd $PROGS | grep -v linux-gate.so | sort -u | \
     awk '{print $3}'`
 for i in $LIBS


BUT: e2fsprogs seems to be generated. Anybody knows where
it comes from?


Regards

Harri



Reply to: