remove old trace/verbose junk
[openwrt.git] / target / linux / image / squashfs.mk
index 917a69a..29ce552 100644 (file)
@@ -1,20 +1,36 @@
+endian := le
+
+ifeq ($(ARCH),mips)
+       endian := be
+endif
+
 squashfs-prepare:
        $(MAKE) -C squashfs prepare
 
-squashfs-compile:
+squashfs-compile: prepare-targets
        $(MAKE) -C squashfs compile
        
 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 -$(endian)
+       
+ifeq ($(IB),)
+squashfs-install: compile-targets $(BOARD)-compile
+endif
 
 squashfs-install: $(KDIR)/root.squashfs
        $(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs"
+
+squashfs-install-ib: compile-targets
+       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
+prepare-targets: squashfs-prepare
+compile-targets: squashfs-compile
+install-targets: squashfs-install
+install-ib: squashfs-install-ib
+clean: squashfs-clean
This page took 0.027189 seconds and 4 git commands to generate.