]> git.ipfire.org Git - ipfire-2.x.git/blame - src/patches/suse-2.6.27.31/patches.suse/suse-ppc64-branding
Move xen patchset to new version's subdir.
[ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.suse / suse-ppc64-branding
CommitLineData
00e5a55c
BS
1From: <olh@suse.de>
2Subject: display the product in the frontpanel LCD
3Patch-mainline: never
4
5display the product in the frontpanel LCD
6also 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;