Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/5904da021449c6d2404485dc1379bf0f3b33414a You should set ROOT_URL correctly, otherwise the web may not work correctly.

Common/cmd_nvedit: Check for env subcommand

The env command needs one subcommand. If this is not available
print the usage help.

Signed-off-by: Thomas Weber <weber@corscience.de>
master
Thomas Weber 15 years ago committed by Wolfgang Denk
parent 49e38030fe
commit 5904da0214
  1. 3
      common/cmd_nvedit.c

@ -848,6 +848,9 @@ static int do_env (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
cmd_tbl_t *cp;
if (argc < 2)
return cmd_usage(cmdtp);
/* drop initial "env" arg */
argc--;
argv++;

Loading…
Cancel
Save