summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2005-10-01 02:33:30 +0200
committermaximilian attems <maks@debian.org>2005-10-01 02:33:30 +0200
commita893fa82665ee472079292eb84a125ef81009124 (patch)
tree540886f92c987fa65c7e74a9b4e98459ea554efc /debian
parent14739b596ae27800ae6ce071745cf2da382d73b4 (diff)
downloadinitramfs-tools-a893fa82665ee472079292eb84a125ef81009124.tar.gz
initramfs-tools-a893fa82665ee472079292eb84a125ef81009124.zip
apply all the 0.30 upstream changes.
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog41
-rw-r--r--debian/initramfs-tools.docs1
-rw-r--r--debian/rules4
3 files changed, 45 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 4591d65..1ea455b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,42 @@
+initramfs-tools (0.30) unstable; urgency=low
+
+ Apparition Octobre Rouge
+
+ [ maximilian Attems ]
+
+ * Resynconise with latest upstream now we are in unstable.
+
+ [ Jeff Bailey ]
+ * debian/rules: Make sure hooks and scripts are chmod +x
+
+ * hook-functions (auto_add_modules): Add advansys.
+
+ * debian/init: Add "Loading, please wait..." message.
+ Don't log for init-top scripts to avoid usplash noise.
+
+ * init: Add start of debug command line option.
+
+ * scripts/functions (log_begin_msg): Call usplash if available
+ (log_end_msg): Call usplash if available
+ (panic): Close usplash if available
+
+ * scripts/functions (load_modules): Quote resume variable.
+ Thanks to Christian Kellner for helping test that!
+
+ * scripts/local-premount/suspend: Quote resume variable.
+
+ * update-initramfs: Use basename on the link target to get the
+ version number.
+
+ * HACKING: Start of some notes on how this package actually works.
+ * debian/initramfs-tools.docs: Install it.
+
+ [ Matthew Garrett ]
+ * scripts/functions (load_modules): Run udevstart after loading block
+ drivers should fix resume from hibernate on non-LVM systems.
+
+ -- maximilian attems <maks@sternwelten.at> Fri, 30 Sep 2005 19:34:55 +0200
+
initramfs-tools (0.27) unstable; urgency=low
* Remove unused BUSYBOX config option as we use busybox anyway.
@@ -17,7 +56,7 @@ initramfs-tools (0.27) unstable; urgency=low
* update-initramfs.8 New file install it.
* The debian busybox-cvs-static installs into /bin/busybox:
- fix pathes vis-à-vis ubuntu version. make that a variable on top.
+ fix pathes vis-a-vis ubuntu version. make that a variable on top.
-- maximilian attems <maks@sternwelten.at> Tue, 20 Sep 2005 13:52:00 +0200
diff --git a/debian/initramfs-tools.docs b/debian/initramfs-tools.docs
new file mode 100644
index 0000000..5c374b1
--- /dev/null
+++ b/debian/initramfs-tools.docs
@@ -0,0 +1 @@
+HACKING
diff --git a/debian/rules b/debian/rules
index 6b91c1f..2a5ae55 100644
--- a/debian/rules
+++ b/debian/rules
@@ -4,3 +4,7 @@ include /usr/share/cdbs/1/rules/debhelper.mk
pre-build::
chmod +x init mkinitramfs
+ chmod +x hooks/*
+ for x in `find scripts/ -maxdepth 1 -type d | tail -n+2`; do \
+ chmod -R +x $$x; \
+ done