1
0
Fork 0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-02 04:46:16 +02:00
openwrt/openwrt/target/linux/image/squashfs.mk
Felix Fietkau c480aa15c1 add some more verbosity stuff
SVN-Revision: 2222
2005-10-22 01:40:50 +00:00

28 lines
874 B
Makefile

squashfs-prepare:
$(MAKE) -C squashfs prepare $(MAKE_TRACE)
squashfs-compile: prepare-targets
$(MAKE) -C squashfs compile $(MAKE_TRACE)
squashfs-clean:
$(MAKE) -C squashfs clean $(MAKE_TRACE)
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 -le $(MAKE_TRACE)
squashfs-install: install-targets $(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-targets: squashfs-prepare
compile-targets: squashfs-compile
install-targets: squashfs-install
install-ib: squashfs-install-ib
clean: squashfs-clean