1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add tgz image (kernel+rootfs tar archive) for testing

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1563 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2005-07-25 15:38:45 +00:00
parent 36d0d2ba80
commit d34b6e85e1
2 changed files with 22 additions and 0 deletions

14
target/linux/image/tgz.mk Normal file
View File

@@ -0,0 +1,14 @@
$(KDIR)/vmlinux.gz: $(KDIR)/vmlinux
gzip -c -vf9 < $< > $@
$(KDIR)/rootfs.tar.gz: $(KDIR)/vmlinux.gz
tar -cf $(KDIR)/rootfs.tar --owner=root --group=root -C $(KDIR)/ ./vmlinux.gz
tar -rf $(KDIR)/rootfs.tar --owner=root --group=root -C $(KDIR)/root/ .
gzip -f9 $(KDIR)/rootfs.tar
tgz-install: $(KDIR)/rootfs.tar.gz
$(MAKE) -C $(BOARD) install KERNEL="$(KERNEL)" FS="tgz"
prepare:
compile:
install: tgz-install