]> git.ipfire.org Git - thirdparty/u-boot.git/commit - doc/README.pxe
cmd: pxe: add support for FIT config selection
authorPatrick Delaunay <patrick.delaunay@st.com>
Tue, 2 Oct 2018 08:54:48 +0000 (10:54 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 8 Oct 2018 18:45:02 +0000 (14:45 -0400)
commit2023000aed6b586787dd9b02fb6b7adeaec9c23d
tree3e3edeaf3836ad51eba46f277864e2f0b35b61da
parentc45414b542ee31283bd5954211facbee217f0322
cmd: pxe: add support for FIT config selection

Add a way in configuration files (exlinux.conf for sysboot command)
to select a specific FIT configuration. The configuration is selected
with a string added after the FIT filename in the label "KERNEL" or
"LINUX", using the same format than bootm command:

KERNEL [Filename]#<conf>[#<extra-conf[#...]]

This configuration string, beginning by '#', is directly appended
to bootm argument 1 after <kernel_addr_r>.

bootm [<kernel_addr_r>]#<conf>[#<extra-conf[#...]]

see doc/uImage.FIT/command_syntax_extensions.txt for details

Example :
 KERNEL /fit.itb#cfg1
 KERNEL /fit.itb#cfg2

Configuration can be use also for overlay management :
 KERNEL /fit.itb#cfg1#dtbo1#dtbo3

see doc/uImage.FIT/overlay-fdt-boot.txt for details

Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
cmd/pxe.c
doc/README.pxe