]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
tools: mxsboot: pre-fill buffer with 0xff, not 0
authorAlessandro Rubini <rubini@gnudd.com>
Sun, 3 Dec 2023 17:08:26 +0000 (18:08 +0100)
committerFabio Estevam <festevam@gmail.com>
Wed, 13 Dec 2023 18:33:57 +0000 (15:33 -0300)
The tool works for me, with imx28 and NAND memory, but the resulting
blocks are reported as bad, both by u-boot and the kernel.

This makes it impossible to erase from Linux (for an upgrade without
console access, for example -- u-boot can "nand scrub" but linux can't).

pre-filling with 0xff creates a proper boot loader image, but no
bad-block marker is there when written to flash.

Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Marek Vasut <marex@denx.de>
tools/mxsboot.c

index 04d86f87a86e5050d2e66de92dedd49af1f1ee02..8f4018aa56093e60594fff22c8f2366055df9b29 100644 (file)
@@ -478,7 +478,7 @@ static int mx28_create_nand_image(int infd, int outfd)
                goto err0;
        }
 
-       memset(buf, 0, size);
+       memset(buf, 0xff, size);
 
        fcb = mx28_nand_get_fcb(MAX_BOOTSTREAM_SIZE);
        if (!fcb) {