Support bootoption nogrmlacpi, inform user how to skip acpi stuff 0.7.9
authorMichael Prokop <mika@grml.org>
Wed, 25 Jul 2007 13:21:27 +0000 (15:21 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 25 Jul 2007 13:21:27 +0000 (15:21 +0200)
autoconfig.functions
debian/changelog

index f40d45c..3956408 100755 (executable)
@@ -716,9 +716,11 @@ fi
 config_acpi_apm(){
 if [ -d /proc/acpi ]; then
   if checkbootparam "noacpi"; then
-    ewarn "Skipping ACPI Bios detection as requested on boot commandline." ; eend 0
+    ewarn "Skipping ACPI Bios detection as requested via noacpi on boot commandline." ; eend 0
+  elif checkbootparam "nogrmlacpi" ; then
+    ewarn "Skipping ACPI Bios detection as requested via nogrmlacpi on boot commandline." ; eend 0
   else
-    einfo "ACPI Bios found, activating modules: "
+    einfo "ACPI Bios found, activating modules (disable via bootoption noacpi / nogrmlacpi): "
     eindent
     found=""
     for a in /lib/modules/$KERNEL/kernel/drivers/acpi/*; do
index 96e439e..4a2e6d2 100644 (file)
@@ -1,3 +1,12 @@
+grml-autoconfig (0.7.9) unstable; urgency=low
+
+  * Support bootoption nogrmlacpi to disable acpi stuff inside
+    grml-autoconfig without having to boot using noacpi (which
+    triggers kernel code actions).
+  * Inform user how to skip the acpi stuff.
+
+ -- Michael Prokop <mika@grml.org>  Wed, 25 Jul 2007 15:20:14 +0200
+
 grml-autoconfig (0.7.8) unstable; urgency=low
 
   * Inform users about CONFIG_DHCP=no when running from harddisk.