summaryrefslogtreecommitdiff
path: root/doc/develop/driver-model
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-10-26 07:51:18 -0600
committerTom Rini <[email protected]>2025-10-26 09:03:36 -0600
commit9094482ca7576877b2bfaa57c8e73cfeb536f8b9 (patch)
treea7ab2b7409802fe0dd3b2e36ecad3960c4b52004 /doc/develop/driver-model
parentfd976ff3a233ae7c6a9f5bec790b02bbbf57bb24 (diff)
parent5335f8d25b2f39b9dd954981364f3cddde01895f (diff)
Merge tag 'efi-2026-01-rc1-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2026-01-rc1-2 CI: * https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/28024 Documentation: * develop: virtio: Fix qemu example (true/false -> on/off) * separate read and write command documentation * usage: Add general rule for `$?` * askenv: Reword and remove return value * seama: Reword return value section * usage: Use glob for all commands * Fix typos and formatting UEFI: * console: support editable input fields
Diffstat (limited to 'doc/develop/driver-model')
-rw-r--r--doc/develop/driver-model/fdt-fixup.rst2
-rw-r--r--doc/develop/driver-model/virtio.rst4
2 files changed, 3 insertions, 3 deletions
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
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.