6116861edf
- Disable CONFIG_DEBUG_VM_PGFLAGS on non debug kernels (rhbz 1335173) - CVE-2016-3713 kvm: out-of-bounds access in set_var_mtrr_msr (rhbz 1332139 1336410)
47 lines
1.4 KiB
Diff
47 lines
1.4 KiB
Diff
From ce7a9e482dcf66d155e74b39ada1708cf6d9cb25 Mon Sep 17 00:00:00 2001
|
|
From: Mark Salter <msalter@redhat.com>
|
|
Date: Wed, 25 Mar 2015 14:17:50 -0400
|
|
Subject: [PATCH] arm64: avoid needing console= to enable serial console
|
|
|
|
Tell kernel to prefer one of the serial ports for console on
|
|
platforms currently supported (pl011 or 8250). console= on
|
|
command line will override these assumed preferences. This is
|
|
just a hack to get the behavior we want from DT provided by
|
|
firmware.
|
|
|
|
Signed-off-by: Mark Salter <msalter@redhat.com>
|
|
---
|
|
arch/arm64/kernel/setup.c | 20 ++++++++++++++++++++
|
|
1 file changed, 20 insertions(+)
|
|
|
|
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
|
|
index 9dc67769b6a4..dfac33b47423 100644
|
|
--- a/arch/arm64/kernel/setup.c
|
|
+++ b/arch/arm64/kernel/setup.c
|
|
@@ -417,3 +417,22 @@ static int __init register_kernel_offset_dumper(void)
|
|
return 0;
|
|
}
|
|
__initcall(register_kernel_offset_dumper);
|
|
+
|
|
+/*
|
|
+ * Temporary hack to avoid need for console= on command line
|
|
+ */
|
|
+static int __init arm64_console_setup(void)
|
|
+{
|
|
+ /* Allow cmdline to override our assumed preferences */
|
|
+ if (console_set_on_cmdline)
|
|
+ return 0;
|
|
+
|
|
+ if (IS_ENABLED(CONFIG_SERIAL_AMBA_PL011))
|
|
+ add_preferred_console("ttyAMA", 0, "115200");
|
|
+
|
|
+ if (IS_ENABLED(CONFIG_SERIAL_8250))
|
|
+ add_preferred_console("ttyS", 0, "115200");
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+early_initcall(arm64_console_setup);
|
|
--
|
|
2.5.0
|
|
|