Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 588129 Details for
Bug 827003
grub2 selects wrong video refresh rate for nVidia GeForce 6150SE nForce 430
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch to get additional info
tst.diff (text/plain), 1.48 KB, created by
Vladimir Serbinenko
on 2012-05-31 14:56:54 UTC
(
hide
)
Description:
Patch to get additional info
Filename:
MIME Type:
Creator:
Vladimir Serbinenko
Created:
2012-05-31 14:56:54 UTC
Size:
1.48 KB
patch
obsolete
>=== modified file 'grub-core/video/i386/pc/vbe.c' >--- grub-core/video/i386/pc/vbe.c 2012-02-27 21:31:51 +0000 >+++ grub-core/video/i386/pc/vbe.c 2012-05-31 14:55:01 +0000 >@@ -591,8 +591,12 @@ > && grub_video_edid_checksum (&edid_info) == GRUB_ERR_NONE > && grub_video_edid_preferred_mode (&edid_info, width, height) > == GRUB_ERR_NONE) >- return GRUB_ERR_NONE; >+ { >+ grub_printf ("EDID success: %d x %d\n", *width, *height); >+ return GRUB_ERR_NONE; >+ } > >+ grub_printf ("EDID failure\n"); > grub_errno = GRUB_ERR_NONE; > } > >@@ -601,9 +605,11 @@ > { > *width = flat_panel_info->horizontal_size; > *height = flat_panel_info->vertical_size; >+ grub_printf ("FP success: %d x %d\n", *width, *height); > return GRUB_ERR_NONE; > } > >+ grub_printf ("FP failure\n"); > return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "cannot get preferred mode"); > } > >@@ -1186,6 +1192,9 @@ > static void > grub_video_vbe_print_adapter_specific_info (void) > { >+ unsigned int w, h; >+ grub_err_t e; >+ > grub_printf_ (N_(" VBE info: version: %d.%d OEM software rev: %d.%d\n"), > controller_info.version >> 8, > controller_info.version & 0xFF, >@@ -1195,6 +1204,8 @@ > /* The total_memory field is in 64 KiB units. */ > grub_printf_ (N_(" total memory: %d KiB\n"), > (controller_info.total_memory << 16) / 1024); >+ e = grub_vbe_get_preferred_mode (&w, &h); >+ grub_printf ("e=%d, w=%d, h=%d\n", e, w, h); > } > > static struct grub_video_adapter grub_video_vbe_adapter = >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 827003
:
588057
|
588058
|
588096
|
588129
|
588149
|
588166
|
588179
|
588180