* Move Meson64 to 5.6.y * Move Meson64 U-boot to 2020.04 Tested on Odroid C2 * Merge, replace and update patches from Khadas branch
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
From a81be34416a320dbf7ccf359f2b082653e43c436 Mon Sep 17 00:00:00 2001
|
|
From: chewitt <github@chrishewitt.net>
|
|
Date: Sat, 13 Apr 2019 05:45:18 +0000
|
|
Subject: [PATCH 054/101] HACK: fix Kodi sysinfo CPU information
|
|
|
|
This allows the CPU information to show in the Kodi sysinfo screen, e.g.
|
|
|
|
"ARMv8 Processor rev 4 (v81)" on S905* devices
|
|
|
|
Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
|
|
---
|
|
arch/arm64/kernel/cpuinfo.c | 3 +--
|
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
|
|
|
diff --git a/arch/arm64/kernel/cpuinfo.c b/arch/arm64/kernel/cpuinfo.c
|
|
index 86136075ae41..f321dc2d8129 100644
|
|
--- a/arch/arm64/kernel/cpuinfo.c
|
|
+++ b/arch/arm64/kernel/cpuinfo.c
|
|
@@ -147,8 +147,7 @@ static int c_show(struct seq_file *m, void *v)
|
|
* "processor". Give glibc what it expects.
|
|
*/
|
|
seq_printf(m, "processor\t: %d\n", i);
|
|
- if (compat)
|
|
- seq_printf(m, "model name\t: ARMv8 Processor rev %d (%s)\n",
|
|
+ seq_printf(m, "model name\t: ARMv8 Processor rev %d (%s)\n",
|
|
MIDR_REVISION(midr), COMPAT_ELF_PLATFORM);
|
|
|
|
seq_printf(m, "BogoMIPS\t: %lu.%02lu\n",
|
|
--
|
|
2.17.1
|
|
|