From 58edab1f82e17da7c4b153c25e0f449d62950c75 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Sun, 15 Mar 2020 23:33:52 +0000 Subject: [PATCH] Add --efi option --- quickemu.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/quickemu.sh b/quickemu.sh index 111d38a..baefc5d 100755 --- a/quickemu.sh +++ b/quickemu.sh @@ -121,9 +121,15 @@ VM="" while [ $# -gt 0 ]; do case "${1}" in + -efi|--efi) + BIOS="-bios /usr/share/qemu/OVMF.fd" + shift;; -delete|--delete) DELETE=1 shift;; + -legacy|--legacy) + BIOS="" + shift;; -restore|--restore) SNAPSHOT=1 shift;;