You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
367 B
9 lines
367 B
#!/bin/bash |
|
kernel=$(uname -r) |
|
[[ -f test/root.ext2 ]] || test/make-test-root |
|
./dracut -c test/dracut.conf.test -l -f test/initramfs.testing || exit |
|
|
|
qemu-kvm -hda test/root.ext2 -m 512M -nographic -net none \ |
|
-kernel /boot/vmlinuz-$kernel \ |
|
-append "root=/dev/dracut/root rw rootfstype=ext2 quiet console=ttyS0,115200n81" \ |
|
-initrd test/initramfs.testing |