tools: kwboot: unbreak terminal-only mode
authorWilly Tarreau <w@1wt.eu>
Tue, 3 Jul 2018 16:10:30 +0000 (12:10 -0400)
committerStefan Roese <sr@denx.de>
Tue, 7 Aug 2018 08:53:52 +0000 (10:53 +0200)
Commit 84899e2 ("tools/kwboot: Sync with latest barebox version to
support Armada XP") accidently broke the terminal-only mode (-t) by
removing the test on the bootmsg. Thus even when trying to use kwboot
as a plain terminal, it asks to reboot the target.

This commit simply reintroduces the lost test so that it is possible
again to use kwboot to attach to the target system's console.

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Stefan Roese <sr@denx.de>
tools/kwboot.c

index 8a421cda4ea5804224b02436be2ea0440a533715..0a770602885661cc07e5eff4c12dce957d9c27af 100644 (file)
@@ -821,7 +821,7 @@ main(int argc, char **argv)
                        perror("debugmsg");
                        goto out;
                }
-       } else {
+       } else if (bootmsg) {
                rc = kwboot_bootmsg(tty, bootmsg);
                if (rc) {
                        perror("bootmsg");