add ubinize to the mtd-utils build
SVN-Revision: 16457
This commit is contained in:
parent
4bc008142c
commit
a2b97a26e3
@ -36,10 +36,16 @@ define Host/Compile
|
||||
$(MAKE) -C $(HOST_BUILD_DIR) \
|
||||
$(MTD_MAKEOPTS) \
|
||||
TARGETS=mkfs.jffs2
|
||||
$(MAKE) -C $(HOST_BUILD_DIR)/ubi-utils \
|
||||
$(MTD_MAKEOPTS) \
|
||||
TARGETS=ubinize
|
||||
endef
|
||||
|
||||
define Host/Install
|
||||
$(CP) $(HOST_BUILD_DIR)/mkfs.jffs2 $(STAGING_DIR_HOST)/bin/
|
||||
$(CP) \
|
||||
$(HOST_BUILD_DIR)/mkfs.jffs2 \
|
||||
$(HOST_BUILD_DIR)/ubinize \
|
||||
$(STAGING_DIR_HOST)/bin/
|
||||
endef
|
||||
|
||||
define Host/Clean
|
||||
|
@ -18,36 +18,6 @@
|
||||
#include <linux/jffs2.h>
|
||||
#include "compr.h"
|
||||
|
||||
--- a/mkfs.jffs2.c
|
||||
+++ b/mkfs.jffs2.c
|
||||
@@ -1100,6 +1100,7 @@ static struct {
|
||||
{ 0, NULL, 0 }
|
||||
};
|
||||
|
||||
+#ifndef NO_ACL_SUPPORT
|
||||
static void formalize_posix_acl(void *xvalue, int *value_len)
|
||||
{
|
||||
struct posix_acl_xattr_header *pacl_header;
|
||||
@@ -1151,6 +1152,7 @@ static void formalize_posix_acl(void *xv
|
||||
memcpy(xvalue, buffer, offset);
|
||||
*value_len = offset;
|
||||
}
|
||||
+#endif
|
||||
|
||||
static xattr_entry_t *create_xattr_entry(int xprefix, char *xname, char *xvalue, int value_len)
|
||||
{
|
||||
@@ -1205,9 +1207,11 @@ static xattr_entry_t *find_xattr_entry(i
|
||||
if (!xentry_hash)
|
||||
xentry_hash = xcalloc(1, sizeof(xe) * XATTRENTRY_HASHSIZE);
|
||||
|
||||
+#ifndef NO_ACL_SUPPORT
|
||||
if (xprefix == JFFS2_XPREFIX_ACL_ACCESS
|
||||
|| xprefix == JFFS2_XPREFIX_ACL_DEFAULT)
|
||||
formalize_posix_acl(xvalue, &value_len);
|
||||
+#endif
|
||||
|
||||
name_len = strlen(xname);
|
||||
index = (crc32(0, xname, name_len) ^ crc32(0, xvalue, value_len)) % XATTRENTRY_HASHSIZE;
|
||||
--- a/rbtree.h
|
||||
+++ b/rbtree.h
|
||||
@@ -94,8 +94,7 @@ static inline struct page * rb_insert_pa
|
||||
@ -70,3 +40,21 @@
|
||||
|
||||
#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 @@
|
||||
#ifndef __UBI_MEDIA_H__
|
||||
#define __UBI_MEDIA_H__
|
||||
|
||||
+#ifdef __linux__
|
||||
#include <asm/byteorder.h>
|
||||
+#else
|
||||
+#include <stdint.h>
|
||||
+typedef uint8_t __u8;
|
||||
+typedef uint16_t __be16;
|
||||
+typedef uint32_t __be32;
|
||||
+typedef uint64_t __be64;
|
||||
+#endif
|
||||
|
||||
/* The version of UBI images supported by this implementation */
|
||||
#define UBI_VERSION 1
|
||||
|
Loading…
Reference in New Issue
Block a user