diff mbox series

[U-Boot,v2,1/4] Fix default console on odroid to only specify the device, as "console=" is redundant with the boot environment.

Message ID 20170913214256.8031-2-vagrant@debian.org
State Superseded
Delegated to: Minkyu Kang
Headers show
Series Switch odroid to use distro_bootcmd. | expand

Commit Message

Vagrant Cascadian Sept. 13, 2017, 9:42 p.m. UTC
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
---

 include/configs/odroid.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/include/configs/odroid.h b/include/configs/odroid.h
index 2afb19f84a..43138e2191 100644
--- a/include/configs/odroid.h
+++ b/include/configs/odroid.h
@@ -44,7 +44,7 @@ 
 /* Console configuration */
 
 #define CONFIG_BOOTCOMMAND		"run autoboot"
-#define CONFIG_DEFAULT_CONSOLE		"console=ttySAC1,115200n8\0"
+#define CONFIG_DEFAULT_CONSOLE		"ttySAC1,115200n8\0"
 
 #define CONFIG_SYS_INIT_SP_ADDR	(CONFIG_SYS_LOAD_ADDR \
 					- GENERATED_GBL_DATA_SIZE)