From: Andres Salomon Russell King wrote: > On Tue, Aug 14, 2007 at 12:37:52PM -0700, akpm@linux-foundation.org wrote: [...] > > @@ -810,7 +810,15 @@ int update_console_cmdline(char *name, i > > return -1; > > } > > > > -#ifndef CONFIG_DISABLE_CONSOLE_SUSPEND > > +int console_suspend_enabled = 1; > > This needs to be exported. > Thanks for pointing that out; I've updated the patch. Andrew, can you please swap this one in? Signed-off-by: Andres Salomon Cc: "Rafael J. Wysocki" Acked-by: Pavel Machek Cc: Nigel Cunningham Cc: Russell King Signed-off-by: Andrew Morton --- kernel/printk.c | 1 + 1 files changed, 1 insertion(+) diff -puN kernel/printk.c~serial-turn-serial-console-suspend-a-boot-rather-than-compile-time-option-update kernel/printk.c --- a/kernel/printk.c~serial-turn-serial-console-suspend-a-boot-rather-than-compile-time-option-update +++ a/kernel/printk.c @@ -811,6 +811,7 @@ int update_console_cmdline(char *name, i } int console_suspend_enabled = 1; +EXPORT_SYMBOL(console_suspend_enabled); static int __init console_suspend_disable(char *str) { _