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

Fixed a bug in saveenv(). Credit: Markus Klotzbuecher.

> @@ -115,7 +115,7 @@ int saveenv(void)
master
Bartlomiej Sieka 19 years ago
parent addb2e1650
commit 3d65390e21
  1. 2
      common/env_nand.c

@ -115,7 +115,7 @@ int saveenv(void)
int total, ret = 0;
puts ("Erasing Nand...");
if (nand_erase(&nand_info[0], CFG_NEW_OFFSET, CFG_ENV_SIZE))
if (nand_erase(&nand_info[0], CFG_ENV_OFFSET, CFG_ENV_SIZE))
return 1;
puts ("Writing to Nand... ");

Loading…
Cancel
Save