mkchkimg: use higher version code
This patch changes the version code of the image header from `1.1.99_0.0.0.0` to `99.99.99_99.99.99.99`. This is neccessary on some devices where the stock firmware checks the version field, possibly preventing third-party firmware from being installed. Reviewed-by: Thibaut VARÈNE <hacks@slashdirt.org> Signed-off-by: Joseph C. Lehner <joseph.c.lehner@gmail.com>
This commit is contained in:
parent
68b94f0fb4
commit
0a73c61cb9
@ -264,13 +264,8 @@ main (int argc, char * argv[])
|
||||
hdr->magic = htonl (0x2a23245e);
|
||||
hdr->header_len = htonl(header_len);
|
||||
hdr->reserved[0] = (unsigned char)(region & 0xff);
|
||||
hdr->reserved[1] = 1; /* Major */
|
||||
hdr->reserved[2] = 1; /* Minor */
|
||||
hdr->reserved[3] = 99; /* Build */
|
||||
hdr->reserved[4] = 0;
|
||||
hdr->reserved[5] = 0;
|
||||
hdr->reserved[6] = 0;
|
||||
hdr->reserved[7] = 0;
|
||||
memset(&hdr->reserved[1], 99, sizeof(hdr->reserved) - 1);
|
||||
|
||||
message (" Board Id: %s", board_id);
|
||||
message (" Region: %s", region == 1 ? "World Wide (WW)"
|
||||
: (region == 2 ? "North America (NA)" : "Unknown"));
|
||||
|
Loading…
Reference in New Issue
Block a user