minimal/src/6_pack_rootfs.sh
Ivan Davidov aee022b07a • The download URL for the kernel now points to stable version "3.16".
• Minor formatting changes - the scripts should be more readable this way.
• Minor comment updates.
2014-08-08 02:30:28 +03:00

12 lines
115 B
Bash

#!/bin/sh
cd work
rm -f rootfs.cpio.gz
cd rootfs
find . | cpio -H newc -o | gzip > ../rootfs.cpio.gz
cd ../..