diff mbox series

[1/2] arm/qemu-efi-disk: add rootwait to bootargs

Message ID 20240820134317.3438-1-jon.mason@arm.com
State New
Headers show
Series [1/2] arm/qemu-efi-disk: add rootwait to bootargs | expand

Commit Message

Jon Mason Aug. 20, 2024, 1:43 p.m. UTC
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 <jon.mason@arm.com>
---
 meta-arm/wic/qemu-efi-disk.wks.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jon Mason Aug. 21, 2024, 3:45 a.m. UTC | #1
On Tue, 20 Aug 2024 09:43:16 -0400, Jon Mason wrote:
> 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).
> 
> 

Applied, thanks!

[1/2] arm/qemu-efi-disk: add rootwait to bootargs
      commit: 05c0b9bd1f9b67fee8a18505c841285a9f0c302a
[2/2] arm/arm-tstee: pin kernel to 6.6 to workaround issue
      commit: dd0f6111b43de42084eeffc74b479201f6e24647

Best regards,
diff mbox series

Patch

diff --git a/meta-arm/wic/qemu-efi-disk.wks.in b/meta-arm/wic/qemu-efi-disk.wks.in
index 4f898efa5140..100d0edbd6a4 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"