large build system cleanup. added some stuff to control the verbosity level, but...
[openwrt.git] / target / linux / image / squashfs.mk
index e9a95de..00411c0 100644 (file)
@@ -8,12 +8,20 @@ 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 -le
 
-prepare: squashfs-prepare
-compile: squashfs-compile
-install: $(KDIR)/root.squashfs
+squashfs-install: $(KDIR)/root.squashfs $(BOARD)-compile
+       $(TRACE) target/linux/image/$(BOARD)/install
        $(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
This page took 0.029506 seconds and 4 git commands to generate.