summaryrefslogtreecommitdiffstats
path: root/include/boot.h
blob: 6fc7b05b60fda7cc15eb9de31909983669a4d154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __BOOT_H
#define __BOOT_H

#include <image.h>

#ifdef CONFIG_OF_FLAT_TREE
extern int do_bootm_linux(struct image_handle *os, struct image_handle *initrd,
	const char *oftree);
#else
extern int do_bootm_linux(struct image_handle *os, struct image_handle *initrd);
#endif

#endif /* __BOOT_H */