summaryrefslogtreecommitdiffstats
path: root/include/boot.h
blob: b67e0348014b0433b205ad936707cedd545f0643 (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
#ifndef __BOOT_H
#define __BOOT_H

#include <image.h>
#include <linux/list.h>

struct image_data {
	struct image_handle *os;
	struct image_handle *initrd;
	const char *oftree;
	int verify;
	unsigned long initrd_address;
	unsigned long initrd_size;
};

struct image_handler {
	struct list_head list;

	int image_type;
	int (*bootm)(struct image_data *data);
};

int register_image_handler(struct image_handler *handle);

#endif /* __BOOT_H */