samsung: tizen_rpi: Fix wrong console environment
authorJaehoon Chung <jh80.chung@samsung.com>
Mon, 19 Aug 2024 02:05:34 +0000 (11:05 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Mon, 28 Oct 2024 11:28:47 +0000 (20:28 +0900)
console is reassigned in bootscript with ${console}.
If it'sconsole=ram , $console should be "ram".
To use a correct environment, change from 'console ram' to 'console
console=ram'.

Change-Id: I05d19b46152033a20dfb9c288275ca0dc0f5d665
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
include/samsung/tizen_rpi.h

index 6c7a86acc09f6d0e1aa408b16fa0a30ea734b9c9..a1b3224dfcc12fcf16ddc29ce00a075fcb37e61f 100644 (file)
        "dfu_device=" __stringify(CONFIG_MMC_DEFAULT_DEV) "\0" \
        "set_to_part_a=" SET_TO_PARTITION_X("0x61") "\0"                \
        "set_to_part_b=" SET_TO_PARTITION_X("0x62") "\0"                \
-       "disable_delay=setenv console ram; setenv bootdelay 0; saveenv\0"               \
+       "disable_delay=setenv console console=ram; setenv bootdelay 0; saveenv\0"               \
        "enable_delay=env delete console; setenv bootdelay 2; saveenv\0"                        \
        "gpt_parts=" GPT_PARTS_DEFAULT "\0"             \
        "update_gpt_part=gpt write ${devtype} ${devnum} ${gpt_parts}\0"         \