summaryrefslogtreecommitdiffstats
path: root/pbl/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'pbl/misc.c')
-rw-r--r--pbl/misc.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/pbl/misc.c b/pbl/misc.c
new file mode 100644
index 0000000000..47e9ceabe3
--- /dev/null
+++ b/pbl/misc.c
@@ -0,0 +1,14 @@
+#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)
+{
+}