diff options
author | Jon Mason <jon.mason@arm.com> | 2025-08-19 18:52:52 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-08-21 10:09:47 +0100 |
commit | 08d87537b8766870e765965feccdd0dd5506b425 (patch) | |
tree | d0197dfacc17afc98bf57f56eb87ca3e36f1b423 /meta-yocto-bsp | |
parent | 5424fc6186877e1949a818307f43578b81c493ae (diff) | |
download | poky-08d87537b8766870e765965feccdd0dd5506b425.tar.gz |
genericarm64: change QB_DEFAULT_FSTYPE to wic.zst
meta-yocto rev 506379cb241e6a865139307e06216a07f737b602
changed the IMAGE_FSTYPES to wic.zst but did not change
QB_DEFAULT_FSTYPE to match. This is causing the error:
runqemu - ERROR - Failed to find rootfs
Change the QB_DEFAULT_FSTYPE and it works as before (only now runqemu
requires the 'snapshot' parameter).
(From meta-yocto rev: 24857a05b0c2cc70733f245cf9614ef5fb126647)
Signed-off-by: Jon Mason <jon.mason@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r-- | meta-yocto-bsp/conf/machine/genericarm64.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/genericarm64.conf b/meta-yocto-bsp/conf/machine/genericarm64.conf index 094af0eb9c..0c78960199 100644 --- a/meta-yocto-bsp/conf/machine/genericarm64.conf +++ b/meta-yocto-bsp/conf/machine/genericarm64.conf | |||
@@ -49,7 +49,7 @@ QB_SMP ?= "-smp 4" | |||
49 | # Boot into U-Boot and let that scan the disk for the next step, don't pass any kernel or filesystem hints | 49 | # Boot into U-Boot and let that scan the disk for the next step, don't pass any kernel or filesystem hints |
50 | QB_DEFAULT_BIOS ?= "u-boot.bin" | 50 | QB_DEFAULT_BIOS ?= "u-boot.bin" |
51 | QB_DEFAULT_KERNEL ?= "none" | 51 | QB_DEFAULT_KERNEL ?= "none" |
52 | QB_DEFAULT_FSTYPE ?= "wic" | 52 | QB_DEFAULT_FSTYPE ?= "wic.zst" |
53 | QB_FSINFO ?= "wic:no-kernel-in-fs" | 53 | QB_FSINFO ?= "wic:no-kernel-in-fs" |
54 | # Mount the wic rootfs as a virtio block device | 54 | # Mount the wic rootfs as a virtio block device |
55 | QB_ROOTFS_OPT ?= "-drive id=root,file=@ROOTFS@,if=none,format=raw -device virtio-blk-pci,drive=root" | 55 | QB_ROOTFS_OPT ?= "-drive id=root,file=@ROOTFS@,if=none,format=raw -device virtio-blk-pci,drive=root" |