]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/patches/suse-2.6.27.25/patches.suse/suse-ppc64-branding
Updated xen patches taken from suse.
[people/teissler/ipfire-2.x.git] / src / patches / suse-2.6.27.25 / patches.suse / suse-ppc64-branding
1 From: <olh@suse.de>
2 Subject: display the product in the frontpanel LCD
3 Patch-mainline: never
4
5 display the product in the frontpanel LCD
6 also the uname -r output instead of uname -v.
7
8 arch/powerpc/platforms/pseries/setup.c | 6 +++++-
9 1 file changed, 5 insertions(+), 1 deletion(-)
10
11 --- a/arch/powerpc/platforms/pseries/setup.c
12 +++ b/arch/powerpc/platforms/pseries/setup.c
13 @@ -299,7 +299,11 @@ static void __init pSeries_setup_arch(vo
14 static int __init pSeries_init_panel(void)
15 {
16 /* Manually leave the kernel version on the panel. */
17 - ppc_md.progress("Linux ppc64\n", 0);
18 +#ifdef CONFIG_CRASH_DUMP
19 + ppc_md.progress("SuSE Linux crashed :-(\n", 0);
20 +#else
21 + ppc_md.progress("SuSE Linux\n", 0);
22 +#endif
23 ppc_md.progress(init_utsname()->version, 0);
24
25 return 0;