mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 06:49:42 +02:00
mtd: add jffs2 cleanmarker for big endian systems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12418 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
fbb46d4f12
commit
da0a101791
@ -7,13 +7,18 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
#include <endian.h>
|
||||||
#include "jffs2.h"
|
#include "jffs2.h"
|
||||||
#include "crc32.h"
|
#include "crc32.h"
|
||||||
#include "mtd.h"
|
#include "mtd.h"
|
||||||
|
|
||||||
#define PAD(x) (((x)+3)&~3)
|
#define PAD(x) (((x)+3)&~3)
|
||||||
|
|
||||||
#define CLEANMARKER "\x85\x19\x03\x20\x0c\x00\x00\x00\xb1\xb0\x1e\xe4"
|
#if BYTE_ORDER == BIG_ENDIAN
|
||||||
|
# define CLEANMARKER "\x19\x85\x20\x03\x00\x00\x00\x0c\xf0\x60\xdc\x98"
|
||||||
|
#else
|
||||||
|
# define CLEANMARKER "\x85\x19\x03\x20\x0c\x00\x00\x00\xb1\xb0\x1e\xe4"
|
||||||
|
#endif
|
||||||
|
|
||||||
static int last_ino = 0;
|
static int last_ino = 0;
|
||||||
static int last_version = 0;
|
static int last_version = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user