From: Stanislav Bogatyrev Date: Fri, 27 Aug 2010 15:00:39 +0000 (+0200) Subject: fs/squashfs: fix endianness typo for squashfs3 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=62b4c67b094131db9d1f715a5cef0fd042396338;p=buildroot.git fs/squashfs: fix endianness typo for squashfs3 Signed-off-by: Stanislav Bogatyrev Signed-off-by: Peter Korsgaard --- diff --git a/CHANGES b/CHANGES index 2d244bc6b3..86a2cc293b 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/fs/squashfs/squashfs.mk b/fs/squashfs/squashfs.mk index a9041828dc..6117de62a1 100644 --- a/fs/squashfs/squashfs.mk +++ b/fs/squashfs/squashfs.mk @@ -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