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

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

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