#!/bin/bash # this script updates the "core"-part of tinycore and copies it to the tftp-folder echo "Create corepure64.gz folder..." mkdir -p corepure64 cd corepure64 echo "Decompress corepure64.gz..." zcat ../corepure64.gz | sudo cpio -i -H newc -d cd .. echo "Done!"