You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
490 B
Bash
11 lines
490 B
Bash
#!/bin/bash
|
|
profile=${1:-"debug"}
|
|
mkdir -p drive/EFI/Boot
|
|
cp "target/x86_64-unknown-uefi/$profile/bootproof.efi" drive/EFI/Boot/BootX64.efi
|
|
qemu-system-x86_64 \
|
|
-drive "if=pflash,format=raw,file=/usr/share/OVMF/OVMF_CODE.fd,readonly=on" \
|
|
-drive "if=pflash,format=raw,file=/usr/share/OVMF/OVMF_VARS.fd,readonly=on" \
|
|
-drive "format=raw,file=fat:rw:drive" \
|
|
-nodefaults -cpu host -smp 8 -m 128M -machine "q35,accel=kvm:tcg" \
|
|
-display gtk,gl=on -vga virtio -serial stdio
|