summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog8
-rw-r--r--update-initramfs2
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 033943e..a20ff37 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+initramfs-tools (0.52c) unstable; urgency=high
+
+ * update-initramfs: set_current_version needs to check against
+ /boot/initrd-`uname -r` and not /boot/vmlinu?-`uname -r`.
+ Otherwise this builds initramfs for newer handbuild trees too.
+
+ -- maximilian attems <maks@sternwelten.at> Mon, 20 Feb 2006 15:46:54 +0100
+
initramfs-tools (0.52b) unstable; urgency=high
* update-initramfs: Set takeover=1. This allows hooks to regenerate the
diff --git a/update-initramfs b/update-initramfs
index 9ab4607..0c7b9e7 100644
--- a/update-initramfs
+++ b/update-initramfs
@@ -114,7 +114,7 @@ get_sorted_versions()
set_current_version()
{
- if [ -f /boot/vmlinu?-`uname -r` ]; then
+ if [ -f /boot/initrd.img-`uname -r` ]; then
version=`uname -r`
fi
}