5 lines
104 B
Bash
5 lines
104 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
mkdir -p output
|
||
|
|
rm -rf output/*
|
||
|
|
find . -depth -print | cpio -o -H newc > output/initrd.img
|