• Minor formatting changes - the scripts should be more readable this way. • Minor comment updates.
12 lines
115 B
Bash
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 ../..
|