Newer
Older
barebox / pbl / misc.c
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 3 Aug 2012 204 bytes Add pre-bootloader (pbl) image support
#include <common.h>
#include <init.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/ctype.h>

void __noreturn panic(const char *fmt, ...)
{
	while(1);
}

void start_barebox(void)
{
}