1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 02:30:15 +03:00
openwrt-xburst/target/linux/image/squashfs.mk

23 lines
593 B
Makefile
Raw Normal View History

ifneq ($(CONFIG_BIG_ENDIAN),y)
ENDIAN := le
else
ENDIAN := be
endif
$(STAGING_DIR)/bin/mksquashfs-lzma:
$(MAKE) -C $(TOPDIR)/target/linux/image/squashfs compile
squashfs-clean: FORCE
$(MAKE) -C $(TOPDIR)/target/linux/image/squashfs clean
rm -f $(KDIR)/root.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