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

cmd_bdinfo: check for CONFIG_ARC instead of CONFIG_ARC700

For all flavours of ARC we execute the same code in "bdinfo" so we may
safely check for CONFIG_ARC. This is especially important since we're
about to add more types of ARC so existing check won't work in all
cases.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Tom Rini <trini@ti.com>
master
Alexey Brodkin 10 years ago committed by Tom Rini
parent 623185dbea
commit 946f6f242c
  1. 2
      common/cmd_bdinfo.c

@ -515,7 +515,7 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
return 0;
}
#elif defined(CONFIG_ARC700)
#elif defined(CONFIG_ARC)
int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{

Loading…
Cancel
Save