Dear Tom,

The following changes since commit 68c07fc5fdf34f0926cf06fc0c4ebd6f2f3afe19:

Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2023-06-21 14:42:50 -0400)

are available in the Git repository at:

https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/doc-2023-07-rc6

for you to fetch changes up to 35ed599f430bcba2fd2bc14e52e6cb450cd9a10c:

doc: Improve documentation for the bootm command (2023-06-23 16:28:13 +0200)

Gitlab CI showed no issue building the updated documentation:
https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/16680

----------------------------------------------------------------
Pull request doc-2023-07-rc6

* move FIT documentation to HTML
* man-pages for the bind, bootm, and unbind commands

----------------------------------------------------------------
Heinrich Schuchardt (2):
      doc: unbind man-page
      doc: bind man-page

Simon Glass (14):
      doc: Move FIT into its own directory
      doc: Convert FIT source-file format to rST
      doc: Reformat the FIT documentation to make it nicer
      doc: Bring in the FIT examples
      doc: Bring in FIT x86 boot
      doc: Bring in FIT signature files
      doc: Bring in the FIT howto
      doc: Bring in the FIT overlay information
      doc: Tidy up the format docs to be more generic
      doc: Expand FIT tables to include all values
      doc: Move external FIT docs into the main body
      doc: Add signing to the FIT spec
      doc: Bring in the command-syntax extensions
      doc: Improve documentation for the bootm command

doc/uImage.FIT/beaglebone_vboot.txt | 607 ------------------
 doc/uImage.FIT/command_syntax_extensions.txt       | 201 ------
 doc/uImage.FIT/howto.txt                           | 411 ------------
 doc/uImage.FIT/kernel.its                          |  91 ---
 doc/uImage.FIT/kernel_fdt.its                      |  51 --
 doc/uImage.FIT/kernel_fdts_compressed.its          |  73 ---
 doc/uImage.FIT/multi-with-fpga.its                 |  68 --
 doc/uImage.FIT/multi-with-loadables.its            |  89 ---
 doc/uImage.FIT/multi.its                           | 133 ----
 doc/uImage.FIT/multi_spl.its                       |  96 ---
 doc/uImage.FIT/overlay-fdt-boot.txt                | 225 -------
 doc/uImage.FIT/sec_firmware_ppa.its                |  49 --
 doc/uImage.FIT/sign-configs.its                    |  45 --
 doc/uImage.FIT/sign-images.its                     |  42 --
doc/uImage.FIT/signature.txt | 707 ---------------------
 doc/uImage.FIT/source_file_format.txt              | 322 ----------
 doc/uImage.FIT/uefi.its                            |  67 --
 doc/uImage.FIT/update3.its                         |  44 --
 doc/uImage.FIT/update_uboot.its                    |  24 -
 doc/uImage.FIT/x86-fit-boot.txt                    | 272 --------
 doc/usage/cmd/bind.rst                             | 103 +++
 doc/usage/cmd/bootm.rst                            | 300 +++++++++
 doc/usage/cmd/source.rst                           |   2 +-
 doc/usage/cmd/unbind.rst                           |  95 +++
doc/usage/fit/beaglebone_vboot.rst | 612 ++++++++++++++++++
 doc/usage/fit/howto.rst                            | 419 ++++++++++++
 doc/usage/{fit.rst => fit/index.rst}               |  11 +
 doc/usage/fit/kernel.rst                           |  93 +++
 doc/usage/fit/kernel_fdt.rst                       |  54 ++
 doc/usage/fit/kernel_fdts_compressed.rst           |  77 +++
 doc/usage/fit/multi-with-fpga.rst                  |  70 ++
 doc/usage/fit/multi-with-loadables.rst             |  91 +++
 doc/usage/fit/multi.rst                            | 136 ++++
 doc/usage/fit/multi_spl.rst                        | 101 +++
 doc/usage/fit/overlay-fdt-boot.rst                 | 227 +++++++
 doc/usage/fit/sec_firmware_ppa.rst                 |  54 ++
 doc/usage/fit/sign-configs.rst                     |  52 ++
 doc/usage/fit/sign-images.rst                      |  49 ++
