doc: samsung: Fix PXE doc for E850-96 board
authorSam Protsenko <semen.protsenko@linaro.org>
Tue, 18 Nov 2025 21:00:55 +0000 (15:00 -0600)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Fri, 21 Nov 2025 18:26:52 +0000 (19:26 +0100)
commita5dc935df7d0e5df4072521ba23279d07bbadcb5
tree3fdd5946b980e6a8086085b3b61ee127a56eb1fe
parentb0be86bbf8b3909727aab505a23cdbf0886c5dd7
doc: samsung: Fix PXE doc for E850-96 board

As stated in PXELINUX doc [1], the PXE configuration file has to be in
the format of "01-MAC-address" for Ethernet connections:

    The hardware type (using its ARP "htype" code) and address, all in
    lowercase hexadecimal with dash separators. For example, for an
    Ethernet (i.e. ARP hardware type "1") with address
    "88:99:AA:BB:CC:DD", it would search for the filename
    "01-88-99-aa-bb-cc-dd".

Indeed, PXE implementation in U-Boot looks for files like that, as can
be seen from this call chain:

    format_mac_pxe()
    pxe_mac_path()
    pxe_get()
    extlinux_pxe_read_bootflow()

Mention the fact that PXE expects the configuration file to be prepended
with "01" in the PXE section of E850-96 documentation. While at it, fix
some other minor issues in PXE section.

[1] https://wiki.syslinux.org/wiki/index.php?title=PXELINUX

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
doc/board/samsung/e850-96.rst