X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8f37c266a301fd8ff423018d9c8aa8360331977d..909152b7e8eea47918af7624eb0035c9a49ebf4b:/target/linux/image/squashfs.mk?ds=sidebyside diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk index e9a95de56..29ce5522d 100644 --- a/target/linux/image/squashfs.mk +++ b/target/linux/image/squashfs.mk @@ -1,19 +1,36 @@ +endian := le + +ifeq ($(ARCH),mips) + endian := be +endif + squashfs-prepare: $(MAKE) -C squashfs prepare -squashfs-compile: +squashfs-compile: prepare-targets $(MAKE) -C squashfs compile squashfs-clean: $(MAKE) -C squashfs clean rm -f $(KDIR)/root.squashfs -$(KDIR)/root.squashfs: +$(KDIR)/root.squashfs: install-prepare @mkdir -p $(KDIR)/root/jffs - $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -noappend -root-owned -le + $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -$(endian) + +ifeq ($(IB),) +squashfs-install: compile-targets $(BOARD)-compile +endif -prepare: squashfs-prepare -compile: squashfs-compile -install: $(KDIR)/root.squashfs +squashfs-install: $(KDIR)/root.squashfs $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="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 + +prepare-targets: squashfs-prepare +compile-targets: squashfs-compile +install-targets: squashfs-install +install-ib: squashfs-install-ib +clean: squashfs-clean