summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms
diff options
context:
space:
mode:
authorTony Breeds <tony@bakeyournoodle.com>2014-03-12 19:17:07 +1100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-05-01 08:26:18 +1000
commit983d8a6dda1d477f3ffa23a04cc2fa4d66fd93d1 (patch)
tree60c80ad6504c4a5584025ea529abcc8b55789d70 /arch/powerpc/platforms
parent9048e648bc22d7b59093f8ca1978c5767893aaa5 (diff)
downloadlinux-983d8a6dda1d477f3ffa23a04cc2fa4d66fd93d1.tar.gz
linux-983d8a6dda1d477f3ffa23a04cc2fa4d66fd93d1.tar.bz2
linux-983d8a6dda1d477f3ffa23a04cc2fa4d66fd93d1.zip
powerpc/le: Show the endianess of the LPAR under PowerVM.
Signed-off-by: Tony Breeds <tony@bakeyournoodle.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms')
-rw-r--r--arch/powerpc/platforms/pseries/setup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/setup.c b/arch/powerpc/platforms/pseries/setup.c
index 2db8cc691bf4..215c3c269617 100644
--- a/arch/powerpc/platforms/pseries/setup.c
+++ b/arch/powerpc/platforms/pseries/setup.c
@@ -510,7 +510,11 @@ static void __init pSeries_setup_arch(void)
static int __init pSeries_init_panel(void)
{
/* Manually leave the kernel version on the panel. */
+#ifdef __BIG_ENDIAN__
ppc_md.progress("Linux ppc64\n", 0);
+#else
+ ppc_md.progress("Linux ppc64le\n", 0);
+#endif
ppc_md.progress(init_utsname()->version, 0);
return 0;