Re: [U-Boot] [PATCH v2] spl_mmc: allow to load raw image

2016-04-29 Thread Adam Ford
On Tue, Mar 15, 2016 at 10:10 PM, Masahiro Yamada wrote: > The function spl_parse_image_header() falls back to a raw image > if the U-Boot header is missing and CONFIG_SPL_PANIC_ON_RAW_IMAGE > is undefined. While, mmc_load_image_raw_sector() only accepts a > U-Boot

Re: [U-Boot] [PATCH v2] spl_mmc: allow to load raw image

2016-03-23 Thread Masahiro Yamada
2016-03-16 12:10 GMT+09:00 Masahiro Yamada : > The function spl_parse_image_header() falls back to a raw image > if the U-Boot header is missing and CONFIG_SPL_PANIC_ON_RAW_IMAGE > is undefined. While, mmc_load_image_raw_sector() only accepts a > U-Boot legacy image

Re: [U-Boot] [PATCH v2] spl_mmc: allow to load raw image

2016-03-19 Thread Tom Rini
On Wed, Mar 16, 2016 at 12:10:00PM +0900, Masahiro Yamada wrote: > The function spl_parse_image_header() falls back to a raw image > if the U-Boot header is missing and CONFIG_SPL_PANIC_ON_RAW_IMAGE > is undefined. While, mmc_load_image_raw_sector() only accepts a > U-Boot legacy image or an FIT

[U-Boot] [PATCH v2] spl_mmc: allow to load raw image

2016-03-15 Thread Masahiro Yamada
The function spl_parse_image_header() falls back to a raw image if the U-Boot header is missing and CONFIG_SPL_PANIC_ON_RAW_IMAGE is undefined. While, mmc_load_image_raw_sector() only accepts a U-Boot legacy image or an FIT image, preventing us from loading a raw image. Signed-off-by: Masahiro