diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-05-24 00:26:26 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-05-31 03:41:41 +0000 |
commit | 4979ffc5cb267c7b0a5ad84c8bb9729e6b5613b1 (patch) | |
tree | c675c0b95a558ece1233c19d69d40f7441cfa500 /src/southbridge/via/k8t890/Kconfig | |
parent | 1740230ace3aeede3a7ee5cadd1e17744cda07b3 (diff) |
Remove southbridges after K8 board removals
Change-Id: Ib6935c026e2302b037fc82be64163f10bf775751
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/26672
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/southbridge/via/k8t890/Kconfig')
-rw-r--r-- | src/southbridge/via/k8t890/Kconfig | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/southbridge/via/k8t890/Kconfig b/src/southbridge/via/k8t890/Kconfig deleted file mode 100644 index f6e51dccd1..0000000000 --- a/src/southbridge/via/k8t890/Kconfig +++ /dev/null @@ -1,54 +0,0 @@ - -config SOUTHBRIDGE_VIA_K8T890 - bool - -if SOUTHBRIDGE_VIA_K8T890 - -config SOUTHBRIDGE_VIA_SUBTYPE_K8M800 # not tested - def_bool n -config SOUTHBRIDGE_VIA_SUBTYPE_K8T800_OLD # not tested, lspci lists B188 and 3188 - def_bool n -config SOUTHBRIDGE_VIA_SUBTYPE_K8T800 # lspci lists 0282, 1282, 2282, 3282, and 7282 - def_bool n -config SOUTHBRIDGE_VIA_SUBTYPE_K8T800PRO # lspci lists 0282, 1282, 2282, 3282, and 7282 - def_bool n -config SOUTHBRIDGE_VIA_SUBTYPE_K8M890 - def_bool n -config SOUTHBRIDGE_VIA_SUBTYPE_K8T890 - def_bool n - -config SOUTHBRIDGE_VIA_K8M890_VGA_EN - bool "Enable onboard K8M890 graphics" - default y - depends on SOUTHBRIDGE_VIA_SUBTYPE_K8M890 - select VGA - select GFXUMA - -choice - prompt "Framebuffer size" - default K8M890_VIDEO_MB_32MB - depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN - -config K8M890_VIDEO_MB_32MB - bool "32MB" -config K8M890_VIDEO_MB_64MB - bool "64MB" -config K8M890_VIDEO_MB_128MB - bool "128MB" -config K8M890_VIDEO_MB_256MB - bool "256MB" -config K8M890_VIDEO_MB_CMOS - bool "Use CMOS option" - -endchoice - -config VIDEO_MB - int - default 32 if K8M890_VIDEO_MB_32MB - default 64 if K8M890_VIDEO_MB_64MB - default 128 if K8M890_VIDEO_MB_128MB - default 256 if K8M890_VIDEO_MB_256MB - default -1 if K8M890_VIDEO_MB_CMOS - depends on SOUTHBRIDGE_VIA_K8M890_VGA_EN - -endif # SOUTHBRIDGE_K8T890 |