blob: a5863b6fafe581ff7bbeaba606d567e2ff0fbca1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* CBFS accessors for bootblock stage.
*
* Copyright (C) 2013 Alexandru Gagniuc <mr.nuke.me@gmail.com>
* Subject to the GNU GPL v2, or (at your option) any later version.
*/
#include <cbfs.h>
#include <console/console.h>
int init_default_cbfs_media(struct cbfs_media *media)
{
printk(BIOS_ERR, "Oh my! I don't know how to access CBFS yet.");
return 0;
}
|