[U-Boot] bootm, linux: fix booting Multi-File Image with kernel+ramdisk+fdt

2010-03-29 Thread Heiko Schocher
Booting a Multi-File Image including a linux kernel, ramdisk and
fdt, generated with

mkimage -A ppc \
-O linux \
-T multi \
-C gzip \
-a  \
-e  \
-n kernel-2.6+initrd+dtb \
-d vmlinux.bin.gz:ramdisk_image.gz:board.dtb \
multi.bin

actually fails, because ramdisk start and end addresses
didn;t get initialized. This patch fixes this issue.

Tested on the KUP4K board.

Signed-off-by: Heiko Schocher h...@denx.de
---
 common/cmd_bootm.c |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 23ab0c4..995e378 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -291,7 +291,8 @@ static int bootm_start(cmd_tbl_t *cmdtp, int flag, int 
argc, char *argv[])
return 1;
}

-   if ((images.os.type == IH_TYPE_KERNEL) 
+   if (((images.os.type == IH_TYPE_KERNEL) ||
+(images.os.type == IH_TYPE_MULTI)) 
(images.os.os == IH_OS_LINUX)) {
/* find ramdisk */
ret = boot_get_ramdisk (argc, argv, images, IH_INITRD_ARCH,
-- 
1.6.2.5
-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] bootm, linux: fix booting Multi-File Image with kernel+ramdisk+fdt

2010-03-29 Thread Wolfgang Denk
Dear Heiko Schocher,

In message 4bb08be4@denx.de you wrote:
 Booting a Multi-File Image including a linux kernel, ramdisk and
 fdt, generated with
 
 mkimage -A ppc \
 -O linux \
 -T multi \
 -C gzip \
 -a  \
 -e  \
 -n kernel-2.6+initrd+dtb \
 -d vmlinux.bin.gz:ramdisk_image.gz:board.dtb \
 multi.bin
 
 actually fails, because ramdisk start and end addresses
 didn;t get initialized. This patch fixes this issue.
 
 Tested on the KUP4K board.
 
 Signed-off-by: Heiko Schocher h...@denx.de
 ---
  common/cmd_bootm.c |3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
A witty saying proves nothing, but saying  something  pointless  gets
people's attention.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot