diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-09 21:50:45 +0100 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2016-02-09 22:35:09 +0100 |
commit | b2eea819928090724eb54feee08e252522ac2369 (patch) | |
tree | 70f2e7159f75de85286700b43f8a57ccc276f0d4 /src/northbridge/intel | |
parent | f80331f261d338ce05c5a3ab74a7d4a0d6ba678d (diff) | |
download | coreboot-b2eea819928090724eb54feee08e252522ac2369.tar.xz |
sandybridge: Set all native gfx-related options in northbridge code.
In the same time remove few native gfx options which were improperly set
and only added dead code to the binary.
Change-Id: I4ed3fec03a1655ae0a779c3aa3845de273cb12e1
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: https://review.coreboot.org/13649
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/northbridge/intel')
-rw-r--r-- | src/northbridge/intel/sandybridge/Kconfig | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/northbridge/intel/sandybridge/Kconfig b/src/northbridge/intel/sandybridge/Kconfig index 3e517b1f0a..347e3fa966 100644 --- a/src/northbridge/intel/sandybridge/Kconfig +++ b/src/northbridge/intel/sandybridge/Kconfig @@ -54,12 +54,19 @@ config CACHE_MRC_SIZE_KB default 512 config IVYBRIDGE_LVDS - bool - default n + def_bool n + select MAINBOARD_HAS_NATIVE_VGA_INIT + select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG config SANDYBRIDGE_LVDS - bool - default n + def_bool n + select MAINBOARD_HAS_NATIVE_VGA_INIT + select MAINBOARD_HAS_NATIVE_VGA_INIT_TEXTMODECFG + +# Select VGA & INTEL_EDID if MAINBOARD_DO_NATIVE_VGA_INIT is enabled. +config MAINBOARD_DO_NATIVE_VGA_INIT + select VGA + select INTEL_EDID config MRC_CACHE_SIZE hex |