From 5a3ca1e23f222c874a8c340f47bec27a71c36fbb Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Tue, 20 Aug 2024 09:43:16 -0400 Subject: [PATCH] arm/qemu-efi-disk: add rootwait to bootargs Adding "rootwait" to bootargs for uniformity with the other wic files, and this _could_ resolve Yocto Bugzilla Bug 15562 (as the intermittent inability to find the root disk could be because of a race between needing the disk and it not being mounted yet). Signed-off-by: Jon Mason --- meta-arm/wic/qemu-efi-disk.wks.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-arm/wic/qemu-efi-disk.wks.in b/meta-arm/wic/qemu-efi-disk.wks.in index 4f898efa..100d0edb 100644 --- a/meta-arm/wic/qemu-efi-disk.wks.in +++ b/meta-arm/wic/qemu-efi-disk.wks.in @@ -8,4 +8,4 @@ part / --source rootfs --fstype=ext4 --label root --align 1024 --use-uuid part swap --size 44 --label swap --fstype=swap --use-uuid -bootloader --ptable gpt --timeout=5 --append="rootfstype=ext4 ip=dhcp" +bootloader --ptable gpt --timeout=5 --append="rootwait rootfstype=ext4 ip=dhcp"