public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] can we compile ACPI without define CONFIG_PM ?
@ 2004-04-29 22:54 Sérgio Monteiro Basto
  0 siblings, 0 replies; only message in thread
From: Sérgio Monteiro Basto @ 2004-04-29 22:54 UTC (permalink / raw)
  To: Linux Kernel Mailing List, acpi-devel

[-- Attachment #1: Type: text/plain, Size: 727 bytes --]

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.

[-- Attachment #2: configopti.diff --]
[-- Type: text/x-patch, Size: 805 bytes --]

--- 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
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-04-29 22:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-29 22:54 [PATCH] can we compile ACPI without define CONFIG_PM ? Sérgio Monteiro Basto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox