]> git.baikalelectronics.ru Git - uboot.git/commit
bootstd: Add an implementation of distro PXE boot
authorSimon Glass <sjg@chromium.org>
Mon, 25 Apr 2022 05:31:16 +0000 (23:31 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 25 Apr 2022 14:00:04 +0000 (10:00 -0400)
commit7507f9c36b0ea1d535224a8e791a2c9c5fbe6e71
tree634bbacc3713cc4f31a203b271d4d16e8403a84e
parentbaeea3a4a9cfab245abc9479c82742561339f1c9
bootstd: Add an implementation of distro PXE boot

Add a bootmeth driver which handles distro boot from a network device, so
we can boot a bootflow using this commonly used mechanism.

In effect, this provides the same functionality as the 'pxe' command
and shares the same code. But the interface into it is via a bootmeth.

For now this requires the 'pxe' command be enabled. Future work may tidy
this up so that it can be used without CONFIG_CMDLINE being enabled.

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/Kconfig
boot/Makefile
boot/bootmeth_pxe.c [new file with mode: 0644]