configs: amlogic: check a reboot reason to enter download mode
authorJaehoon Chung <jh80.chung@samsung.com>
Mon, 21 Dec 2020 05:06:57 +0000 (14:06 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 17 Oct 2023 04:19:28 +0000 (13:19 +0900)
Check a reboot reason to enter download mode.
If reboot reason is download, it will be entered to download mode.

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

index f87ae80..fe1a382 100644 (file)
        "thor; "                                                        \
        "fi"
 
+#define REBOOT_CHECK   \
+       "sm reboot_reason reason; "     \
+       "echo \"reboot ${reason}\"; "   \
+       "if test ${reason} = download; then "   \
+       "thor; "                                \
+       "fi"
+
 #define TIZEN_ENV_SETTING \
        "mmcbootpart=1\0"                       \
        "mmcrootpart=2\0"                       \
        "boot_prefixes=" TIZEN_BOOT_PREFIX "\0" \
        "mbr_parts=" PARTS_DEFAULT "\0"         \
        "mbr_check=" MBR_CHECK "\0"             \
+       "reboot_check=" REBOOT_CHECK "\0"       \
        "splashimage=0x2000000\0"               \
        "splashsource=mmc_fs\0"                 \
        "splashfile=tizen_logo.bmp.gz\0"        \