diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2016-08-22 16:21:57 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2016-11-17 11:36:56 +0100 |
commit | 6db431d627f707a3bcd820a2bc32e2a2689c3185 (patch) | |
tree | 3f4a31ccbddaf0acba5c34c05a84934700d48978 /tests/mtd-tests/Makemodule.am | |
parent | 4c6eb0a05500f8ff3bc38b52b3c0e68b25e22e0b (diff) |
mtd-utils: Add nand sub-page test utility
Basically a user space port of the mtd sub page test kernel module.
In addition to the module parameters, the utility supports using
only a sub-range of the flash erase blocks with a configurable
stride and can restore the block contents after the test.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'tests/mtd-tests/Makemodule.am')
-rw-r--r-- | tests/mtd-tests/Makemodule.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/mtd-tests/Makemodule.am b/tests/mtd-tests/Makemodule.am index 55d8329..5925fd9 100644 --- a/tests/mtd-tests/Makemodule.am +++ b/tests/mtd-tests/Makemodule.am @@ -22,9 +22,13 @@ nandpagetest_SOURCES = tests/mtd-tests/nandpagetest.c nandpagetest_LDADD = libmtd.a nandpagetest_CPPFLAGS = $(AM_CPPFLAGS) +nandsubpagetest_SOURCES = tests/mtd-tests/nandsubpagetest.c +nandsubpagetest_LDADD = libmtd.a +nandsubpagetest_CPPFLAGS = $(AM_CPPFLAGS) + MTDTEST_BINS = \ flash_torture flash_stress flash_speed nandbiterrs flash_readtest \ - nandpagetest + nandpagetest nandsubpagetest if INSTALL_TESTS pkglibexec_PROGRAMS += $(MTDTEST_BINS) |