X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/e3fd8663f100fe33dcda1f0bbf46bb1ab3338436..192312d978b59b0c74b34d3b6a115ff1453c6159:/openwrt/target/linux/image/squashfs.mk diff --git a/openwrt/target/linux/image/squashfs.mk b/openwrt/target/linux/image/squashfs.mk index 63eba445a..0b39aa161 100644 --- a/openwrt/target/linux/image/squashfs.mk +++ b/openwrt/target/linux/image/squashfs.mk @@ -1,3 +1,9 @@ +endian := le + +ifeq ($(ARCH),mips) + endian := be +endif + squashfs-prepare: $(MAKE) -C squashfs prepare $(MAKE_TRACE) @@ -10,7 +16,7 @@ squashfs-clean: $(KDIR)/root.squashfs: install-prepare @mkdir -p $(KDIR)/root/jffs - $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -le $(MAKE_TRACE) + $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -$(endian) $(MAKE_TRACE) ifeq ($(IB),) squashfs-install: compile-targets $(BOARD)-compile @@ -22,7 +28,7 @@ squashfs-install: $(KDIR)/root.squashfs squashfs-install-ib: compile-targets mkdir -p $(IB_DIR)/staging_dir_$(ARCH)/bin - cp $(STAGING_DIR)/bin/mksquashfs-lzma $(IB_DIR)/staging_dir_$(ARCH)/bin + $(CP) $(STAGING_DIR)/bin/mksquashfs-lzma $(IB_DIR)/staging_dir_$(ARCH)/bin prepare-targets: squashfs-prepare compile-targets: squashfs-compile