aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/i82830/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/northbridge/intel/i82830/Kconfig')
-rw-r--r--src/northbridge/intel/i82830/Kconfig30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/northbridge/intel/i82830/Kconfig b/src/northbridge/intel/i82830/Kconfig
deleted file mode 100644
index d0bee8f9eb..0000000000
--- a/src/northbridge/intel/i82830/Kconfig
+++ /dev/null
@@ -1,30 +0,0 @@
-config NORTHBRIDGE_INTEL_I82830
- bool
- select NO_MMCONF_SUPPORT
- select HAVE_DEBUG_RAM_SETUP
- select LATE_CBMEM_INIT
- select UDELAY_IO
-
-choice
- prompt "Onboard graphics"
- default I830_VIDEO_MB_8MB
- depends on NORTHBRIDGE_INTEL_I82830
-
-config I830_VIDEO_MB_OFF
- bool "Disabled, 0KB"
-config I830_VIDEO_MB_512KB
- bool "Enabled, 512KB"
-config I830_VIDEO_MB_1MB
- bool "Enabled, 1MB"
-config I830_VIDEO_MB_8MB
- bool "Enabled, 8MB"
-
-endchoice
-
-config VIDEO_MB
- int
- default 0 if I830_VIDEO_MB_OFF
- default 512 if I830_VIDEO_MB_512KB
- default 1 if I830_VIDEO_MB_1MB
- default 8 if I830_VIDEO_MB_8MB
- depends on NORTHBRIDGE_INTEL_I82830