Index: boot/arch/arm32/src/main.c
===================================================================
--- boot/arch/arm32/src/main.c	(revision c124dce396901c501e16c20ef82e82a814244b30)
+++ boot/arch/arm32/src/main.c	(revision 0e63d34c5ceb98339adc1c1befc96f4b8afe9b1f)
@@ -153,5 +153,4 @@
 	printf(".\n");
 	
-	void *kernel_end = (void *) PA2KA(BOOT_OFFSET + components[0].inflated);
 	printf("Booting the kernel...\n");
 	jump_to_kernel((void *) PA2KA(BOOT_OFFSET), &bootinfo);
Index: uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c
===================================================================
--- uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c	(revision c124dce396901c501e16c20ef82e82a814244b30)
+++ uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c	(revision 0e63d34c5ceb98339adc1c1befc96f4b8afe9b1f)
@@ -42,4 +42,17 @@
 #include "amdm37x_dispc.h"
 
+#ifndef CONFIG_BFB_BPP
+#define CONFIG_BFB_BPP 24
+#endif
+
+#ifndef CONFIG_BFB_WIDTH
+#define CONFIG_BFB_WIDTH 1024
+#endif
+
+#ifndef CONFIG_BFB_HEIGHT
+#define CONFIG_BFB_HEIGHT 768
+#endif
+
+
 static int change_mode(visualizer_t *vis, vslmode_t mode);
 static int handle_damage(visualizer_t *vs,
@@ -109,6 +122,6 @@
 	instance->size = 0;
 
-	visual_t visual = VISUAL_UNKNOWN;
-
+	/* Default is 24bpp, use config option if available */
+	visual_t visual = VISUAL_BGR_8_8_8;
 	switch (CONFIG_BFB_BPP)	{
 	case 8: visual = VISUAL_INDIRECT_8; break;
