mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
CI: update QEMU command line to avoid deprecated option format
> warning: short-form boolean option 'readonly' deprecated > Please use readonly=on instead Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
93d574ea95
commit
a2de35e1a4
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ amd64)
|
|||
if [ ! -r "${OVMF}" ]; then
|
||||
die "Cannot read UEFI firmware file ${OVMF}"
|
||||
fi
|
||||
QEMU="qemu-system-x86_64 -drive if=pflash,format=raw,readonly,file=${OVMF}"
|
||||
QEMU="qemu-system-x86_64 -drive if=pflash,format=raw,readonly=on,file=${OVMF}"
|
||||
EFIBOOT=BOOTx64.EFI
|
||||
ROOTDEV=ada0s1
|
||||
;;
|
||||
|
|
|
|||
Loading…
Reference in a new issue