2007-08-20 21:27:29 +00:00
|
|
|
#ifndef __mtd_h
|
|
|
|
#define __mtd_h
|
|
|
|
|
2008-09-23 09:23:58 +00:00
|
|
|
#include <stdbool.h>
|
2021-03-17 08:41:44 +01:00
|
|
|
#include <stdint.h>
|
2008-09-23 09:23:58 +00:00
|
|
|
|
2020-02-07 15:42:54 +01:00
|
|
|
#if defined(target_bcm47xx) || defined(target_bcm53xx)
|
2008-09-23 09:23:58 +00:00
|
|
|
#define target_brcm 1
|
|
|
|
#endif
|
|
|
|
|
2008-08-08 22:43:19 +00:00
|
|
|
#define JFFS2_EOF "\xde\xad\xc0\xde"
|
|
|
|
|
2007-08-20 21:27:29 +00:00
|
|
|
extern int quiet;
|
|
|
|
extern int mtdsize;
|
|
|
|
extern int erasesize;
|
2021-03-07 16:47:17 +01:00
|
|
|
extern uint32_t opt_trxmagic;
|
2007-08-20 21:27:29 +00:00
|
|
|
|
2008-09-23 09:23:58 +00:00
|
|
|
extern int mtd_open(const char *mtd, bool block);
|
2008-08-08 22:43:19 +00:00
|
|
|
extern int mtd_check_open(const char *mtd);
|
2014-03-26 10:50:09 +00:00
|
|
|
extern int mtd_block_is_bad(int fd, int offset);
|
2007-08-20 21:27:29 +00:00
|
|
|
extern int mtd_erase_block(int fd, int offset);
|
2008-08-08 22:43:19 +00:00
|
|
|
extern int mtd_write_buffer(int fd, const char *buf, int offset, int length);
|
|
|
|
extern int mtd_write_jffs2(const char *mtd, const char *filename, const char *dir);
|
2008-09-23 09:23:58 +00:00
|
|
|
extern int mtd_replace_jffs2(const char *mtd, int fd, int ofs, const char *filename);
|
2008-08-08 22:43:19 +00:00
|
|
|
extern void mtd_parse_jffs2data(const char *buf, const char *dir);
|
2007-08-20 21:27:29 +00:00
|
|
|
|
2010-12-26 04:17:51 +00:00
|
|
|
/* target specific functions */
|
|
|
|
extern int trx_fixup(int fd, const char *name) __attribute__ ((weak));
|
|
|
|
extern int trx_check(int imagefd, const char *mtd, char *buf, int *len) __attribute__ ((weak));
|
2016-05-06 14:37:05 +02:00
|
|
|
extern int mtd_fixtrx(const char *mtd, size_t offset, size_t data_size) __attribute__ ((weak));
|
2016-06-11 01:41:10 +02:00
|
|
|
extern int mtd_fixseama(const char *mtd, size_t offset, size_t data_size) __attribute__ ((weak));
|
2017-10-28 14:08:38 +02:00
|
|
|
extern int mtd_fixwrg(const char *mtd, size_t offset, size_t data_size) __attribute__ ((weak));
|
2016-08-07 18:51:12 +02:00
|
|
|
extern int mtd_fixwrgg(const char *mtd, size_t offset, size_t data_size) __attribute__ ((weak));
|
2015-08-19 08:31:23 +00:00
|
|
|
extern int mtd_resetbc(const char *mtd) __attribute__ ((weak));
|
2018-12-31 16:24:25 +01:00
|
|
|
extern int mtd_tpl_recoverflag_write(const char *mtd, const bool recovery_active) __attribute__ ((weak));
|
2007-08-20 21:27:29 +00:00
|
|
|
#endif /* __mtd_h */
|