summaryrefslogtreecommitdiffstats
path: root/target/linux/image/squashfs.mk
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-04 21:57:59 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-04 21:57:59 +0000
commitff69288edb1c2ef75c0ebb4a2dc159b82b92a3c5 (patch)
tree4e4ebb4786454272f73ed7e3ea76e57ea789de41 /target/linux/image/squashfs.mk
parentbf82d1e1fa09243728f245651ded9b8fbd6d3f09 (diff)
target/linux/image rewrite
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3905 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/image/squashfs.mk')
-rw-r--r--target/linux/image/squashfs.mk38
1 files changed, 12 insertions, 26 deletions
diff --git a/target/linux/image/squashfs.mk b/target/linux/image/squashfs.mk
index 184330cfe..6890daec6 100644
--- a/target/linux/image/squashfs.mk
+++ b/target/linux/image/squashfs.mk
@@ -1,36 +1,22 @@
ifneq ($(CONFIG_BIG_ENDIAN),y)
-endian := le
+ENDIAN := le
else
-endian := be
+ENDIAN := be
endif
-squashfs-prepare: FORCE
- $(MAKE) -C squashfs prepare
-
-squashfs-compile: prepare-targets
- $(MAKE) -C squashfs compile
+$(STAGING_DIR)/bin/mksquashfs-lzma:
+ $(MAKE) -C $(TOPDIR)/target/linux/image/squashfs compile
squashfs-clean: FORCE
- $(MAKE) -C squashfs clean
+ $(MAKE) -C $(TOPDIR)/target/linux/image/squashfs clean
rm -f $(KDIR)/root.squashfs
-$(KDIR)/root.squashfs: install-prepare
+define Image/mkfs/squashfs
@mkdir -p $(BUILD_DIR)/root/jffs
- $(STAGING_DIR)/bin/mksquashfs-lzma $(BUILD_DIR)/root $@ -nopad -noappend -root-owned -$(endian)
-
-ifeq ($(IB),)
-squashfs-install: compile-targets $(BOARD)-compile
-endif
+ $(STAGING_DIR)/bin/mksquashfs-lzma $(BUILD_DIR)/root $(KDIR)/root.squashfs -nopad -noappend -root-owned -$(ENDIAN)
+ $(call Image/Build,squashfs)
+endef
-squashfs-install: $(KDIR)/root.squashfs FORCE
- $(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-targets: squashfs-prepare
-compile-targets: squashfs-compile
-install-targets: squashfs-install
-install-ib: squashfs-install-ib
-clean: squashfs-clean
+FILESYSTEMS += squashfs
+compile-targets: $(STAGING_DIR)/bin/mksquashfs-lzma
+clean-targets: squashfs-clean