From: Seung-Woo Kim Date: Sat, 25 Apr 2020 06:05:34 +0000 (+0900) Subject: cmd: thordown: Fix to show stopped message when interrupted X-Git-Tag: submit/tizen/20201110.005738~97 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1ce8889419066b3a45cef3d0a6e93a954fe02992;p=platform%2Fkernel%2Fu-boot.git cmd: thordown: Fix to show stopped message when interrupted The thordown command can be interrupted by Ctrl-C, and it can be identified with error value. Fix to show stopped message when interrupted. Change-Id: Idfe1a9dc1e168ea20c94d49ada497dc1b66bde52 Signed-off-by: Seung-Woo Kim --- diff --git a/cmd/thordown.c b/cmd/thordown.c index f75825b29e..a817e89a32 100644 --- a/cmd/thordown.c +++ b/cmd/thordown.c @@ -65,12 +65,13 @@ int do_thor_down(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) ret = thor_init(); if (ret) { - printk("THOR DOWNLOAD failed: %d\n", ret); - if (ret == -EINTR) + if (ret == -EINTR) { + printk("THOR DOWNLOAD stopped\n"); ret = CMD_RET_SUCCESS; - else + } else { + printk("THOR DOWNLOAD failed: %d\n", ret); ret = CMD_RET_FAILURE; - + } goto exit; }