You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
510 B

$(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
cp $(KDIR)/vmlinux.gz $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux.gz
cp $(KDIR)/rootfs.tar.gz $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tar.gz
prepare:
compile:
install: tgz-install