X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/8f37c266a301fd8ff423018d9c8aa8360331977d..387b2efd33e0d2aebb0ecb5e9422de37d19c23d3:/target/linux/image/squashfs.mk diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk index e9a95de56..42ff77db6 100644 --- a/target/linux/image/squashfs.mk +++ b/target/linux/image/squashfs.mk @@ -10,10 +10,17 @@ squashfs-clean: $(KDIR)/root.squashfs: @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 -le -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: + 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