Re: [U-Boot] [PATCH 3/3] Add 'true' and 'false' commands

2009-11-22 Thread Wolfgang Denk
Dear Peter Tyser, In message <1255732587-24542-3-git-send-email-pty...@xes-inc.com> you wrote: > 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";

[U-Boot] [PATCH 3/3] Add 'true' and 'false' commands

2009-10-16 Thread Peter Tyser
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 --- This could be added as a hush builtin command if people d