diff options
| author | Luca Weiss <[email protected]> | 2025-06-11 13:51:25 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-06-24 07:54:51 -0600 |
| commit | 41e2de28c01caf68c62732397492b32a57d511be (patch) | |
| tree | dd944ae11756371703040eaa7a3cbb4fe17aa942 | |
| parent | 13043a2339a098df276443e418b43ad4e7db190f (diff) | |
doc: board/qualcomm: Add example for boot image version 2
As required e.g. on Fairphone 5, add an example how to use boot image
with header version 2.
Signed-off-by: Luca Weiss <[email protected]>
Reviewed-by: Casey Connolly <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Casey Connolly <[email protected]>
| -rw-r--r-- | doc/board/qualcomm/board.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/board/qualcomm/board.rst b/doc/board/qualcomm/board.rst index 23159f2091d..642c5095261 100644 --- a/doc/board/qualcomm/board.rst +++ b/doc/board/qualcomm/board.rst @@ -117,6 +117,13 @@ Or with no FIT image:: mkbootimg --kernel u-boot-nodtb.bin.gz-dtb \ --output boot.img --pagesize 4096 --base 0x80000000 +Other devices with boot image version 2 can be built like this example:: + + mkbootimg --pagesize 4096 --header_version 2 \ + --kernel_offset 0x00008000 --kernel u-boot-nodtb.bin.gz \ + --dtb_offset 0x01f00000 --dtb dts/upstream/src/arm64/qcom/qcm6490-fairphone-fp5.dtb \ + --output boot.img + - Flash boot.img using fastboot and erase dtbo to avoid conflicts with our DTB: .. code-block:: bash |
