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:
14
target/linux/image/tgz.mk
Normal file
14
target/linux/image/tgz.mk
Normal 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
|
||||
Reference in New Issue
Block a user