X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b2363fac89ec337da6c1ba78a230f8972dba8b0c..316d7b8037837cfbca1c33729cb6206f06fd2cce:/target/linux/image/squashfs.mk diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk index 3811567a0..6890daec6 100644 --- a/target/linux/image/squashfs.mk +++ b/target/linux/image/squashfs.mk @@ -1,26 +1,22 @@ -squashfs-prepare: - $(MAKE) -C squashfs prepare +ifneq ($(CONFIG_BIG_ENDIAN),y) +ENDIAN := le +else +ENDIAN := be +endif -squashfs-compile: - $(MAKE) -C squashfs compile +$(STAGING_DIR)/bin/mksquashfs-lzma: + $(MAKE) -C $(TOPDIR)/target/linux/image/squashfs compile -squashfs-clean: - $(MAKE) -C squashfs clean +squashfs-clean: FORCE + $(MAKE) -C $(TOPDIR)/target/linux/image/squashfs clean rm -f $(KDIR)/root.squashfs -$(KDIR)/root.squashfs: install-prepare - @mkdir -p $(KDIR)/root/jffs - $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -le +define Image/mkfs/squashfs + @mkdir -p $(BUILD_DIR)/root/jffs + $(STAGING_DIR)/bin/mksquashfs-lzma $(BUILD_DIR)/root $(KDIR)/root.squashfs -nopad -noappend -root-owned -$(ENDIAN) + $(call Image/Build,squashfs) +endef -squashfs-install: $(KDIR)/root.squashfs - $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs" - -squashfs-install-ib: - mkdir -p $(IB_DIR)/staging_dir_$(ARCH)/bin - cp $(STAGING_DIR)/bin/mksquashfs-lzma $(IB_DIR)/staging_dir_$(ARCH)/bin - -prepare: squashfs-prepare -compile: squashfs-compile -install: squashfs-install -install-ib: squashfs-install-ib -clean: squashfs-clean +FILESYSTEMS += squashfs +compile-targets: $(STAGING_DIR)/bin/mksquashfs-lzma +clean-targets: squashfs-clean