summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog12
-rwxr-xr-xhooks/thermal1
-rw-r--r--scripts/functions2
-rwxr-xr-xscripts/init-premount/thermal2
4 files changed, 15 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index c39e1b5..ed11e31 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+initramfs-tools (0.66) unstable; urgency=low
+
+ * hooks/thermal: Add i2c-powermac.
+
+ * scripts/init-premount/thermal: Load i2c-powermac on ppc boot.
+ Fixes fan noises for Sven Luther <svenl@debian.org>
+
+ * scripts/function: Fix typo s/FS1/PS1/ on panic call. (closes: #375624)
+ Thanks to Tim Phipps <tim@phipps-hutton.freeserve.co.uk> for the report.
+
+ -- maximilian attems <maks@sternwelten.at> Tue, 27 Jun 2006 14:04:17 +0200
+
initramfs-tools (0.65b) unstable; urgency=low
* scripts/local-top/lvm: Load snapshot and mirror modules. (Closes: #375342)
diff --git a/hooks/thermal b/hooks/thermal
index c27c957..9bfd323 100755
--- a/hooks/thermal
+++ b/hooks/thermal
@@ -23,6 +23,7 @@ case "$DPKG_ARCH" in
# copy the right modules
powerpc|ppc64)
manual_add_modules therm_pm72
+ manual_add_modules i2c-powermac
;;
i386|amd64|ia64)
manual_add_modules fan
diff --git a/scripts/functions b/scripts/functions
index 35485c6..a4faaa8 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -62,7 +62,7 @@ panic()
modprobe -q i8042
modprobe -q atkbd
echo $@
- FS1='(initramfs) ' /bin/sh </dev/console >/dev/console 2>&1
+ PS1='(initramfs) ' /bin/sh </dev/console >/dev/console 2>&1
}
maybe_break()
diff --git a/scripts/init-premount/thermal b/scripts/init-premount/thermal
index d59af8a..3518e7c 100755
--- a/scripts/init-premount/thermal
+++ b/scripts/init-premount/thermal
@@ -18,7 +18,7 @@ esac
case "$DPKG_ARCH" in
# load the right modules
powerpc|ppc64)
- modprobe -q i2c-keywest
+ modprobe -q i2c-powermac
modprobe -q therm_pm72
;;
i386|amd64|ia64)