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

nand: fix nand read.option parsing

"nand read.part addr off size" would be treated as "nand read.raw addr off 1"
It now fails as intended stating "Unknown nand command suffix '.part'"

Signed-off-by: Harvey Chapman <hchapman@3gfp.com>
master
Harvey Chapman 12 years ago committed by Scott Wood
parent 8fdf1e0f6d
commit ced199dc85
  1. 2
      common/cmd_nand.c

@ -608,7 +608,7 @@ static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
size_t rwsize;
ulong pagecount = 1;
int read;
int raw;
int raw = 0;
if (argc < 4)
goto usage;

Loading…
Cancel
Save