diff options
author | Richard Weinberger <richard@nod.at> | 2016-02-22 14:52:04 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2017-02-21 10:13:24 +0100 |
commit | fdec8a4ad3b166d83e00a04f9e926dc3261daf5d (patch) | |
tree | 52756e6102f1c92669eac11f1fd8357805bed9d9 /tests/ubi-tests/io_update.c | |
parent | d600419ef43dd04c0e83e4ce0fc714d2f4e5ac8c (diff) |
ubi: tests: Support up to 65k NAND page size
io_read and io_update of mtd-utils support NAND with 4k page size only.
Increase that to support up to 65k page size.
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: David Gstir <david@sigma-star.at>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/ubi-tests/io_update.c')
-rw-r--r-- | tests/ubi-tests/io_update.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/ubi-tests/io_update.c b/tests/ubi-tests/io_update.c index 2e9969e..7040e6a 100644 --- a/tests/ubi-tests/io_update.c +++ b/tests/ubi-tests/io_update.c @@ -44,22 +44,22 @@ const char *node; {512}, \ {666}, \ {2048}, \ - {(io), (io), PAGE_SIZE}, \ - {(io)+1, (io)+1, PAGE_SIZE}, \ - {PAGE_SIZE}, \ - {PAGE_SIZE-1}, \ - {PAGE_SIZE+(io)}, \ + {(io), (io), MAX_NAND_PAGE_SIZE}, \ + {(io)+1, (io)+1, MAX_NAND_PAGE_SIZE}, \ + {MAX_NAND_PAGE_SIZE}, \ + {MAX_NAND_PAGE_SIZE-1}, \ + {MAX_NAND_PAGE_SIZE+(io)}, \ {(s)}, \ {(s)-1}, \ {(s)+1}, \ {(io), (s)+1}, \ - {(s)+(io), PAGE_SIZE}, \ - {2*(s), PAGE_SIZE}, \ - {PAGE_SIZE, 2*(s), 1}, \ - {PAGE_SIZE, 2*(s)}, \ + {(s)+(io), MAX_NAND_PAGE_SIZE}, \ + {2*(s), MAX_NAND_PAGE_SIZE}, \ + {MAX_NAND_PAGE_SIZE, 2*(s), 1}, \ + {MAX_NAND_PAGE_SIZE, 2*(s)}, \ {2*(s)-1, 2*(s)-1}, \ - {3*(s), PAGE_SIZE + 1}, \ - {1, PAGE_SIZE}, \ + {3*(s), MAX_NAND_PAGE_SIZE + 1}, \ + {1, MAX_NAND_PAGE_SIZE}, \ {(io), (s)} \ } |