summaryrefslogtreecommitdiffstats
path: root/include/bootstrap.h
blob: 28852c0cb618e483d05d0ab72882174aa94ae1b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
 *
 * Under GPLv2
 */

#ifndef __BOOSTRAP_H__
#define __BOOSTRAP_H__

#include <common.h>

#define bootstrap_err(fmt, arg...) printf(fmt, ##arg)

void bootstrap_boot(int (*func)(void), bool barebox);

#ifdef CONFIG_BOOTSTRAP_DEVFS
void* bootstrap_read_devfs(char *devname, bool use_bb, int offset,
			   int default_size, int max_size);
#else
static inline void* bootstrap_read_devfs(char *devname, bool use_bb, int offset,
			   int default_size, int max_size)
{
	return NULL;
}
#endif

#ifdef CONFIG_BOOTSTRAP_DISK
void* bootstrap_read_disk(char *devname, char *fstype);
#else
static inline void* bootstrap_read_disk(char *devname, char *fstype)
{
	return NULL;
}
#endif

#endif /* __BOOSTRAP_H__ */