mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
pxe: support "devicetree" tag
The specification for extlinux.conf[1] states that "fdt" is an alias for "devicetree". To date, U-Boot only implements "fdt". Rectify that. [1] http://freedesktop.org/wiki/Specifications/BootLoaderSpec/ Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
parent
07e2822d15
commit
f43c401b72
1 changed files with 1 additions and 0 deletions
|
@ -745,6 +745,7 @@ static const struct token keywords[] = {
|
|||
{"append", T_APPEND},
|
||||
{"initrd", T_INITRD},
|
||||
{"include", T_INCLUDE},
|
||||
{"devicetree", T_FDT},
|
||||
{"fdt", T_FDT},
|
||||
{"ontimeout", T_ONTIMEOUT,},
|
||||
{"ipappend", T_IPAPPEND,},
|
||||
|
|
Loading…
Reference in a new issue