diff options
| author | Tom Rini <[email protected]> | 2023-02-19 17:03:30 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-19 17:03:30 -0500 |
| commit | 4eb7c5030d3f3c707c02a64dc8ea90de3da89928 (patch) | |
| tree | 5a44e93534606e0ad7d2268dbdd326c3c93911bf /doc/develop | |
| parent | 1198b38ba980efed050c878c083607d997010e03 (diff) | |
| parent | 5e957ae3504290a0c62188331a429ec9b908aa1b (diff) | |
Merge tag 'efi-2023-04-rc3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2023-04-rc3
Documentation
* Add a document for the RISC-V architecture
* Move gateworks and bcm7xxx documentation to HTML
UEFI
* measure the loaded device-tree
* make CapsuleMax configurable and provide sensible default
Diffstat (limited to 'doc/develop')
| -rw-r--r-- | doc/develop/devicetree/dt_qemu.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/develop/devicetree/dt_qemu.rst b/doc/develop/devicetree/dt_qemu.rst index c25c4fb053d..8ba2b225590 100644 --- a/doc/develop/devicetree/dt_qemu.rst +++ b/doc/develop/devicetree/dt_qemu.rst @@ -13,7 +13,7 @@ When `CONFIG_OF_BOARD` is enabled Obtaining the QEMU devicetree ----------------------------- -Where QEMU generates its own devicetree to pass to U-Boot tou can use +Where QEMU generates its own devicetree to pass to U-Boot you can use `-dtb u-boot.dtb` to force QEMU to use U-Boot's in-tree version. To obtain the devicetree that qemu generates, add `-machine dumpdtb=qemu.dtb`, @@ -38,7 +38,7 @@ to produce a text file. It drops the duplicate header on the qemu one. Then it joins them up and runs them through dtc to compile the output:: qemu-system-arm -machine virt -machine dumpdtb=qemu.dtb - cat <(dtc -I dtb qemu.dtb) <(dtc -I dtb u-boot.dtb |grep -v /dts-v1/) |dtc - -o merged.dtb + cat <(dtc -I dtb qemu.dtb) <(dtc -I dtb u-boot.dtb | grep -v /dts-v1/) | dtc - -o merged.dtb You can then run qemu with the merged devicetree, e.g.:: |
