diff --git a/arch/x86/cpu/coreboot/coreboot.c b/arch/x86/cpu/coreboot/coreboot.c
index f26280091774ae93e8b121db801e9bc987955737..5a4c3e5b1c7b6f086c5db85685827c453fcffc4c 100644
--- a/arch/x86/cpu/coreboot/coreboot.c
+++ b/arch/x86/cpu/coreboot/coreboot.c
@@ -28,6 +28,7 @@
 #include <netdev.h>
 #include <asm/msr.h>
 #include <asm/cache.h>
+#include <asm/io.h>
 #include <asm/arch-coreboot/tables.h>
 #include <asm/arch-coreboot/sysinfo.h>
 #include <asm/arch/timestamp.h>
@@ -68,6 +69,7 @@ int board_early_init_r(void)
 
 void show_boot_progress(int val)
 {
+	outb(val, 0x80);
 }
 
 
diff --git a/include/configs/coreboot.h b/include/configs/coreboot.h
index e45ecad7b46f93df052d6e920838ba1d3708cc29..94b6917632b59c0445db7937974f8f306b0a0ac9 100644
--- a/include/configs/coreboot.h
+++ b/include/configs/coreboot.h
@@ -35,7 +35,7 @@
  * (easy to change)
  */
 #define CONFIG_SYS_COREBOOT
-#undef CONFIG_SHOW_BOOT_PROGRESS
+#define CONFIG_SHOW_BOOT_PROGRESS
 #define CONFIG_LAST_STAGE_INIT
 #define CONFIG_X86_NO_RESET_VECTOR
 #define CONFIG_SYS_VSNPRINTF