X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=tools%2Fmtd-utils%2Fpatches%2F110-portability.patch;h=3b71231e48264f0f7c5487a9143adf0d6fe22958;hp=3d0037c90a6dfd6d8397e38e61a9228ccc33d255;hb=eb893c7d44ed12868aa662039b593a8cb80493a8;hpb=a73978f73175d93be5d86c9f010b3979a0d490ed diff --git a/tools/mtd-utils/patches/110-portability.patch b/tools/mtd-utils/patches/110-portability.patch index 3d0037c90a..3b71231e48 100644 --- a/tools/mtd-utils/patches/110-portability.patch +++ b/tools/mtd-utils/patches/110-portability.patch @@ -10,14 +10,14 @@ #include "compr.h" --- a/compr_zlib.c +++ b/compr_zlib.c -@@ -35,7 +35,6 @@ - #include +@@ -39,7 +39,6 @@ #include + #undef crc32 #include -#include #include + #include "common.h" #include "compr.h" - --- a/rbtree.h +++ b/rbtree.h @@ -94,8 +94,7 @@ static inline struct page * rb_insert_pa @@ -30,16 +30,6 @@ struct rb_node { -@@ -131,7 +130,9 @@ static inline void rb_set_color(struct r - - #define RB_ROOT (struct rb_root) { NULL, } - -+#ifndef offsetof - #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) -+#endif - - #define container_of(ptr, type, member) ({ \ - const typeof( ((type *)0)->member ) *__mptr = (ptr); \ --- a/include/mtd/ubi-media.h +++ b/include/mtd/ubi-media.h @@ -30,7 +30,15 @@ @@ -77,7 +67,7 @@ #include --- a/mkfs.ubifs/mkfs.ubifs.c +++ b/mkfs.ubifs/mkfs.ubifs.c -@@ -773,8 +773,8 @@ int write_leb(int lnum, int len, void *b +@@ -805,8 +805,8 @@ int write_leb(int lnum, int len, void *b if (ubi_leb_change_start(ubi, out_fd, lnum, c->leb_size, dtype)) return sys_err_msg("ubi_leb_change_start failed"); @@ -88,15 +78,15 @@ (long long)pos); if (write(out_fd, buf, c->leb_size) != c->leb_size) -@@ -1029,6 +1029,7 @@ static int add_inode_with_data(struct st +@@ -1063,6 +1063,7 @@ static int add_inode_with_data(struct st if (c->default_compr != UBIFS_COMPR_NONE) use_flags |= UBIFS_COMPR_FL; -+#ifdef __linux__ ++#ifndef NO_NATIVE_SUPPORT if (flags & FS_COMPR_FL) use_flags |= UBIFS_COMPR_FL; if (flags & FS_SYNC_FL) -@@ -1039,6 +1040,7 @@ static int add_inode_with_data(struct st +@@ -1073,6 +1074,7 @@ static int add_inode_with_data(struct st use_flags |= UBIFS_APPEND_FL; if (flags & FS_DIRSYNC_FL && S_ISDIR(st->st_mode)) use_flags |= UBIFS_DIRSYNC_FL; @@ -104,21 +94,21 @@ memset(ino, 0, UBIFS_INO_NODE_SZ); -@@ -1108,7 +1110,9 @@ static int add_dir_inode(DIR *dir, ino_t +@@ -1142,7 +1144,9 @@ static int add_dir_inode(DIR *dir, ino_t fd = dirfd(dir); if (fd == -1) return sys_err_msg("dirfd failed"); -+#ifdef __linux__ ++#ifndef NO_NATIVE_SUPPORT if (ioctl(fd, FS_IOC_GETFLAGS, &flags) == -1) +#endif flags = 0; } -@@ -1293,10 +1297,12 @@ static int add_file(const char *path_nam +@@ -1327,10 +1331,12 @@ static int add_file(const char *path_nam key_write(&key, &dn->key); dn->size = cpu_to_le32(bytes_read); out_len = NODE_BUFFER_SIZE - UBIFS_DATA_NODE_SZ; -+#ifdef __linux__ ++#ifndef NO_NATIVE_SUPPORT if (c->default_compr == UBIFS_COMPR_NONE && (flags & FS_COMPR_FL)) use_compr = UBIFS_COMPR_LZO; @@ -127,11 +117,11 @@ use_compr = c->default_compr; compr_type = compress_data(buf, bytes_read, &dn->data, &out_len, use_compr); -@@ -1338,7 +1344,9 @@ static int add_non_dir(const char *path_ +@@ -1372,7 +1378,9 @@ static int add_non_dir(const char *path_ if (fd == -1) return sys_err_msg("failed to open file '%s'", path_name); -+#ifdef __linux__ ++#ifndef NO_NATIVE_SUPPORT if (ioctl(fd, FS_IOC_GETFLAGS, &flags) == -1) +#endif flags = 0;