From: Jaehoon Chung Date: Wed, 6 Nov 2019 07:25:20 +0000 (+0900) Subject: configs: tizen: change from boardname to board_name X-Git-Tag: submit/tizen/20191107.042334^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eadecc1979a592267f510867d581f4411a31858c;p=platform%2Fkernel%2Fu-boot.git configs: tizen: change from boardname to board_name In board/samsung/common/misc.c, it's set to board's name as board_name. If it's used to boardname, it can't set to correct board's name. This is caused the broken kernel booting on U3 board. Change-Id: I3172254bd700309c3b8cd4420739ee214b411570 Signed-off-by: Jaehoon Chung --- diff --git a/include/configs/tizen.h b/include/configs/tizen.h index 55df739d7f..34b8b39027 100644 --- a/include/configs/tizen.h +++ b/include/configs/tizen.h @@ -60,7 +60,7 @@ PLATFORM_SETUP_INFO \ PLATFORM_BOOT_INFO \ "checkboard=" \ - "if test ${boardname} = trats2; then " \ + "if test ${board_name} = trats2; then " \ "setenv console" CONSOLE_TTY2";" \ "else " \ "setenv console" CONSOLE_TTY1";" \ diff --git a/include/samsung/platform_boot.h b/include/samsung/platform_boot.h index 39c1f0a56f..fd7c69db51 100644 --- a/include/samsung/platform_boot.h +++ b/include/samsung/platform_boot.h @@ -66,7 +66,7 @@ "setenv kernelname Image.itb;" \ "run loadkernel;" \ "run kernel_args;" \ - "bootm ${kerneladdr}#${boardname}\0" \ + "bootm ${kerneladdr}#${board_name}\0" \ "boot_uimg=" \ "setenv kerneladdr 0x40007FC0;" \ "setenv kernelname uImage;" \