X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8f37c266a301fd8ff423018d9c8aa8360331977d..293ad9c61ec69dab1eafa98b2c35c62fc15ccefc:/target/linux/image/squashfs.mk diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk index e9a95de56..6890daec6 100644 --- a/target/linux/image/squashfs.mk +++ b/target/linux/image/squashfs.mk @@ -1,19 +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: - @mkdir -p $(KDIR)/root/jffs - $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -noappend -root-owned -le - -prepare: squashfs-prepare -compile: squashfs-compile -install: $(KDIR)/root.squashfs - $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs" +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 +FILESYSTEMS += squashfs +compile-targets: $(STAGING_DIR)/bin/mksquashfs-lzma +clean-targets: squashfs-clean