diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-06-24 10:30:09 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-06-24 10:30:09 +0000 |
commit | a8572703c591a44c8a49213afeb1f5531a71a160 (patch) | |
tree | 712103f82f711c279a89de583bd1a524345285a1 | |
parent | 7c5dbf816a60f571507efcf31e61704a5ecabaf6 (diff) | |
download | buildroot-novena-a8572703c591a44c8a49213afeb1f5531a71a160.tar.gz buildroot-novena-a8572703c591a44c8a49213afeb1f5531a71a160.zip |
Upgrade to latest, handle endianness automagically
-rw-r--r-- | target/squashfs/squashfsroot.mk | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/target/squashfs/squashfsroot.mk b/target/squashfs/squashfsroot.mk index 4fe2f2d4b..358c3bc6a 100644 --- a/target/squashfs/squashfsroot.mk +++ b/target/squashfs/squashfsroot.mk @@ -3,8 +3,8 @@ # mksquashfs to build to target squashfs filesystems # ############################################################# -SQUASHFS_DIR=$(BUILD_DIR)/squashfs1.3r3 -SQUASHFS_SOURCE=squashfs1.3r3.tar.gz +SQUASHFS_DIR=$(BUILD_DIR)/squashfs2.1-r2 +SQUASHFS_SOURCE=squashfs2.1-r2.tar.gz SQUASHFS_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/squashfs $(DL_DIR)/$(SQUASHFS_SOURCE): @@ -33,6 +33,25 @@ squashfs-dirclean: # Build the squashfs root filesystem image # ############################################################# +SQUASHFS_ENDIANNESS=-le +ifeq ($(strip $(BR2_armeb)),y) +SQUASHFS_ENDIANNESS=-be +endif +ifeq ($(strip $(BR2_mips)),y) +SQUASHFS_ENDIANNESS=-be +endif +ifeq ($(strip $(BR2_powerpc)),y) +SQUASHFS_ENDIANNESS=-be +endif +ifeq ($(strip $(BR2_sh3eb)),y) +SQUASHFS_ENDIANNESS=-be +endif +ifeq ($(strip $(BR2_sh4eb)),y) +SQUASHFS_ENDIANNESS=-be +endif +ifeq ($(strip $(BR2_sparc)),y) +SQUASHFS_ENDIANNESS=-be +endif squashfsroot: squashfs host-fakeroot makedevs -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; @@ -57,8 +76,10 @@ squashfsroot: squashfs host-fakeroot makedevs $(STAGING_DIR)/usr/bin/fakeroot \ -i $(STAGING_DIR)/fakeroot.env \ -s $(STAGING_DIR)/fakeroot.env -- \ - $(SQUASHFS_DIR)/squashfs-tools/mksquashfs $(TARGET_DIR) \ - $(IMAGE).squashfs -noappend + $(SQUASHFS_DIR)/squashfs-tools/mksquashfs \ + $(TARGET_DIR) \ + $(IMAGE).squashfs \ + -2.0 -noappend $(SQUASHFS_ENDIANNESS) squashfsroot-source: squashfs-source |