mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
tools: kwboot: Patch nandpagesize to zero also for v1 image
kwbimage v1 has also nandpagesize field. So set it to zero for both image versions when image is not signed. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de>
This commit is contained in:
parent
2fdba4f658
commit
0089f61e2d
1 changed files with 6 additions and 7 deletions
|
@ -1428,13 +1428,6 @@ kwboot_img_patch(void *img, size_t *size, int baudrate)
|
|||
if (csum != hdr->checksum)
|
||||
goto err;
|
||||
|
||||
if (image_ver == 0) {
|
||||
struct main_hdr_v0 *hdr_v0 = img;
|
||||
|
||||
hdr_v0->nandeccmode = IBR_HDR_ECC_DISABLED;
|
||||
hdr_v0->nandpagesize = 0;
|
||||
}
|
||||
|
||||
srcaddr = le32_to_cpu(hdr->srcaddr);
|
||||
|
||||
switch (hdr->blockid) {
|
||||
|
@ -1480,6 +1473,12 @@ kwboot_img_patch(void *img, size_t *size, int baudrate)
|
|||
hdr->blockid = IBR_HDR_UART_ID;
|
||||
}
|
||||
|
||||
if (!is_secure) {
|
||||
if (image_ver == 0)
|
||||
((struct main_hdr_v0 *)img)->nandeccmode = IBR_HDR_ECC_DISABLED;
|
||||
hdr->nandpagesize = 0;
|
||||
}
|
||||
|
||||
if (baudrate) {
|
||||
uint32_t codesz = sizeof(kwboot_baud_code);
|
||||
void *code;
|
||||
|
|
Loading…
Reference in a new issue