From d3e564334a674fe82a8dc19ca0da26faeeb6e283 Mon Sep 17 00:00:00 2001 From: Geoffroy Van Cutsem Date: Thu, 12 Sep 2019 09:59:16 +0200 Subject: [PATCH] DM: make LaaG launch script use the OVMF.fd from the Service VM Adjust the 'launch_uos.sh' script used to start a LaaG User VM to user the OVMF.fd bios file installed under /usr/share/acrn/bios. It currently points at a file in the local folder but neither our instructions nor our installation script file puts it in this location. That results in an error when you try to launch it. Tracked-On: #3673 Signed-off-by: Geoffroy Van Cutsem --- devicemodel/samples/nuc/launch_uos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicemodel/samples/nuc/launch_uos.sh b/devicemodel/samples/nuc/launch_uos.sh index 475ec4f4e..0ea020408 100755 --- a/devicemodel/samples/nuc/launch_uos.sh +++ b/devicemodel/samples/nuc/launch_uos.sh @@ -107,7 +107,7 @@ acrn-dm -A -m $mem_size -c $2 -s 0:0,hostbridge \ -s 3,virtio-blk,/home/clear/uos/uos.img \ -s 4,virtio-net,tap0 \ -s 7,virtio-rnd \ - --ovmf ./OVMF.fd \ + --ovmf /usr/share/acrn/bios/OVMF.fd \ $pm_channel $pm_by_vuart $pm_vuart_node \ $logger_setting \ --mac_seed $mac_seed \