mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 20:34:38 +00:00
arm: mx6: cm-fx6: add splash locations to cm-fx6
Add the following splash locations to cm-fx6: * filesystem formatted mmc * filesystem formatted usb * filesystem formatted sata Cc: Igor Grinberg <grinberg@compulab.co.il> Cc: Tom Rini <trini@konsulko.com> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Acked-by: Igor Grinberg <grinberg@compulab.co.il>
This commit is contained in:
parent
50c2d2e120
commit
ec26c1eef7
1 changed files with 18 additions and 0 deletions
|
@ -42,6 +42,24 @@ static struct splash_location cm_fx6_splash_locations[] = {
|
||||||
.flags = SPLASH_STORAGE_RAW,
|
.flags = SPLASH_STORAGE_RAW,
|
||||||
.offset = 0x100000,
|
.offset = 0x100000,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.name = "mmc_fs",
|
||||||
|
.storage = SPLASH_STORAGE_MMC,
|
||||||
|
.flags = SPLASH_STORAGE_FS,
|
||||||
|
.devpart = "2:1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "usb_fs",
|
||||||
|
.storage = SPLASH_STORAGE_USB,
|
||||||
|
.flags = SPLASH_STORAGE_FS,
|
||||||
|
.devpart = "0:1",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "sata_fs",
|
||||||
|
.storage = SPLASH_STORAGE_SATA,
|
||||||
|
.flags = SPLASH_STORAGE_FS,
|
||||||
|
.devpart = "0:1",
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
int splash_screen_prepare(void)
|
int splash_screen_prepare(void)
|
||||||
|
|
Loading…
Add table
Reference in a new issue