Fixes printk function so it can print very large strings. This patch does allow me to see the full bootscript in the serial console.
Signed-off-by: John Arbuckle programmingkidx@gmail.com
Index: arch/ppc/qemu/qemu.c =================================================================== --- arch/ppc/qemu/qemu.c (revision 1335) +++ arch/ppc/qemu/qemu.c (working copy) @@ -56,7 +56,7 @@ int printk( const char *fmt, ... ) { - char *p, buf[1024]; + char *p, buf[10024]; va_list args; int i;