From e74bcb6f9a69e55e57d8c677567c86fa76abc5a7 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 26 May 2010 22:46:05 +0200 Subject: fs/squashfs: squashfs3 needs to set big/little endian Signed-off-by: Peter Korsgaard --- fs/squashfs/squashfs.mk | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'fs/squashfs') diff --git a/fs/squashfs/squashfs.mk b/fs/squashfs/squashfs.mk index f11ba2090..a9041828d 100644 --- a/fs/squashfs/squashfs.mk +++ b/fs/squashfs/squashfs.mk @@ -8,10 +8,18 @@ ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS4),y) ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs else ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs3 + +ifeq ($(BR2_ENDIAN),"BIG") +ROOTFS_SQUASHF_ARGS=-be +else +ROOTFS_SQUASHFS_ARGS=-le +endif + endif define ROOTFS_SQUASHFS_CMD - $(HOST_DIR)/usr/bin/mksquashfs $(TARGET_DIR) $$@ -noappend + $(HOST_DIR)/usr/bin/mksquashfs $(TARGET_DIR) $$@ -noappend \ + $(ROOTFS_SQUASHFS_ARGS) endef -$(eval $(call ROOTFS_TARGET,squashfs)) \ No newline at end of file +$(eval $(call ROOTFS_TARGET,squashfs)) -- cgit v1.2.3