um: add earlyprintk support
[pandora-kernel.git] / arch / um / os-Linux / util.c
index 42827ca..5803b18 100644 (file)
@@ -139,3 +139,8 @@ void os_dump_core(void)
 
        uml_abort();
 }
+
+void um_early_printk(const char *s, unsigned int n)
+{
+       printf("%.*s", n, s);
+}