lib/cbfs_core.c: Supply size of file as well in cbfs_get_file_content
Change-Id: I5b93e5321e470f19ad22ca2cfdb1ebf3b340b252 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/4659 Reviewed-by: Patrick Georgi <patrick@georgi-clan.de> Tested-by: build bot (Jenkins)
This commit is contained in:
@@ -273,7 +273,8 @@ void vbe_set_graphics(void)
|
||||
decdata = malloc(sizeof(*decdata));
|
||||
unsigned char *jpeg = cbfs_get_file_content(CBFS_DEFAULT_MEDIA,
|
||||
"bootsplash.jpg",
|
||||
CBFS_TYPE_BOOTSPLASH);
|
||||
CBFS_TYPE_BOOTSPLASH,
|
||||
NULL);
|
||||
if (!jpeg) {
|
||||
printk(BIOS_DEBUG, "VBE: No bootsplash found.\n");
|
||||
return;
|
||||
|
@@ -727,7 +727,8 @@ void vbe_set_graphics(void)
|
||||
|
||||
unsigned char *jpeg = cbfs_get_file_content(CBFS_DEFAULT_MEDIA,
|
||||
"bootsplash.jpg",
|
||||
CBFS_TYPE_BOOTSPLASH);
|
||||
CBFS_TYPE_BOOTSPLASH,
|
||||
NULL);
|
||||
if (!jpeg) {
|
||||
DEBUG_PRINTF_VBE("Could not find bootsplash.jpg\n");
|
||||
return;
|
||||
|
Reference in New Issue
Block a user