diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-14 13:43:31 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-01-14 13:43:31 +0100 |
commit | 586f1ee7cfcb442caf467a4ea5fb9351ef3c0d11 (patch) | |
tree | 66100b251395e585ded5dd736fc994a3595c0e90 /miscutils/nandwrite.c | |
parent | 36495af81fb9d312bb04250fba3ea7fa2c209c81 (diff) |
nandwrite: cope with old headers which have no MTD_FILE_MODE_RAW
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils/nandwrite.c')
-rw-r--r-- | miscutils/nandwrite.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index 72f028ed3..29c800612 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c @@ -53,6 +53,15 @@ #include "libbb.h" #include <mtd/mtd-user.h> +/* Old headers call it MTD_MODE_RAW. + * FIXME: In kernel headers, MTD_FILE_MODE_RAW is not a define, + * it's an enum. How I can test for existence of an enum? + */ +#if !defined(MTD_FILE_MODE_RAW) +# define MTD_FILE_MODE_RAW 3 +#endif + + #define IS_NANDDUMP (ENABLE_NANDDUMP && (!ENABLE_NANDWRITE || (applet_name[4] == 'd'))) #define IS_NANDWRITE (ENABLE_NANDWRITE && (!ENABLE_NANDDUMP || (applet_name[4] != 'd'))) |