[PATCH] can we compile ACPI without define CONFIG_PM ?

From: Sérgio Monteiro Basto
Date: Thu Apr 29 2004 - 18:00:55 EST


Hi Kernel mailing list!

IIRC: if I recall correctly
we couldn't compile ACPI without Power management option (CONFIG_PM),
but now, this is possible.

If the answer to the subject is no, then consider apply this patch on
kernel 2.4.26.

Accidentally, I compile ACPI without CONFIG_PM on one Dell something
dual Pentium III and power off didn't work.

So I need some confirmation from acpi-devel, but this is one meter of
xconfig of the kernel so ...

For APM Xconfiguration, it's better that, we can choose APM options only
if we select APM ( because if we don't select CONFIG_PM, CONFIG_APM will
be disable and the APM options don't!).
This patch correct also this situation.

Thanks,
--
Sérgio M. B.
--- linux-2.4.26s/arch/i386/config.in.orig 2004-04-29 23:38:38.000000000 +0100
+++ linux-2.4.26s/arch/i386/config.in 2004-04-29 23:40:58.000000000 +0100
@@ -360,7 +360,7 @@
bool 'Power Management support' CONFIG_PM

dep_tristate ' Advanced Power Management BIOS support' CONFIG_APM $CONFIG_PM
-if [ "$CONFIG_APM" != "n" ]; then
+if [ "$CONFIG_APM" != "n" -a "$CONFIG_PM" = "y" ]; then
bool ' Ignore USER SUSPEND' CONFIG_APM_IGNORE_USER_SUSPEND
bool ' Enable PM at boot time' CONFIG_APM_DO_ENABLE
bool ' Make CPU Idle calls when idle' CONFIG_APM_CPU_IDLE
@@ -370,7 +370,9 @@
bool ' Use real mode APM BIOS call to power off' CONFIG_APM_REAL_MODE_POWER_OFF
fi

-source drivers/acpi/Config.in
+if [ "$CONFIG_PM" = "y" ]; then
+ source drivers/acpi/Config.in
+fi

endmenu