[coreboot-gerrit] New patch to review for coreboot: realmode/x86: Export vbe_mode_info_valid also in text mode.

Vladimir Serbinenko (phcoder@gmail.com) gerrit at coreboot.org
Sat Oct 10 13:52:35 CEST 2015


Vladimir Serbinenko (phcoder at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11848

-gerrit

commit 5b48af34bee73f05dc9b2de43ccdad52eb4c48c1
Author: Vladimir Serbinenko <phcoder at gmail.com>
Date:   Sat Oct 10 13:50:30 2015 +0200

    realmode/x86: Export vbe_mode_info_valid also in text mode.
    
    Fixes linking error. Specifies that we're in text mode.
    
    Change-Id: I7ad258961039c19e1491e2b3832b003671d8a5c7
    Signed-off-by: Vladimir Serbinenko <phcoder at gmail.com>
---
 3rdparty/blobs                  |  2 +-
 src/device/oprom/realmode/x86.c | 12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/3rdparty/blobs b/3rdparty/blobs
index 230923c..832bc6f 160000
--- a/3rdparty/blobs
+++ b/3rdparty/blobs
@@ -1 +1 @@
-Subproject commit 230923c2b028f8048b0023754d1c73f4760f4b8d
+Subproject commit 832bc6f1f8ffafc5ff397fd95616fdae988f224f
diff --git a/src/device/oprom/realmode/x86.c b/src/device/oprom/realmode/x86.c
index 796c9fe..b8f54f3 100644
--- a/src/device/oprom/realmode/x86.c
+++ b/src/device/oprom/realmode/x86.c
@@ -316,6 +316,18 @@ void fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
 	framebuffer->reserved_mask_pos = mode_info.vesa.reserved_mask_pos;
 	framebuffer->reserved_mask_size = mode_info.vesa.reserved_mask_size;
 }
+
+#else
+
+int vbe_mode_info_valid(void)
+{
+	return 0;
+}
+
+void fill_lb_framebuffer(struct lb_framebuffer *framebuffer)
+{
+}
+
 #endif
 
 void run_bios(struct device *dev, unsigned long addr)



More information about the coreboot-gerrit mailing list