translation for amd64 systems, in the initrd creation script.
(Addresses Debian bug #253595)
e2fsprogs (1.35-7) unstable; urgency=low
+ * Filter out linux-gate.so, which is a pseudo entry for the 32->64bit
+ translation for amd64 systems, in the initrd creation script.
+ (Closes: #253595)
* Change the initrd scripts to be use a helper program which avoids
needing to mount the root filesystem and use awk to query the
/etc/fstab file. (Closes: #247775)
;;
esac
-for i in `ldd /sbin/tune2fs /usr/bin/awk | sort -u | awk '{print $3}'`
+PROGS="/sbin/tune2fs /usr/lib/e2initrd_helper"
+LIBS=`ldd $PROGS | grep -v linux-gate.so | sort -u | \
+ awk '{print $3}'`
+for i in $LIBS
do
mkdir -p `dirname $INITRDDIR/$i`
cp $i $INITRDDIR/$i