blob: 32ec562039520c8fc5da93f2457ce28ea2d7a6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# no /dev/sda while booting, but qemu attaches file as drive
initrd is built wrong. while building initrd always add directories too
Bad example:
find . -type f | cpio -o -H newc | gzip > initrd.cpio.gz
Good example:
find . | cpio -o -H newc | gzip > initrd.cpio.gz
|