diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-07-26 18:06:58 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-07-26 18:45:03 +0300 |
commit | e1b213ceabcc5984c7cb9e73c44eaced31c6d7e9 (patch) | |
tree | 107ff94d4d9a2cb38f1c0af9daac1d21331a7342 /ubi-utils/src/ubiformat.c | |
parent | 8b3cdd8105452737eba043c2e83cbfd8454223e1 (diff) |
ubinize: add sequence number support
UBI now supports the image sequence number feature which
prevents UBI from mistakingly accepting half-written images,
if the image was written on top of an older image. Support
this feature in ubinize and make it pick a random
number for the UBI image sequence number.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/src/ubiformat.c')
-rw-r--r-- | ubi-utils/src/ubiformat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ubi-utils/src/ubiformat.c b/ubi-utils/src/ubiformat.c index 55ce7aa..a2ca572 100644 --- a/ubi-utils/src/ubiformat.c +++ b/ubi-utils/src/ubiformat.c @@ -875,7 +875,7 @@ int main(int argc, char * const argv[]) normsg("use erase counter %lld for all eraseblocks", args.ec); ubigen_info_init(&ui, mtd.eb_size, mtd.min_io_size, mtd.subpage_size, - args.vid_hdr_offs, args.ubi_ver); + args.vid_hdr_offs, args.ubi_ver, 0); if (si->vid_hdr_offs != -1 && ui.vid_hdr_offs != si->vid_hdr_offs) { /* @@ -895,7 +895,7 @@ int main(int argc, char * const argv[]) printf("yes\n"); } else ubigen_info_init(&ui, mtd.eb_size, mtd.min_io_size, 0, - si->vid_hdr_offs, args.ubi_ver); + si->vid_hdr_offs, args.ubi_ver, 0); normsg("use offsets %d and %d", ui.vid_hdr_offs, ui.data_offs); } |