summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rw-r--r--debian/control2
-rwxr-xr-xmkinitramfs2
3 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 67d3b59..d201cff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+initramfs-tools (0.48) unstable; urgency=low
+
+ * mkinitramfs: klibc 1.1.14 moved from /usr/lib/klibc/lib to /lib
+ Bonus: You can now execute any klibc bin directly.
+ Cope with the move and pump dep. (Closes: 345949)
+
+ -- maximilian attems <maks@sternwelten.at> Wed, 4 Jan 2006 16:11:25 +0100
+
initramfs-tools (0.47) unstable; urgency=low
* mkinitramfs: Don't complain about missing /bin/sh - use rm -f.
diff --git a/debian/control b/debian/control
index ee26d30..463307a 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Standards-Version: 3.6.2.0
Package: initramfs-tools
Architecture: all
-Depends: klibc-utils (>= 1.0.14-1ubuntu2), busybox (>= 1:1.01-3), cpio, udev (>= 0.076-5)
+Depends: klibc-utils (>= 1.1.14-2), busybox (>= 1:1.01-3), cpio, udev (>= 0.076-5)
Provides: linux-initramfs-tool
Description: tools for generating an initramfs
This package contains tools to create and boot an initramfs for prepackaged
diff --git a/mkinitramfs b/mkinitramfs
index 0004dbc..5a89213 100755
--- a/mkinitramfs
+++ b/mkinitramfs
@@ -159,7 +159,7 @@ fi
# symlinks.
ln -s /usr/lib/klibc/bin/* ${DESTDIR}/bin
-ln -s /usr/lib/klibc/lib/klibc-*.so ${DESTDIR}/lib
+ln -s /lib/klibc-*.so ${DESTDIR}/lib
copy_exec /usr/share/initramfs-tools/init /init
cp -a /usr/share/initramfs-tools/scripts/* "${DESTDIR}/scripts"
for f in $(cd ${CONFDIR}/scripts && \