1config NORTHBRIDGE_INTEL_I82830 2 bool 3 select HAVE_DEBUG_RAM_SETUP 4 5choice 6 prompt "Onboard graphics" 7 default I830_VIDEO_MB_8MB 8 depends on NORTHBRIDGE_INTEL_I82830 9 10config I830_VIDEO_MB_OFF 11 bool "Disabled, 0KB" 12config I830_VIDEO_MB_512KB 13 bool "Enabled, 512KB" 14config I830_VIDEO_MB_1MB 15 bool "Enabled, 1MB" 16config I830_VIDEO_MB_8MB 17 bool "Enabled, 8MB" 18 19endchoice 20 21config 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 29

