Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5957
-gerrit
commit 50ee83888b05bb331fd6100a688fec7a2504721d
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Jun 7 21:50:21 2014 +0200
[NOTFORMERGE] device/Kconfig: Select native graphics init by default
Just for build testing the native graphics patches.
Change-Id: I47ed328ce8ce3516ad3997978a01d2359d9b1ca8
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Signed-off-by: Francis Rowe <info(a)gluglug.org.uk>
---
src/device/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 58dcc1b..3d47602 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -32,7 +32,7 @@ config MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
config MAINBOARD_DO_NATIVE_VGA_INIT
bool "Use native graphics initialization"
depends on MAINBOARD_HAS_NATIVE_VGA_INIT
- default n
+ default y
help
Some mainboards, such as the Google Link, allow initializing the display
without the need of a binary only VGA OPROM. Enabling this option may be
Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6985
-gerrit
commit f11182edfa302494c957ad5e01d13bb949c9b8c0
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Sep 27 10:02:15 2014 +0200
packardbell/ms2290: Fix build with native graphics init
Fix up commit a2a906e4 (Consolidate intel vga int15 hooks) [1]
breaking the build of Packard Bell EasyNote LM85 (MS2290) with native
graphics initialization enabled.
src/mainboard/packardbell/ms2290/mainboard.c: In function 'mainboard_enable':
src/mainboard/packardbell/ms2290/mainboard.c:127:2: error: implicit declaration of function 'install_intel_vga_int15_handler' [-Werror=implicit-function-declaration]
src/mainboard/packardbell/ms2290/mainboard.c:127:34: error: 'GMA_INT15_ACTIVE_LFP_INT_LVDS' undeclared (first use in this function)
src/mainboard/packardbell/ms2290/mainboard.c:127:34: note: each undeclared identifier is reported only once for each function it appears in
src/mainboard/packardbell/ms2290/mainboard.c:127:65: error: 'GMA_INT15_PANEL_FIT_DEFAULT' undeclared (first use in this function)
src/mainboard/packardbell/ms2290/mainboard.c:127:94: error: 'GMA_INT15_BOOT_DISPLAY_LFP' undeclared (first use in this function)
Include the header file `drivers/intel/gma/int15.h` unconditionally,
so that the prototype of `install_intel_vga_int15_handler()` is always
to be found.
[1] http://review.coreboot.org/6820
Change-Id: Ie64f9510f49fe9d67b14ce27d7e789d6007ca0a6
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
---
src/mainboard/packardbell/ms2290/mainboard.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/packardbell/ms2290/mainboard.c b/src/mainboard/packardbell/ms2290/mainboard.c
index c14e9b7..9e64f5c 100644
--- a/src/mainboard/packardbell/ms2290/mainboard.c
+++ b/src/mainboard/packardbell/ms2290/mainboard.c
@@ -35,8 +35,8 @@
#include <pc80/mc146818rtc.h>
#include <arch/x86/include/arch/acpigen.h>
-#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
#include <drivers/intel/gma/int15.h>
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
#include <arch/interrupt.h>
#endif
#include <pc80/keyboard.h>
Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6985
-gerrit
commit 757984a9e5e27c1ef1a252f790ee28cab34378a5
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Sep 27 10:02:15 2014 +0200
packardbell/ms2290: Fix build with native graphics init
Fix up commit a2a906e4 (Consolidate intel vga int15 hooks) [1] breaking
the build of Packard Bell EasyNote LM85 (MS2290) with native graphics
initialization enabled.
src/mainboard/packardbell/ms2290/mainboard.c: In function 'mainboard_enable':
src/mainboard/packardbell/ms2290/mainboard.c:127:2: error: implicit declaration of function 'install_intel_vga_int15_handler' [-Werror=implicit-function-declaration]
src/mainboard/packardbell/ms2290/mainboard.c:127:34: error: 'GMA_INT15_ACTIVE_LFP_INT_LVDS' undeclared (first use in this function)
src/mainboard/packardbell/ms2290/mainboard.c:127:34: note: each undeclared identifier is reported only once for each function it appears in
src/mainboard/packardbell/ms2290/mainboard.c:127:65: error: 'GMA_INT15_PANEL_FIT_DEFAULT' undeclared (first use in this function)
src/mainboard/packardbell/ms2290/mainboard.c:127:94: error: 'GMA_INT15_BOOT_DISPLAY_LFP' undeclared (first use in this function)
Include the header file `drivers/intel/gma/int15.h` unconditionally, so
that the prototype of `install_intel_vga_int15_handler()` is always to
be found.
[1] http://review.coreboot.org/6820
Change-Id: Ie64f9510f49fe9d67b14ce27d7e789d6007ca0a6
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
---
src/mainboard/packardbell/ms2290/mainboard.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/packardbell/ms2290/mainboard.c b/src/mainboard/packardbell/ms2290/mainboard.c
index c14e9b7..9e64f5c 100644
--- a/src/mainboard/packardbell/ms2290/mainboard.c
+++ b/src/mainboard/packardbell/ms2290/mainboard.c
@@ -35,8 +35,8 @@
#include <pc80/mc146818rtc.h>
#include <arch/x86/include/arch/acpigen.h>
-#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
#include <drivers/intel/gma/int15.h>
+#if CONFIG_PCI_OPTION_ROM_RUN_YABEL || CONFIG_PCI_OPTION_ROM_RUN_REALMODE
#include <arch/interrupt.h>
#endif
#include <pc80/keyboard.h>
Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5957
-gerrit
commit 7acec9e606a650f4be4c11d2faea5c6d74005c1f
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Jun 7 21:50:21 2014 +0200
[NOTFORMERGE] device/Kconfig: Select native graphics init by default
Just for build testing the native graphics patches.
Change-Id: I47ed328ce8ce3516ad3997978a01d2359d9b1ca8
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Signed-off-by: Francis Rowe <info(a)gluglug.org.uk>
---
src/device/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 58dcc1b..3d47602 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -32,7 +32,7 @@ config MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
config MAINBOARD_DO_NATIVE_VGA_INIT
bool "Use native graphics initialization"
depends on MAINBOARD_HAS_NATIVE_VGA_INIT
- default n
+ default y
help
Some mainboards, such as the Google Link, allow initializing the display
without the need of a binary only VGA OPROM. Enabling this option may be
Paul Menzel (paulepanter(a)users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5957
-gerrit
commit 1de7284433985556cc163c033bba607ec6174498
Author: Paul Menzel <paulepanter(a)users.sourceforge.net>
Date: Sat Jun 7 21:50:21 2014 +0200
[NOTFORMERGE] device/Kconfig: Select native graphics init by default
Just for build testing the native graphics patches.
Change-Id: I47ed328ce8ce3516ad3997978a01d2359d9b1ca8
Signed-off-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Signed-off-by: Francis Rowe <info(a)gluglug.org.uk>
---
src/device/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/device/Kconfig b/src/device/Kconfig
index 58dcc1b..3d47602 100644
--- a/src/device/Kconfig
+++ b/src/device/Kconfig
@@ -32,7 +32,7 @@ config MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG
config MAINBOARD_DO_NATIVE_VGA_INIT
bool "Use native graphics initialization"
depends on MAINBOARD_HAS_NATIVE_VGA_INIT
- default n
+ default y
help
Some mainboards, such as the Google Link, allow initializing the display
without the need of a binary only VGA OPROM. Enabling this option may be