All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/13] doc: Add documentation for bootmeths
@ 2024-07-15 10:13 Simon Glass
  2024-07-15 10:13 ` [PATCH 01/13] MAINTAINERS: Rename BOOTDEVICE Simon Glass
                   ` (12 more replies)
  0 siblings, 13 replies; 49+ messages in thread
From: Simon Glass @ 2024-07-15 10:13 UTC (permalink / raw)
  To: U-Boot Mailing List
  Cc: Tom Rini, Mattijs Korpershoek, Simon Glass, AKASHI Takahiro,
	Abdellatif El Khlifi, Alexander Dahl, Andy Shevchenko, Bin Meng,
	Bin Meng, Caleb Connolly, E Shattow, Heinrich Schuchardt,
	Ilias Apalodimas, Ion Agorria, Jaewon Jung, Janne Grunau,
	Joao Marcos Costa, John Clark, Marek Vasut, Michal Simek, Nam Cao,
	Quentin Schulz, Sam Protsenko, Shantur Rathore, Stefan Roese,
	Sumit Garg, Svyatoslav Ryhel, Tony Dinh

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.


Simon Glass (13):
  MAINTAINERS: Rename BOOTDEVICE
  doc: Move bootstd into its own directory
  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              | 27 ++++++++++
 doc/develop/bootstd/index.rst                 | 15 ++++++
 .../{bootstd.rst => bootstd/overview.rst}     | 38 +++++++++----
 doc/develop/bootstd/pxelinux.rst              | 27 ++++++++++
 doc/develop/bootstd/qfw.rst                   | 21 ++++++++
 doc/develop/bootstd/sandbox.rst               | 18 +++++++
 doc/develop/bootstd/script.rst                | 49 +++++++++++++++++
 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, 263 insertions(+), 45 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} (96%)
 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

-- 
2.34.1


^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2024-07-22  6:53 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-15 10:13 [PATCH 00/13] doc: Add documentation for bootmeths Simon Glass
2024-07-15 10:13 ` [PATCH 01/13] MAINTAINERS: Rename BOOTDEVICE Simon Glass
2024-07-15 13:34   ` Quentin Schulz
2024-07-16  7:04   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 02/13] doc: Move bootstd into its own directory Simon Glass
2024-07-15 14:12   ` Quentin Schulz
2024-07-15 21:58   ` Heinrich Schuchardt
2024-07-16  7:04     ` Simon Glass
2024-07-16 16:18       ` Tom Rini
2024-07-19 15:05         ` Simon Glass
2024-07-16  7:09   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 03/13] doc: Add a description for bootmeth_extlinux Simon Glass
2024-07-15 14:12   ` Quentin Schulz
2024-07-15 22:30   ` Heinrich Schuchardt
2024-07-16  7:04     ` Simon Glass
2024-07-16  7:17   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 04/13] doc: Add a description for bootmeth_pxe Simon Glass
2024-07-15 14:13   ` Quentin Schulz
2024-07-15 22:42   ` Heinrich Schuchardt
2024-07-16  7:04     ` Simon Glass
2024-07-16  7:21   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 05/13] doc: Add a description for bootmeth_qfw Simon Glass
2024-07-15 14:13   ` Quentin Schulz
2024-07-15 22:56   ` Heinrich Schuchardt
2024-07-16  7:04     ` Simon Glass
2024-07-16  7:25   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 06/13] doc: Add a description for bootmeth_cros Simon Glass
2024-07-15 14:13   ` Quentin Schulz
2024-07-15 23:02   ` Heinrich Schuchardt
2024-07-16  7:04     ` Simon Glass
2024-07-16  7:28   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 07/13] doc: Add a description for bootmeth_sandbox Simon Glass
2024-07-15 14:13   ` Quentin Schulz
2024-07-16  7:30   ` Mattijs Korpershoek
2024-07-15 10:13 ` [PATCH 08/13] bootstd: Tidy up comments on the boothmeth drivers Simon Glass
2024-07-15 14:14   ` Quentin Schulz
2024-07-15 23:11   ` Heinrich Schuchardt
2024-07-15 10:13 ` [PATCH 09/13] bootstd: Correct handling of script from network Simon Glass
2024-07-15 10:13 ` [PATCH 10/13] doc: Add a description for bootmeth_script Simon Glass
2024-07-15 14:14   ` Quentin Schulz
2024-07-15 10:13 ` [PATCH 11/13] doc: Add a link to VBE from the bootstd docs Simon Glass
2024-07-15 14:14   ` Quentin Schulz
2024-07-15 23:09   ` Heinrich Schuchardt
2024-07-15 10:13 ` [PATCH 12/13] boot: Correct indentation in efi bootmeth Simon Glass
2024-07-15 14:14   ` Quentin Schulz
2024-07-15 23:05   ` Heinrich Schuchardt
2024-07-22  6:52   ` Ilias Apalodimas
2024-07-15 10:13 ` [PATCH 13/13] doc: Describe the bootstd settings Simon Glass
2024-07-15 14:15   ` Quentin Schulz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.