Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 19061 | Differences between
and this patch

Collapse All | Expand All

(-)linux-2.4.20-gentoo-r5/drivers/video/Config.in (-1 / +4 lines)
Lines 101-107 Link Here
101
      tristate '  TGA framebuffer support' CONFIG_FB_TGA
101
      tristate '  TGA framebuffer support' CONFIG_FB_TGA
102
   fi
102
   fi
103
   if [ "$CONFIG_X86" = "y" ]; then
103
   if [ "$CONFIG_X86" = "y" ]; then
104
      bool '  VESA VGA graphics console' CONFIG_FB_VESA
104
      tristate '  VESA VGA graphics console' CONFIG_FB_VESA
105
      if [ "$CONFIG_FB_VESA" != "n" ]; then
106
         int '    remap x times the graphics memory needed' CONFIG_FB_VESA_VIDSIZE 1
107
      fi
105
      tristate '  VGA 16-color graphics console' CONFIG_FB_VGA16
108
      tristate '  VGA 16-color graphics console' CONFIG_FB_VGA16
106
      tristate '  Hercules mono graphics console (EXPERIMENTAL)' CONFIG_FB_HGA
109
      tristate '  Hercules mono graphics console (EXPERIMENTAL)' CONFIG_FB_HGA
107
      define_bool CONFIG_VIDEO_SELECT y
110
      define_bool CONFIG_VIDEO_SELECT y
(-)linux-2.4.20-gentoo-r5/drivers/video/vesafb.c (-1 / +1 lines)
Lines 520-526 Link Here
520
	video_width         = screen_info.lfb_width;
520
	video_width         = screen_info.lfb_width;
521
	video_height        = screen_info.lfb_height;
521
	video_height        = screen_info.lfb_height;
522
	video_linelength    = screen_info.lfb_linelength;
522
	video_linelength    = screen_info.lfb_linelength;
523
	video_size          = screen_info.lfb_width * screen_info.lfb_height * video_bpp / 8;
523
	video_size          = screen_info.lfb_width * screen_info.lfb_height * video_bpp / 8 * CONFIG_FB_VESA_VIDSIZE;
524
	video_visual = (video_bpp == 8) ?
524
	video_visual = (video_bpp == 8) ?
525
		FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
525
		FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
526
526

Return to bug 19061