fs/squashfs: fix endianness typo for squashfs3

Signed-off-by: Stanislav Bogatyrev <bogatyrev_stanislav@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Stanislav Bogatyrev 2010-08-27 17:00:39 +02:00 committed by Peter Korsgaard
parent 0b415edef3
commit 62b4c67b09
2 changed files with 3 additions and 1 deletions

View File

@ -15,6 +15,8 @@
Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
added.
fs: old-style squashfs for big endian archs fixed.
Updated/fixed packages: busybox, imagemagick, libglib2, lua,
luafilesystem, lzo, netcat, php, qt, sysvinit, util-linux

View File

@ -10,7 +10,7 @@ else
ROOTFS_SQUASHFS_DEPENDENCIES = host-squashfs3
ifeq ($(BR2_ENDIAN),"BIG")
ROOTFS_SQUASHF_ARGS=-be
ROOTFS_SQUASHFS_ARGS=-be
else
ROOTFS_SQUASHFS_ARGS=-le
endif