From ed00d12c015aec7c316fcd482737181f9dff8f4d Mon Sep 17 00:00:00 2001 From: Wolfgang Wallner Date: Fri, 24 Oct 2025 17:11:59 +0200 Subject: doc: Fix typos Fix typos/wording in various files in doc/. Signed-off-by: Wolfgang Wallner Reviewed-by: E Shattow --- doc/develop/driver-model/fdt-fixup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/develop/driver-model') diff --git a/doc/develop/driver-model/fdt-fixup.rst b/doc/develop/driver-model/fdt-fixup.rst index 974c09031ed..b547daf79ff 100644 --- a/doc/develop/driver-model/fdt-fixup.rst +++ b/doc/develop/driver-model/fdt-fixup.rst @@ -45,7 +45,7 @@ An additional problem with the device tree in U-Boot is that it is read-only, and the current mechanisms don't allow easy manipulation of the device tree after the driver model has been initialized. While migrating to a live device tree (at least after the relocation) would greatly simplify the solution of -this problem, it is a non-negligible task to implement it, an a interim +this problem, it is a non-negligible task to implement it, an ad interim solution is needed to address the problem at least in the medium-term. Hence, we propose a solution to this problem by offering a board-specific -- cgit v1.2.3 From 1f6da608c3d9a9a7d189177614cfb8d6a1ad8d6c Mon Sep 17 00:00:00 2001 From: Wolfgang Wallner Date: Fri, 24 Oct 2025 17:12:05 +0200 Subject: doc: develop: virtio: Fix qemu example (true/false -> on/off) The given qemu examples use true/false, while qemu actually on/off. Signed-off-by: Wolfgang Wallner --- doc/develop/driver-model/virtio.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/develop/driver-model') diff --git a/doc/develop/driver-model/virtio.rst b/doc/develop/driver-model/virtio.rst index 31b94d04675..9a5e3240c3c 100644 --- a/doc/develop/driver-model/virtio.rst +++ b/doc/develop/driver-model/virtio.rst @@ -118,9 +118,9 @@ By default QEMU creates VirtIO legacy devices by default. To create non-legacy $ qemu-system-i386 -nographic -bios u-boot.rom \ -netdev tap,ifname=tap0,id=net0 \ - -device virtio-net-pci,netdev=net0,disable-legacy=true,disable-modern=false \ + -device virtio-net-pci,netdev=net0,disable-legacy=on,disable-modern=off \ -drive if=none,file=test.img,format=raw,id=hd0 \ - -device virtio-blk-pci,drive=hd0,disable-legacy=true,disable-modern=false + -device virtio-blk-pci,drive=hd0,disable-legacy=on,disable-modern=off A 'virtio' command is provided in U-Boot shell. -- cgit v1.2.3