mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 00/16] boot: implement generic bootsource target
@ 2025-04-01 10:47 Ahmad Fatoum
  2025-04-01 10:47 ` [PATCH 01/16] boot: change bootentry_register_provider to take struct argument Ahmad Fatoum
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Ahmad Fatoum @ 2025-04-01 10:47 UTC (permalink / raw)
  To: barebox

The default net boot target is suboptimal in that it usually fails for
a new board. A better default would be to try booting from the same boot
medium, barebox itself was booted from, which so far was only possible
via scripts.

This series adds a new way to achieve this through a bootsource alias.

`boot bootsource` will then be resolved to e.g. `boot mmc0`, which will
walk all partitions in search of bootloader spec entries.
In that system, `boot bootsource.1` would be resolved to `boot mmc0.1`.

A key aspect of the cdev resolution is that it happens at use time.
This makes it easier for dynamic aliases and even allows for having
aliases that resolve to multiple cdevs.

In the future with EFI support, this same mechanism can be used to
identify the correct ESP by its partition type and boot the EFI payload
contained within. To make that future easier, the blspec code is
reworked for better reuse in future before adding support to boot a
specific cdev by name without expecting that device name and cdev name
are identical.

In addition, I have patches that would follow to make cdev aliases
usable from the device tree as well: A barebox,bootsource node for
example would resolve to the correct cdev and can thus be used together
with barebox state to allow for images that behave identically on SD and
eMMC without having to resort to scripting or board code.

Ahmad Fatoum (16):
  boot: change bootentry_register_provider to take struct argument
  boot: move nfs:// parsing out of bootloader spec code
  blspec: remove unused blspec_scan_devices
  blspec: don't export blspec functions
  blspec: factor out generic parts into bootscan helper
  common: bootscan: add scan_disk callback
  blspec: support boot /dev/virtioblkX
  bootm: associate bootm overrides with struct bootentry
  boot: split off bootarg API into new bootargs.h header
  block: add get_rootarg block op into block_device_ops
  block: fixup rootwait argument when needed by default
  of: implement stub for of_cdev_find
  bootsource: implement bootsource_of_cdev_find
  common: bootdef: add new boot entry provider
  kconfig: implement IF_ENABLED helper
  boot: make bootsource the default boot target if enabled

 arch/arm/boards/protonic-imx6/board.c |  10 +-
 commands/boot.c                       |  11 +-
 common/Kconfig                        |  25 ++
 common/Makefile                       |   4 +-
 common/block.c                        |  27 ++
 common/blspec.c                       | 403 ++++++--------------------
 common/boot.c                         | 144 ++++++++-
 common/bootargs.c                     |  12 +
 common/bootchooser.c                  |   6 +-
 common/bootdef.c                      |  40 +++
 common/bootm.c                        |   9 +-
 common/bootscan.c                     | 187 ++++++++++++
 common/bootsource.c                   |  17 ++
 common/cdev-alias.c                   |  79 +++++
 drivers/block/efi-block-io.c          |  10 +-
 drivers/mci/mci-core.c                |  46 ++-
 drivers/usb/storage/usb.c             |   1 +
 fs/fs.c                               |  56 ----
 fs/nfs.c                              |   4 +
 include/block.h                       |   7 +
 include/blspec.h                      |  29 --
 include/boot.h                        |  26 +-
 include/bootargs.h                    |  29 ++
 include/bootm-overrides.h             |  30 ++
 include/bootm.h                       |  18 --
 include/bootscan.h                    |  34 +++
 include/bootsource.h                  |   1 +
 include/driver.h                      |  19 +-
 include/fs.h                          |   1 -
 include/linux/kconfig.h               |   6 +
 include/of.h                          |   5 +
 31 files changed, 814 insertions(+), 482 deletions(-)
 create mode 100644 common/bootdef.c
 create mode 100644 common/bootscan.c
 create mode 100644 common/cdev-alias.c
 delete mode 100644 include/blspec.h
 create mode 100644 include/bootargs.h
 create mode 100644 include/bootm-overrides.h
 create mode 100644 include/bootscan.h

-- 
2.39.5




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

end of thread, other threads:[~2025-04-01 11:09 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-01 10:47 [PATCH 00/16] boot: implement generic bootsource target Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 01/16] boot: change bootentry_register_provider to take struct argument Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 02/16] boot: move nfs:// parsing out of bootloader spec code Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 03/16] blspec: remove unused blspec_scan_devices Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 04/16] blspec: don't export blspec functions Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 05/16] blspec: factor out generic parts into bootscan helper Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 06/16] common: bootscan: add scan_disk callback Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 07/16] blspec: support boot /dev/virtioblkX Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 08/16] bootm: associate bootm overrides with struct bootentry Ahmad Fatoum
2025-04-01 10:47 ` [PATCH 09/16] boot: split off bootarg API into new bootargs.h header Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 10/16] block: add get_rootarg block op into block_device_ops Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 11/16] block: fixup rootwait argument when needed by default Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 12/16] of: implement stub for of_cdev_find Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 13/16] bootsource: implement bootsource_of_cdev_find Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 14/16] common: bootdef: add new boot entry provider Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 15/16] kconfig: implement IF_ENABLED helper Ahmad Fatoum
2025-04-01 10:48 ` [PATCH 16/16] boot: make bootsource the default boot target if enabled Ahmad Fatoum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox