Newer
Older
barebox / include / boot.h
@Robert Schwebel Robert Schwebel on 28 Nov 2007 302 bytes cleanup do_bootm_linux()
#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 */