From: Jaehoon Chung Date: Mon, 11 Nov 2024 06:46:09 +0000 (+0900) Subject: tizen: bootscript: tizen-boot-vf2: Fix the earlycon value X-Git-Tag: accepted/tizen/unified/20241126.175211~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=771cdf5c0307f375f60f312461bf4f82fba739b6;p=platform%2Fkernel%2Fu-boot.git tizen: bootscript: tizen-boot-vf2: Fix the earlycon value When it's set only to "earlycon", it's stucked at Starting kernel. To fix this problem, add "earylcon=sbi" as correct value. Change-Id: Id82c8435052b6fb67c72759276fae42b8cee8d33 Signed-off-by: Jaehoon Chung --- diff --git a/tizen/bootscript/tizen-boot-vf2.scr b/tizen/bootscript/tizen-boot-vf2.scr index 1ef0d36527..2c2e7e18d3 100644 --- a/tizen/bootscript/tizen-boot-vf2.scr +++ b/tizen/bootscript/tizen-boot-vf2.scr @@ -138,7 +138,7 @@ fi # set console device if nothing is set if test -z "${console}"; then; - setenv console "console=ttyS0,115200n8 earlycon"; + setenv console "console=ttyS0,115200n8 earlycon=sbi"; fi echo "console: ${console}"