diff options
author | Richard Weinberger <richard@nod.at> | 2019-07-25 22:34:42 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-25 13:50:22 +0200 |
commit | 7f0e2dc21fb291a9815fedb6e9e2c572db43c8c9 (patch) | |
tree | 24246eeba8846654b28a85742028e1747efd0527 /ubi-utils/Makemodule.am | |
parent | a739b59efe7996e3bdcbe8b17743dc05ac7c110a (diff) |
ubi-utils: Implement a ubihealthd
ubihealthd is a simple daemon which scans every PEB
of an UBI device in random order.
It helps to deal with read disturb on systems which either
reboot seldom, use fastmap or read few data.
To use this daemon you need Linux >= v5.1.
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'ubi-utils/Makemodule.am')
-rw-r--r-- | ubi-utils/Makemodule.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ubi-utils/Makemodule.am b/ubi-utils/Makemodule.am index 215eac2..984e2cd 100644 --- a/ubi-utils/Makemodule.am +++ b/ubi-utils/Makemodule.am @@ -37,9 +37,13 @@ ubirsvol_LDADD = libmtd.a libubi.a ubiblock_SOURCES = ubi-utils/ubiblock.c ubiblock_LDADD = libmtd.a libubi.a +ubihealthd_SOURCES = ubi-utils/ubihealthd.c +ubihealthd_LDADD = libmtd.a libubi.a + UBI_BINS = \ ubiupdatevol ubimkvol ubirmvol ubicrc32 ubinfo ubiattach \ - ubidetach ubinize ubiformat ubirename mtdinfo ubirsvol ubiblock + ubidetach ubinize ubiformat ubirename mtdinfo ubirsvol ubiblock \ + ubihealthd UBI_MAN = \ ubi-utils/ubinize.8 |