move target/linux/package/switch to package/, fix a bug in the ipkg dependency handling
[openwrt.git] / target / linux / image / squashfs.mk
index 7fe972a..abc58da 100644 (file)
@@ -1,34 +1,33 @@
+ifneq ($(CONFIG_BIG_ENDIAN),y)
 endian := le
-
-ifeq ($(ARCH),mips)
-       endian := be
+else
+endian := be
 endif
 
 squashfs-prepare:
-       $(MAKE) -C squashfs prepare $(MAKE_TRACE)
+       $(MAKE) -C squashfs prepare
 
 squashfs-compile: prepare-targets
-       $(MAKE) -C squashfs compile $(MAKE_TRACE)
+       $(MAKE) -C squashfs compile
        
 squashfs-clean:
-       $(MAKE) -C squashfs clean $(MAKE_TRACE)
+       $(MAKE) -C squashfs clean
        rm -f $(KDIR)/root.squashfs
 
 $(KDIR)/root.squashfs: install-prepare
        @mkdir -p $(KDIR)/root/jffs
-       $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -$(endian) $(MAKE_TRACE)
+       $(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
-       $(TRACE) target/linux/image/$(BOARD)/install
        $(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
+       $(CP) $(STAGING_DIR)/bin/mksquashfs-lzma $(IB_DIR)/staging_dir_$(ARCH)/bin
        
 prepare-targets: squashfs-prepare
 compile-targets: squashfs-compile
This page took 0.021062 seconds and 4 git commands to generate.