Home
last modified time | relevance | path

Searched hist:c78fce69 (Results 1 – 1 of 1) sorted by relevance

/openbmc/u-boot/common/
H A Dimage.cc78fce69 Fri Jul 11 03:43:13 CDT 2008 Michal Simek <monstr@monstr.eu> FIS: repare incorrect return value with ramdisk handling

Microblaze and PowerPC use boot_get_ramdisk for loading
ramdisk to memory with checking return value.
Return 0 means success. Return 1 means failed.
Here is correspond part of code from bootm.c which check
return code.

ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
&rd_data_start, &rd_data_end);
if (ret)
goto error;

Signed-off-by: Michal Simek <monstr@monstr.eu>