doc/usage/fit/signature.rst | 696 ++++++++++++++++++++ doc/usage/fit/source_file_format.rst | 685 ++++++++++++++++++++
 doc/usage/fit/uefi.rst                             |  72 +++
 doc/usage/fit/update3.rst                          |  47 ++
 doc/usage/fit/update_uboot.rst                     |  28 +
 .../fit/verified-boot.rst}                         |  83 +--
 doc/usage/fit/x86-fit-boot.rst                     | 269 ++++++++
 doc/usage/index.rst                                |   5 +-
 46 files changed, 4389 insertions(+), 3659 deletions(-)
 delete mode 100644 doc/uImage.FIT/beaglebone_vboot.txt
 delete mode 100644 doc/uImage.FIT/command_syntax_extensions.txt
 delete mode 100644 doc/uImage.FIT/howto.txt
 delete mode 100644 doc/uImage.FIT/kernel.its
 delete mode 100644 doc/uImage.FIT/kernel_fdt.its
 delete mode 100644 doc/uImage.FIT/kernel_fdts_compressed.its
 delete mode 100644 doc/uImage.FIT/multi-with-fpga.its
 delete mode 100644 doc/uImage.FIT/multi-with-loadables.its
 delete mode 100644 doc/uImage.FIT/multi.its
 delete mode 100644 doc/uImage.FIT/multi_spl.its
 delete mode 100644 doc/uImage.FIT/overlay-fdt-boot.txt
 delete mode 100644 doc/uImage.FIT/sec_firmware_ppa.its
 delete mode 100644 doc/uImage.FIT/sign-configs.its
 delete mode 100644 doc/uImage.FIT/sign-images.its
 delete mode 100644 doc/uImage.FIT/signature.txt
 delete mode 100644 doc/uImage.FIT/source_file_format.txt
 delete mode 100644 doc/uImage.FIT/uefi.its
 delete mode 100644 doc/uImage.FIT/update3.its
 delete mode 100644 doc/uImage.FIT/update_uboot.its
 delete mode 100644 doc/uImage.FIT/x86-fit-boot.txt
 create mode 100644 doc/usage/cmd/bind.rst
 create mode 100644 doc/usage/cmd/bootm.rst
 create mode 100644 doc/usage/cmd/unbind.rst
 create mode 100644 doc/usage/fit/beaglebone_vboot.rst
 create mode 100644 doc/usage/fit/howto.rst
 rename doc/usage/{fit.rst => fit/index.rst} (61%)
 create mode 100644 doc/usage/fit/kernel.rst
 create mode 100644 doc/usage/fit/kernel_fdt.rst
 create mode 100644 doc/usage/fit/kernel_fdts_compressed.rst
 create mode 100644 doc/usage/fit/multi-with-fpga.rst
 create mode 100644 doc/usage/fit/multi-with-loadables.rst
 create mode 100644 doc/usage/fit/multi.rst
 create mode 100644 doc/usage/fit/multi_spl.rst
 create mode 100644 doc/usage/fit/overlay-fdt-boot.rst
 create mode 100644 doc/usage/fit/sec_firmware_ppa.rst
 create mode 100644 doc/usage/fit/sign-configs.rst
 create mode 100644 doc/usage/fit/sign-images.rst
 create mode 100644 doc/usage/fit/signature.rst
 create mode 100644 doc/usage/fit/source_file_format.rst
 create mode 100644 doc/usage/fit/uefi.rst
 create mode 100644 doc/usage/fit/update3.rst
 create mode 100644 doc/usage/fit/update_uboot.rst
rename doc/{uImage.FIT/verified-boot.txt => usage/fit/verified-boot.rst} (55%)
 create mode 100644 doc/usage/fit/x86-fit-boot.rst

Reply via email to