summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2006-10-18 13:16:03 +0200
committermaximilian attems <maks@debian.org>2006-10-18 13:16:03 +0200
commitdc67493c8b72ebb4a360194a13c74a13d06def52 (patch)
tree8bdbde7e898899789d9ecb54c511cb0de577c13d /debian
parent63f337b6a8cfa058bb2ed9fcf0de6a71f3ffb9ab (diff)
downloadinitramfs-tools-dc67493c8b72ebb4a360194a13c74a13d06def52.tar.gz
initramfs-tools-dc67493c8b72ebb4a360194a13c74a13d06def52.zip
- improve run_bootloader (elilo, zipl)
- fix preinst sed command - bunch of minor fixes
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog40
-rw-r--r--debian/initramfs-tools.preinst4
2 files changed, 41 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 49d07a9..022e167 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,31 @@
+initramfs-tools (0.84) unstable; urgency=high
+
+ Release "A-t-on pris à Saint-Périne, Tous ces dictateurs impotents ?"
+
+ * hook-functions: Use modprobe --ignore-install arg to put all listed
+ modules on initramfs. Thanks Mario Izquierdo <mariodebian@gmail.com>
+ for report. (closes: 384043)
+
+ * update-initramfs: If elilo is around run it on initramfs update, add
+ zipl run.
+
+ * scripts/local: Use vol_id too if around to set FSTYPE. Thanks for the
+ patch to "Alex Owen" <r.alex.owen@gmail.com> (closes: 380004)
+
+ * hooks/thermal: Add many of the windfarm modules for powerpc boxes.
+
+ * initramfs-tools.preinst: merge bits of 0.69ubuntu16. (closes: 393773)
+ urgency high as fixes upgrade from sarge - thanks Federico Grau
+ <donfede@casagrau.org>.
+
+ * scripts/init-top/framebuffer: Fix mknod call. (closes: 393543)
+ Thanks for the patch Kiro Zimmer <debian@kironet.de>.
+
+ * mkinitramfs: Create modulesdir even on monolithic linux. (closes: 393688)
+ Thanks for the patch Ian Campbell <ijc@hellion.org.uk>.
+
+ -- maximilian attems <maks@sternwelten.at> Wed, 18 Oct 2006 11:04:50 +0200
+
initramfs-tools (0.83) unstable; urgency=high
Release "Ois was du verzapfst is a koida Kaffee"
@@ -438,6 +466,18 @@ initramfs-tools (0.69b) unstable; urgency=high
-- maximilian attems <maks@sternwelten.at> Fri, 14 Jul 2006 00:31:30 +0200
+initramfs-tools (0.69ubuntu16) edgy; urgency=low
+
+ * Bring in preinst fixes from Debian, including s/configure/install/ in
+ preinst, since preinst is never called with "configure", and checking
+ for /proc/swaps before we blindly try to read it to determine RESUME.
+ * Do away with the bogus '-n "$2"' test in preinst, since "install" can
+ be called without any arguments at all (and often is, on a clean setup)
+ * On upgrades, revert the RESUME mangling that dapper's d-i did to our
+ config file, avoiding spurious conffile prompts (launchpad.net/63693)
+
+ -- Adam Conrad <adconrad@ubuntu.com> Mon, 16 Oct 2006 17:23:41 +1000
+
initramfs-tools (0.69ubuntu15) edgy; urgency=low
* Add jmicron module to ide list.
diff --git a/debian/initramfs-tools.preinst b/debian/initramfs-tools.preinst
index fc1fd06..aa8c8ca 100644
--- a/debian/initramfs-tools.preinst
+++ b/debian/initramfs-tools.preinst
@@ -4,7 +4,6 @@ set -e
case "$1" in
install)
- if [ -n "$2" ]; then
mkdir -p /etc/initramfs-tools/conf.d
# First time install. Can we autodetect the RESUME partition?
@@ -29,7 +28,7 @@ case "$1" in
-e '/# This file should/,/one per line\./d' \
-e 's/Comments begin with.*/Syntax: module_name [args ...]/' \
-e 's/^# ext2$/# raid1/' \
- -e 's/^# wd io=0x300$/# sd_mod/'
+ -e 's/^# wd io=0x300$/# sd_mod/' \
-e '/^ide-generic/d' \
-e '/^ide-disk/d' \
-e '/^ext2/d' \
@@ -40,7 +39,6 @@ case "$1" in
if [ -e /etc/mkinitrd/DSDT ]; then
cp /etc/mkinitrd/DSDT /etc/initramfs-tools/DSDT.aml
fi
- fi
;;
upgrade)
if [ -n "$2" ] && dpkg --compare-versions "$2" lt "0.61"; then