diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2007-06-12 15:30:32 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2007-06-12 15:30:32 +0000 |
commit | 45ac6df37c7b11c00bcec137a4f37a637183dc23 (patch) | |
tree | 7e6bdc7d5e4d2323e6d3fb7d495f3d37dfbe9d3d /target | |
parent | 6755d78ea6fcfb7f0a8630d94caaba0b2d1c4d88 (diff) | |
download | buildroot-novena-45ac6df37c7b11c00bcec137a4f37a637183dc23.tar.gz buildroot-novena-45ac6df37c7b11c00bcec137a4f37a637183dc23.zip |
Use BR2_ENDIAN for big/little endianness detection
Diffstat (limited to 'target')
-rw-r--r-- | target/cramfs/cramfs.mk | 20 | ||||
-rw-r--r-- | target/squashfs/squashfsroot.mk | 20 |
2 files changed, 6 insertions, 34 deletions
diff --git a/target/cramfs/cramfs.mk b/target/cramfs/cramfs.mk index 54a0fa845..334048cd4 100644 --- a/target/cramfs/cramfs.mk +++ b/target/cramfs/cramfs.mk @@ -39,24 +39,10 @@ cramfs-dirclean: # Build the cramfs root filesystem image # ############################################################# -CRAMFS_ENDIANNESS=-l -ifeq ($(strip $(BR2_armeb)),y) -CRAMFS_ENDIANNESS=-b -endif -ifeq ($(strip $(BR2_mips)),y) -CRAMFS_ENDIANNESS=-b -endif -ifeq ($(strip $(BR2_powerpc)),y) -CRAMFS_ENDIANNESS=-b -endif -ifeq ($(strip $(BR2_sh3eb)),y) -CRAMFS_ENDIANNESS=-b -endif -ifeq ($(strip $(BR2_sh4eb)),y) -CRAMFS_ENDIANNESS=-b -endif -ifeq ($(strip $(BR2_sparc)),y) +ifeq ($(BR2_ENDIAN),"BIG") CRAMFS_ENDIANNESS=-b +else +CRAMFS_ENDIANNESS=-l endif CRAMFS_TARGET=$(IMAGE).cramfs diff --git a/target/squashfs/squashfsroot.mk b/target/squashfs/squashfsroot.mk index 515153a0a..c9eb74327 100644 --- a/target/squashfs/squashfsroot.mk +++ b/target/squashfs/squashfsroot.mk @@ -35,24 +35,10 @@ 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) +ifeq ($(BR2_ENDIAN),"BIG") SQUASHFS_ENDIANNESS=-be +else +SQUASHFS_ENDIANNESS=-le endif SQUASHFS_TARGET:=$(IMAGE).squashfs |