writeisofs: set file struct version field to one
Dictated by the spec and correctly flagged by the new isofs code. Change-Id: Ie155c30b6a53e40ec42066af0adbcdbf457e5620
This commit is contained in:
parent
30d9b70391
commit
8ca6466a71
1 changed files with 2 additions and 1 deletions
|
@ -833,7 +833,7 @@ writebootimage(char *bootimage, int bootfd, int fd, int *currentsector,
|
|||
exit(1);
|
||||
}
|
||||
|
||||
fprintf(stderr, " * appended sector info: 0x%x len 0x%x\n",
|
||||
fprintf(stderr, " * appended sector info: 0x%llx len 0x%x\n",
|
||||
bap[0].sector, bap[0].length);
|
||||
|
||||
addr = buf;
|
||||
|
@ -1063,6 +1063,7 @@ main(int argc, char *argv[])
|
|||
memcpy(pvd.modified, timestr, strlen(timestr));
|
||||
memcpy(pvd.effective, timestr, strlen(timestr));
|
||||
strcpy(pvd.expiry, "0000000000000000"); /* not specified */
|
||||
pvd.one2 = 1;
|
||||
pvdsector = currentsector;
|
||||
|
||||
writesector(fd, (char *) &pvd, ¤tsector);
|
||||
|
|
Loading…
Reference in a new issue