drop three unneeded config variables:
[coreboot.git] / src / northbridge / intel / i82830 / Kconfig
1 config NORTHBRIDGE_INTEL_I82830
2         bool
3         select HAVE_DEBUG_RAM_SETUP
4
5 choice
6         prompt "Onboard graphics"
7         default I830_VIDEO_MB_8MB
8         depends on NORTHBRIDGE_INTEL_I82830
9
10 config I830_VIDEO_MB_OFF
11         bool "Disabled, 0KB"
12 config I830_VIDEO_MB_512KB
13         bool "Enabled, 512KB"
14 config I830_VIDEO_MB_1MB
15         bool "Enabled, 1MB"
16 config I830_VIDEO_MB_8MB
17         bool "Enabled, 8MB"
18
19 endchoice
20
21 config VIDEO_MB
22         int
23         default 0   if I830_VIDEO_MB_OFF
24         default 512 if I830_VIDEO_MB_512KB
25         default 1   if I830_VIDEO_MB_1MB
26         default 8   if I830_VIDEO_MB_8MB
27         depends on NORTHBRIDGE_INTEL_I82830
28