1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-18 02:30:15 +03:00
openwrt-xburst/target/linux/image/squashfs.mk
nbd 21cf13b742 add some changes from whiterussian to head
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1455 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-07-16 10:18:01 +00:00

21 lines
490 B
Makefile

squashfs-prepare:
$(MAKE) -C squashfs prepare
squashfs-compile:
$(MAKE) -C squashfs compile
squashfs-clean:
$(MAKE) -C squashfs clean
rm -f $(KDIR)/root.squashfs
$(KDIR)/root.squashfs:
@mkdir -p $(KDIR)/root/jffs
$(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -le
squashfs-install: $(KDIR)/root.squashfs
$(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="squashfs"
prepare: squashfs-prepare
compile: squashfs-compile
install: squashfs-install