From 91a616741fc128cdb88f39bddcd4d72fe17466d0 Mon Sep 17 00:00:00 2001 From: Nick Spence Date: Thu, 8 May 2008 22:32:22 -0700 Subject: Support legacy multi-type images without FDT section. This patch enables legacy multi-type images containing only a Linux kernel and root file system to be loaded, maintaining compatibility with previous versions of u-boot. This is required when using old image files such as a Linux 2.4 kernel / filesystem. Signed-off-by: Nick Spence Acked-by: Bartlomiej Sieka --- lib_ppc/bootm.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib_ppc') diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c index 0328bad..9194fd8 100644 --- a/lib_ppc/bootm.c +++ b/lib_ppc/bootm.c @@ -667,9 +667,8 @@ static int boot_get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], goto error; } } else { - fdt_error ("Did not find a Flattened Device Tree " - "in a legacy multi-component image"); - goto error; + debug ("## No Flattened Device Tree\n"); + return 0; } } else { debug ("## No Flattened Device Tree\n"); -- cgit v1.1