diff options
author | Nikita Kiryanov <nikita@compulab.co.il> | 2015-10-29 11:54:41 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-11-16 12:01:35 +0100 |
commit | 870dd3095facaada8b671d55affc2d060355725f (patch) | |
tree | 3010bfd213bc8f82969a84fd77801e28fc709b1c /board/compulab | |
parent | bcbb6448b937d93179ce267fa536a81d867cbf2e (diff) | |
download | u-boot-imx-870dd3095facaada8b671d55affc2d060355725f.zip u-boot-imx-870dd3095facaada8b671d55affc2d060355725f.tar.gz u-boot-imx-870dd3095facaada8b671d55affc2d060355725f.tar.bz2 |
splash_source: add support for filesystem formatted mmc
Add support for loading splash image from an SD card formatted with
a filesystem. Update boards to maintain original behavior where needed.
Cc: Igor Grinberg <grinberg@compulab.co.il>
Cc: Tom Rini <trini@konsulko.com>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
Diffstat (limited to 'board/compulab')
-rw-r--r-- | board/compulab/cm_fx6/cm_fx6.c | 1 | ||||
-rw-r--r-- | board/compulab/cm_t35/cm_t35.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/compulab/cm_fx6/cm_fx6.c b/board/compulab/cm_fx6/cm_fx6.c index 01871e1..202a178 100644 --- a/board/compulab/cm_fx6/cm_fx6.c +++ b/board/compulab/cm_fx6/cm_fx6.c @@ -39,6 +39,7 @@ static struct splash_location cm_fx6_splash_locations[] = { { .name = "sf", .storage = SPLASH_STORAGE_SF, + .flags = SPLASH_STORAGE_RAW, .offset = 0x100000, }, }; diff --git a/board/compulab/cm_t35/cm_t35.c b/board/compulab/cm_t35/cm_t35.c index ccefc40..189d903 100644 --- a/board/compulab/cm_t35/cm_t35.c +++ b/board/compulab/cm_t35/cm_t35.c @@ -64,6 +64,7 @@ struct splash_location splash_locations[] = { { .name = "nand", .storage = SPLASH_STORAGE_NAND, + .flags = SPLASH_STORAGE_RAW, .offset = 0x100000, }, }; |