From: Peter Tyser Date: Fri, 16 Oct 2009 22:36:27 +0000 (-0500) Subject: Add 'true' and 'false' commands X-Git-Tag: v2010.03-rc1~200^2~27 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=396fd17338b9bf1f84f494ec1860427e18868ede;p=karo-tx-uboot.git Add 'true' and 'false' commands These commands are only enabled when the hush shell is enabled and can be useful in scripts such as: while true do echo "Booting OS..."; run $bootcmd; echo "Booting OS failed"; sleep 10; done Signed-off-by: Peter Tyser --- diff --git a/common/cmd_test.c b/common/cmd_test.c index 3cdd07bf32..d886f893c7 100644 --- a/common/cmd_test.c +++ b/common/cmd_test.c @@ -149,3 +149,25 @@ U_BOOT_CMD( "minimal test like /bin/sh", "[args..]" ); + +int do_false(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) +{ + return 1; +} + +U_BOOT_CMD( + false, CONFIG_SYS_MAXARGS, 1, do_false, + "do nothing, unsuccessfully", + NULL +); + +int do_true(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) +{ + return 0; +} + +U_BOOT_CMD( + true, CONFIG_SYS_MAXARGS, 1, do_true, + "do nothing, successfully", + NULL +);