aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/allwinner/a10/bootblock_media.c
blob: a585bcaaa8a79e2483f22153736b5404a7a7c504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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 <boot_device.h>
#include <cbfs.h>
#include <console/console.h>

const struct region_device *boot_device_ro(void)
{
	return NULL;
}

int init_default_cbfs_media(struct cbfs_media *media)
{
	printk(BIOS_ERR, "Oh my! I don't know how to access CBFS yet.");
	return -1;
}