From 7bf3a4432c4d329c2b291440d51c03d89e6116ff Mon Sep 17 00:00:00 2001 From: Philippe Schenker Date: Fri, 22 Apr 2022 11:01:57 +0200 Subject: u-boot: distro-boot-script: fix ordering of console arguments systemd only prints to the last console= statement that it finds in the kernel arguments. Make sure that it prints to UART instead of display on tty1. Related-to: ELB-4435 Signed-off-by: Philippe Schenker --- recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in b/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in index c667d49..b929afb 100644 --- a/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in +++ b/recipes-bsp/u-boot/u-boot-distro-boot/boot.cmd.in @@ -70,7 +70,7 @@ fi if test -n ${setup}; then run setup else - env set setupargs 'console=${console},${baudrate} console=tty1 consoleblank=0' + env set setupargs 'console=tty1 console=${console},${baudrate} consoleblank=0' fi if test ${kernel_image} = "Image.gz" -- cgit v1.2.3