diff options
| author | wrzosik <mia@miangie.dev> | 2025-11-30 13:55:17 +0100 |
|---|---|---|
| committer | wrzosik <mia@miangie.dev> | 2025-11-30 14:01:14 +0100 |
| commit | 8822e7ff9da64d22d86a4397eaf629cca18df047 (patch) | |
| tree | 03370e579c012985428832c65ce4a58744d2d8aa | |
| parent | 08e1394714aaf5638aa3a5d74ebf281908cc7dc8 (diff) | |
docs: no_boot
Kb of probable causes when booting fails
| -rw-r--r-- | docs/no_boot.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/no_boot.txt b/docs/no_boot.txt new file mode 100644 index 0000000..32ec562 --- /dev/null +++ b/docs/no_boot.txt @@ -0,0 +1,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 + |
