
This series adds some documentation about most of the bootmeths and tidies up a few minor areas.
It also fixes a bug in network-based booting of a script.
Changes in v2: - Add new patch to mention automatic binding of bootmeths - Adjustments from Heinrich's comments
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 +- 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/develop/board_best_practices.rst | 2 +- doc/develop/bootstd/cros.rst | 33 ++++++++++++ doc/develop/bootstd/extlinux.rst | 28 ++++++++++ doc/develop/bootstd/index.rst | 15 ++++++ .../{bootstd.rst => bootstd/overview.rst} | 43 ++++++++++----- 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 +- 21 files changed, 269 insertions(+), 46 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