Newer
Older
barebox / include / boot.h
@Sascha Hauer Sascha Hauer on 15 Jul 2007 268 bytes use memmap() to save one memcpy call in bootm
#ifndef __BOOT_H
#define __BOOT_H

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

#endif /* __BOOT_H */