From: Stephen Warren Date: Tue, 28 Jan 2014 21:50:09 +0000 (-0700) Subject: pxe: support "devicetree" tag X-Git-Tag: v2014.04-rc1~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f43c401b72bb0db43ab0b55c4a79e1f4889d3aa2;p=kernel%2Fu-boot.git 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 --- diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index c27ec35..4f00b1a 100644 --- a/common/cmd_pxe.c +++ b/common/cmd_pxe.c @@ -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,},