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:
Nicolas Thill
2005-07-25 15:38:45 +00:00
parent 0f64b76f15
commit 57db8eb176
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