diff mbox

[U-Boot,V2,1/2] pxe: support "devicetree" tag

Message ID 1390945810-26477-1-git-send-email-swarren@wwwdotorg.org
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Stephen Warren Jan. 28, 2014, 9:50 p.m. UTC
From: Stephen Warren <swarren@nvidia.com>

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>
---
v2: New patch.
---
 common/cmd_pxe.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Tom Rini Feb. 4, 2014, 10:05 p.m. UTC | #1
On Tue, Jan 28, 2014 at 02:50:09PM -0700, Stephen Warren wrote:

> From: Stephen Warren <swarren@nvidia.com>
> 
> 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>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c
index c27ec354cc59..4f00b1a607d4 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,},