File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -212,10 +212,14 @@ case "${ACTION}" in
212
212
esac
213
213
214
214
# Check for the existence of QEMU firmware file
215
- if [ ! -f " ${QEMU_FW_FILE} " ]; then
215
+ if [ ! -f " ${QEMU_FW_FILE} " ] && [ " ${ACTION} " == " uefi " ] ; then
216
216
echo " The required file ${QEMU_FW_FILE} is missing."
217
217
echo " Downloading from the server..."
218
218
wget -O ${QEMU_FW_FILE} https://github.com/Dasharo/coreboot/releases/download/qemu_q35_v0.2.0-rc1/qemu_q35_v0.2.0-rc1.rom
219
+ elif [ ! -f " ${QEMU_FW_FILE} " ] && [ " ${ACTION} " == " seabios" ]; then
220
+ echo " The required file ${QEMU_FW_FILE} is missing."
221
+ echo " Downloading from the server..."
222
+ wget -O ${QEMU_FW_FILE} https://github.com/Dasharo/dasharo-pq/releases/download/24.08.00.01-rc1/qemu_q35_24.08.00.01.rom
219
223
else
220
224
echo " ${QEMU_FW_FILE} file exists in the directory."
221
225
echo " To make sure you are using the latest version from: https://github.com/Dasharo/edk2/releases"
You can’t perform that action at this time.
0 commit comments