From 00945259b316710181dd131bca1318cfc27a9e0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwenol=C3=A9=20Beauchesne?= Date: Wed, 3 Sep 2003 07:06:38 +0000 Subject: acpi=ht is x86 only --- make_boot_img | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make_boot_img b/make_boot_img index a89a156e6..0653e73ce 100755 --- a/make_boot_img +++ b/make_boot_img @@ -15,7 +15,8 @@ rename 'all.kernels', 'kernel/all.kernels'; rename 'all.modules', 'kernel/all.modules'; $default_append = "ramdisk_size=128000 root=/dev/ram3"; -$default_acpi = "acpi=ht"; +# full acpi support for amd64, enough acpi support for x86 ht, no acpi for others +$default_acpi = ($arch =~ /i.86/ ? "acpi=ht" : ($arch =~ /x86_64/ ? "acpi=off" : "acpi=off")); $default_vga = "vga=788"; $instdir = "mdk-stage1"; -- cgit v1.2.1