summaryrefslogtreecommitdiff
path: root/include/kexec-uImage.h
blob: e8a4b69342b03bd7305eb977f30569f0e5875501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __KEXEC_UIMAGE_H__
#define __KEXEC_UIMAGE_H__

struct Image_info {
	const char *buf;
	off_t len;
	unsigned int base;
	unsigned int ep;
};

int uImage_probe(const char *buf, off_t len, unsigned int arch);
int uImage_load(const char *buf, off_t len, struct Image_info *info);
#endif