
Dear Tom,
The following changes since commit 459560000736ac7c9c8b04522789c20fb45ff95a:
Merge patch series "bootstd: Add Android support" (2024-07-18 17:03:47 -0600)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2024-10-rc1-3
for you to fetch changes up to 38b000881ebc0a48b0a814fce9f52dfe62ac644b:
doc: Describe the bootstd settings (2024-07-19 14:01:46 +0200)
No issues were reported on Gitlab:
https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/21685
---------------------------------------------------------------- Pull request efi-2024-10-rc1-3
Documentation:
* move out-of-tree building info to HTML * enable ReadTheDocs addon management * Remove FIT documentation that is elsewhere * Update table of contents for FIT images * Add description for more boot methods
UEFI:
* Correct finding distro device-path for media devices * Fix typo in EFI_RT_VOLATILE_STORE description
Other:
* MAINTAINERS: Rename BOOTDEVICE
---------------------------------------------------------------- Heinrich Schuchardt (3): efi_loader: find distro device-path for media devices doc: move out-of-tree building info to HTML doc: enable ReadTheDocs addon management
Michal Simek (1): efi_loader: Fix typo in EFI_RT_VOLATILE_STORE description
Sam Povilus (2): doc: Remove FIT documentation that is elsewhere doc: add missing table of content links
Simon Glass (14): MAINTAINERS: Rename BOOTDEVICE doc: Move bootstd into its own directory doc: Mention automatic binding of bootmeths doc: Add a description for bootmeth_extlinux doc: Add a description for bootmeth_pxe doc: Add a description for bootmeth_qfw doc: Add a description for bootmeth_cros doc: Add a description for bootmeth_sandbox bootstd: Tidy up comments on the boothmeth drivers bootstd: Correct handling of script from network doc: Add a description for bootmeth_script doc: Add a link to VBE from the bootstd docs boot: Correct indentation in efi bootmeth doc: Describe the bootstd settings
MAINTAINERS | 4 +- README | 20 - boot/bootmeth_efi.c | 3 +- boot/bootmeth_extlinux.c | 2 +- boot/bootmeth_qfw.c | 2 +- boot/bootmeth_sandbox.c | 2 +- boot/bootmeth_script.c | 53 +- doc/board/starfive/milk-v_mars_cm.rst | 2 +- doc/build/gcc.rst | 28 + doc/conf.py | 6 + doc/develop/board_best_practices.rst | 2 +- doc/develop/bootstd/cros.rst | 33 ++ doc/develop/bootstd/extlinux.rst | 29 + doc/develop/bootstd/index.rst | 15 + doc/develop/{bootstd.rst => bootstd/overview.rst} | 45 +- doc/develop/bootstd/pxelinux.rst | 27 + doc/develop/bootstd/qfw.rst | 20 + doc/develop/bootstd/sandbox.rst | 17 + doc/develop/bootstd/script.rst | 52 ++ doc/develop/index.rst | 2 +- doc/usage/cmd/bootdev.rst | 2 +- doc/usage/cmd/bootflow.rst | 2 +- doc/usage/cmd/bootmeth.rst | 2 +- doc/usage/environment.rst | 2 +- doc/usage/fit/index.rst | 25 +- doc/usage/fit/source_file_format.rst | 684 +--------------------- include/efi_loader.h | 2 +- lib/efi_loader/Kconfig | 2 +- lib/efi_loader/efi_bootmgr.c | 2 +- lib/efi_loader/efi_fdt.c | 33 +- 30 files changed, 350 insertions(+), 770 deletions(-) create mode 100644 doc/develop/bootstd/cros.rst create mode 100644 doc/develop/bootstd/extlinux.rst create mode 100644 doc/develop/bootstd/index.rst rename doc/develop/{bootstd.rst => bootstd/overview.rst} (95%) create mode 100644 doc/develop/bootstd/pxelinux.rst create mode 100644 doc/develop/bootstd/qfw.rst create mode 100644 doc/develop/bootstd/sandbox.rst create mode 100644 doc/develop/bootstd/script.rst