Re: [PATCH] CONFIG_PM for ppc64, to allow sysrq o

From: Olaf Hering
Date: Tue Mar 15 2005 - 17:11:14 EST


On Tue, Mar 15, Olaf Hering wrote:

>
> For some weird reason, sysrq o is hidden behind CONFIG_PM.
> Why? One can power off just fine without that. Can pm_sysrq_init be
> moved to a better place? I think it used to be in sysrq.c in 2.4.
>
> Too bad, with this patch radeonfb fails to compile.

After disabling radeon and this additional change, sysrq o powers off.
Just dont type too fast over hvc (ctrl o o) ;)

Index: linux-2.6.11-olh/arch/ppc64/kernel/setup.c
===================================================================
--- linux-2.6.11-olh.orig/arch/ppc64/kernel/setup.c
+++ linux-2.6.11-olh/arch/ppc64/kernel/setup.c
@@ -31,6 +31,7 @@
#include <linux/unistd.h>
#include <linux/serial.h>
#include <linux/serial_8250.h>
+#include <linux/pm.h>
#include <asm/io.h>
#include <asm/prom.h>
#include <asm/processor.h>
@@ -710,6 +711,8 @@ void machine_halt(void)

EXPORT_SYMBOL(machine_halt);

+void (*pm_power_off)(void) = machine_power_off;
+
unsigned long ppc_proc_freq;
unsigned long ppc_tb_freq;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/