DaemonForums  

Go Back   DaemonForums > NetBSD > NetBSD Installation and Upgrading

NetBSD Installation and Upgrading Have trouble getting NetBSD on your toaster?

Reply
 
Thread Tools Display Modes
  #1   (View Single Post)  
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default X11 and Haswell Intel 4600

I recently made the jump from Debian to NetBSD. When I installed NetBSD, I opted for the Installation without X11. Afterwards I installed the modular-xorg-server.

I clearly have issues with my graphics driver. I do not think that it is yet supported, but I am able to get things working with the vesa driver. The problem I am experiencing is that, whenever I run say

X -config /root/xorg.conf.new
or
startx

even if the display is ok, I can not exit this interface without having to perform a hard reset. Even when I am in the tvm environment, if I type 'reboot' or I exit, my screen dies on me and I am forced to reset. How do I even begin to try and figure out what is wrong?

It should be noted that I also have 'debian wheezy' installed on another partition and it has the same problems, that is, when I log out of gnome or reboot or shutdown, I lose display and I am eventually forced to reset manually.

The chip is
Haswell i5-4430 with intel HD 4600 graphics (onboard)

I am happy to wait for the proper intel driver (which from my understanding may take some time) and use the vesa, but this loss of display/stuck place I go to whenever I reset/logout or shutdown sucks a bit to be honest.

Has anyone else had such issues and if so, where lies the solution? I am not too keen on a graphics card but if thats the only solution ...

Please help.
Reply With Quote
  #2   (View Single Post)  
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Hello, and welcome!

/var/log/Xorg.0.log may show errors with X, with the VESA driver, or with the display.

When the platform locks up, I wonder if the underlying OS is still functional ... except for the display. I assume attempting to switch virtual consoles with Ctrl-Alt-Function keys doesn't work, nor Ctrl-Alt-Backspace to terminate X. Can you ping the platform from another workstation on the network? If so, can you connect to the failed system with an ssh(1) session? This last assumes you have sshd(8) running on the workstation in question, of course.
Reply With Quote
  #3   (View Single Post)  
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

Hello and thank you for the warm welcome.

I wish I had thought of the ping idea, and even more so, I wish I were able to ping the machine but no response when it is in that state. The fans are still running though.

I`ll post a log of Xorg once I am able to connect to the web with this machine. I do not get any (EE) errors. I did, once, see an (EE) error that pointed towards something along the lines of wscons or no default output for wscons. I can however confirm that xrandr is not too happy either since I get a "failed to get size of gamma for output failed" message when I run xrandr. I am not sure if its related.
Reply With Quote
  #4   (View Single Post)  
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

As there is no ping response, I'm going to hazard a guess that you have a hung or a crashed OS. I'm going to assume, for the moment, that the display isn't showing you that the OS crashed and that the kernel has entered the debugger ddb(4). While you can't see if this is the case, you may be able to type ddb commands from the keyboard. If not, perhaps the kernel is hung but may still respond to keystrokes -- if so, you could force entry into ddb with Ctrl-Alt-ESC. From there you may be able to reboot 0x100 to obtain a core dump and use it to perhaps find out what happened. All blindly, of course, as you can't see your console.

You could set up a serial console, if you have appropriate hardware.

I'm sorry my advice is so generic, but based on the little I know so far this is my best guess for you to find out more about the problem. When you're able to, I recommend posting at least a dmesg and the X log.
Reply With Quote
  #5   (View Single Post)  
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

What you are saying makes sense but I have no clue what and how to perform what you just said. Is there perhaps some sequence of stuff I can type or a log that might give me(you) a clue?

I did set a key command to control alt break in tvm, and it worked once ... I could see some stuff on the screen about IO fatal errors. I have no idea how to gain more information on that. I have tried to replicate the event but have not seen a screen again.

The fact that I am having the exact same issue with wheezy tells me that either I have a hardware issue or xorg hates my setup. I hope the latter.
Reply With Quote
  #6   (View Single Post)  
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

ok .. I replicated it. I have managed to control-alt-backspace.

I see lots of fatal IO errors and some other stuff

"Segmentation fault at address 0x7f7febb335b2"
"Fatal server error: Caught signal 11 (Segmentation fault). Server aborting"

I am too scared to touch anything now. How do I go about getting a log of some sorts?

Last edited by tavrion; 5th July 2013 at 05:01 PM. Reason: spelling of course
Reply With Quote
  #7   (View Single Post)  
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Nothing to be scared about.

If you don't have a browser or network file transfer capabilities on that system, you can mount a FAT filesystem from any USB stick and copy the file to it.

Example: when you insert a USB stick, you see kernel messages on the console telling you that mass storage drive "sd0" has been inserted. Also, I assume this is a typical stick, it has an MBR sector and a single FAT32 filesystem on it. NetBSD will assign it a pseudo disklabel partition "i". If its a different drive number, such as sd1 or sd2, change appropriately:

# mount -t msdos /dev/sd0i /mnt
# dmesg > /mnt/dmesg
# cp /var/log/Xorg.0.log /mnt
# umount /mnt

Remove stick, insert in the computer you are using to communicate, and copy/paste the contents of these files here. Wrap the pasted content in [code] and [/code] tags for readability.

Last edited by jggimi; 5th July 2013 at 05:17 PM. Reason: typo in my example dmesg and example cp command.
Reply With Quote
  #8   (View Single Post)  
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

I saw a typo after posting. I hope I didn't cause you any grief.
Reply With Quote
  #9   (View Single Post)  
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default progress

Ok, a little more experimenting yielded more information.

When I run startx, the resolution is much higher than it should be. I can assign the key to allow control_alt_backspace which allows me to force quit without crashing but if I keep my resolution as 1920x1200 (which is what it logs in as) or 1920x1080 (what it is suppose to be) it crashes. So, if I set the resolution to 1024x768 and force quit ... all is well.

Now what?
Reply With Quote
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Quote:
Originally Posted by tavrion View Post

Now what?
Logs.
Reply With Quote
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

Ok, here goes. I had to take a crash course in disklabels ... my i turned out to be an e. Anyway!


Code:
[    26.425] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[    26.425] X Protocol Version 11, Revision 0
[    26.425] Build Operating System: NetBSD-6.1-x86_64 The NetBSD Foundation
[    26.425] Current Operating System: NetBSD NetBSD.home.gateway 6.1 NetBSD 6.1 (GENERIC) amd64
[    26.425] Build Date: 04 July 2013  11:12:51PM
[    26.425]  
[    26.425] Current version of pixman: 0.30.0
[    26.425] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    26.425] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    26.425] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul  5 17:28:28 2013
[    26.427] (==) Using config file: "/etc/X11/xorg.conf"
[    26.427] (==) ServerLayout "X.org Configured"
[    26.427] (**) |-->Screen "Screen0" (0)
[    26.427] (**) |   |-->Monitor "Monitor0"
[    26.428] (**) |   |-->Device "Card0"
[    26.428] (**) |-->Input Device "Mouse0"
[    26.428] (**) |-->Input Device "Keyboard0"
[    26.428] (==) Not automatically adding devices
[    26.428] (==) Not automatically enabling devices
[    26.430] (WW) The directory "/usr/pkg/share/fonts/X11/OTF" does not exist.
[    26.430] 	Entry deleted from font path.
[    26.432] (WW) `fonts.dir' not found (or not valid) in "/usr/pkg/share/fonts/X11/cyrillic".
[    26.432] 	Entry deleted from font path.
[    26.432] 	(Run 'mkfontdir' on "/usr/pkg/share/fonts/X11/cyrillic").
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/misc" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/OTF" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/Type1" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/100dpi" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/75dpi" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/cyrillic" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/share/fonts/X11/OTF" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) `fonts.dir' not found (or not valid) in "/usr/pkg/share/fonts/X11/cyrillic".
[    26.432] 	Entry deleted from font path.
[    26.432] 	(Run 'mkfontdir' on "/usr/pkg/share/fonts/X11/cyrillic").
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/misc" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/OTF" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.432] (WW) The directory "/usr/pkg/lib/X11/fonts/Type1" does not exist.
[    26.432] 	Entry deleted from font path.
[    26.433] (WW) The directory "/usr/pkg/lib/X11/fonts/100dpi" does not exist.
[    26.433] 	Entry deleted from font path.
[    26.433] (WW) The directory "/usr/pkg/lib/X11/fonts/75dpi" does not exist.
[    26.433] 	Entry deleted from font path.
[    26.433] (WW) The directory "/usr/pkg/lib/X11/fonts/cyrillic" does not exist.
[    26.433] 	Entry deleted from font path.
[    26.433] (**) FontPath set to:
	/usr/pkg/share/fonts/X11/misc,
	/usr/pkg/share/fonts/X11/TTF,
	/usr/pkg/share/fonts/X11/Type1,
	/usr/pkg/share/fonts/X11/100dpi,
	/usr/pkg/share/fonts/X11/75dpi,
	/usr/pkg/lib/X11/fonts/TTF,
	/usr/pkg/share/fonts/X11/misc,
	/usr/pkg/share/fonts/X11/TTF,
	/usr/pkg/share/fonts/X11/Type1,
	/usr/pkg/share/fonts/X11/100dpi,
	/usr/pkg/share/fonts/X11/75dpi,
	/usr/pkg/lib/X11/fonts/TTF
[    26.433] (**) ModulePath set to "/usr/pkg/lib/xorg/modules"
[    26.433] (II) Loader magic: 0x7bbe40
[    26.433] (II) Module ABI versions:
[    26.433] 	X.Org ANSI C Emulation: 0.4
[    26.433] 	X.Org Video Driver: 12.1
[    26.433] 	X.Org XInput driver : 16.0
[    26.433] 	X.Org Server Extension : 6.0
[    26.437] (--) PCI:*(0:0:2:0) 8086:0412:1458:d000 rev 6, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x0000f000/64
[    26.437] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) "record" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
[    26.437] (II) LoadModule: "dbe"
[    26.437] (II) Loading /usr/pkg/lib/xorg/modules/extensions/libdbe.so
[    26.438] (II) Module dbe: vendor="X.Org Foundation"
[    26.438] 	compiled for 1.12.4, module version = 1.0.0
[    26.438] 	Module class: X.Org Server Extension
[    26.438] 	ABI class: X.Org Server Extension, version 6.0
[    26.438] (II) Loading extension DOUBLE-BUFFER
[    26.438] (II) LoadModule: "dri"
[    26.438] (II) Loading /usr/pkg/lib/xorg/modules/extensions/libdri.so
[    26.439] (II) Module dri: vendor="X.Org Foundation"
[    26.439] 	compiled for 1.12.4, module version = 1.0.0
[    26.439] 	ABI class: X.Org Server Extension, version 6.0
[    26.439] (II) Loading extension XFree86-DRI
[    26.439] (II) LoadModule: "dri2"
[    26.439] (II) Loading /usr/pkg/lib/xorg/modules/extensions/libdri2.so
[    26.440] (II) Module dri2: vendor="X.Org Foundation"
[    26.440] 	compiled for 1.12.4, module version = 1.2.0
[    26.440] 	ABI class: X.Org Server Extension, version 6.0
[    26.440] (II) Loading extension DRI2
[    26.440] (II) LoadModule: "extmod"
[    26.440] (II) Loading /usr/pkg/lib/xorg/modules/extensions/libextmod.so
[    26.441] (II) Module extmod: vendor="X.Org Foundation"
[    26.441] 	compiled for 1.12.4, module version = 1.0.0
[    26.441] 	Module class: X.Org Server Extension
[    26.441] 	ABI class: X.Org Server Extension, version 6.0
[    26.441] (II) Loading extension MIT-SCREEN-SAVER
[    26.441] (II) Loading extension XFree86-VidModeExtension
[    26.441] (II) Loading extension XFree86-DGA
[    26.441] (II) Loading extension DPMS
[    26.441] (II) Loading extension XVideo
[    26.442] (II) Loading extension XVideo-MotionCompensation
[    26.442] (II) Loading extension X-Resource
[    26.442] (II) LoadModule: "glx"
[    26.442] (II) Loading /usr/pkg/lib/xorg/modules/extensions/libglx.so
[    26.443] (II) Module glx: vendor="X.Org Foundation"
[    26.443] 	compiled for 1.12.4, module version = 1.0.0
[    26.443] 	ABI class: X.Org Server Extension, version 6.0
[    26.443] (==) AIGLX enabled
[    26.444] (II) Loading extension GLX
[    26.444] (II) LoadModule: "record"
[    26.444] (II) Loading /usr/pkg/lib/xorg/modules/extensions/librecord.so
[    26.444] (II) Module record: vendor="X.Org Foundation"
[    26.444] 	compiled for 1.12.4, module version = 1.13.0
[    26.444] 	Module class: X.Org Server Extension
[    26.444] 	ABI class: X.Org Server Extension, version 6.0
[    26.444] (II) Loading extension RECORD
[    26.444] (II) LoadModule: "vesa"
[    26.445] (II) Loading /usr/pkg/lib/xorg/modules/drivers/vesa_drv.so
[    26.446] (II) Module vesa: vendor="X.Org Foundation"
[    26.446] 	compiled for 1.12.4, module version = 2.3.2
[    26.446] 	Module class: X.Org Video Driver
[    26.446] 	ABI class: X.Org Video Driver, version 12.1
[    26.446] (II) LoadModule: "mouse"
[    26.446] (II) Loading /usr/pkg/lib/xorg/modules/input/mouse_drv.so
[    26.446] (II) Module mouse: vendor="X.Org Foundation"
[    26.446] 	compiled for 1.12.4, module version = 1.9.0
[    26.446] 	Module class: X.Org XInput Driver
[    26.446] 	ABI class: X.Org XInput driver, version 16.0
[    26.446] (II) LoadModule: "kbd"
[    26.446] (II) Loading /usr/pkg/lib/xorg/modules/input/kbd_drv.so
[    26.447] (II) Module kbd: vendor="X.Org Foundation"
[    26.447] 	compiled for 1.12.4, module version = 1.6.2
[    26.447] 	Module class: X.Org XInput Driver
[    26.447] 	ABI class: X.Org XInput driver, version 16.0
[    26.447] (II) VESA: driver for VESA chipsets: vesa
[    26.447] (--) Using wscons driver on /dev/ttyE4 in pcvt compatibility mode (version 3.32)
[    26.456] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    26.456] (II) Loading sub module "vbe"
[    26.456] (II) LoadModule: "vbe"
[    26.456] (II) Loading /usr/pkg/lib/xorg/modules/libvbe.so
[    26.456] (II) Module vbe: vendor="X.Org Foundation"
[    26.456] 	compiled for 1.12.4, module version = 1.1.0
[    26.456] 	ABI class: X.Org Video Driver, version 12.1
[    26.456] (II) Loading sub module "int10"
[    26.456] (II) LoadModule: "int10"
[    26.456] (II) Loading /usr/pkg/lib/xorg/modules/libint10.so
[    26.457] (II) Module int10: vendor="X.Org Foundation"
[    26.457] 	compiled for 1.12.4, module version = 1.0.0
[    26.457] 	ABI class: X.Org Video Driver, version 12.1
[    26.457] (II) VESA(0): initializing int10
[    26.458] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[    26.459] (II) VESA(0): VESA BIOS detected
[    26.459] (II) VESA(0): VESA VBE Version 3.0
[    26.459] (II) VESA(0): VESA VBE Total Mem: 65472 kB
[    26.459] (II) VESA(0): VESA VBE OEM: Intel(R) HSW Mobile/Desktop Graphics Chipset Accelerated VGA BIOS
[    26.459] (II) VESA(0): VESA VBE OEM Software Rev: 0.0
[    26.462] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[    26.462] (==) VESA(0): RGB weight 888
[    26.462] (==) VESA(0): Default visual is TrueColor
[    26.462] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[    26.462] (II) Loading sub module "ddc"
[    26.462] (II) LoadModule: "ddc"
[    26.462] (II) Module "ddc" already built-in
[    26.463] (II) VESA(0): VESA VBE DDC supported
[    26.463] (II) VESA(0): VESA VBE DDC Level 2
[    26.463] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[    26.475] (II) VESA(0): VESA VBE DDC read successfully
[    26.475] (II) VESA(0): Manufacturer: SAM  Model: 611  Serial#: 1497641527
[    26.475] (II) VESA(0): Year: 2010  Week: 43
[    26.475] (II) VESA(0): EDID Version: 1.3
[    26.475] (II) VESA(0): Analog Display Input,  Input Voltage Level: 0.700/0.300 V
[    26.475] (II) VESA(0): Sync:  Separate  Composite  SyncOnGreen
[    26.475] (II) VESA(0): Max Image Size [cm]: horiz.: 60  vert.: 34
[    26.475] (II) VESA(0): Gamma: 2.20
[    26.475] (II) VESA(0): DPMS capabilities: Off; RGB/Color Display
[    26.475] (II) VESA(0): First detailed timing is preferred mode
[    26.475] (II) VESA(0): redX: 0.647 redY: 0.334   greenX: 0.284 greenY: 0.607
[    26.475] (II) VESA(0): blueX: 0.151 blueY: 0.071   whiteX: 0.312 whiteY: 0.329
[    26.475] (II) VESA(0): Supported established timings:
[    26.475] (II) VESA(0): 640x480@60Hz
[    26.475] (II) VESA(0): 800x600@56Hz
[    26.475] (II) VESA(0): 800x600@60Hz
[    26.475] (II) VESA(0): 1024x768@60Hz
[    26.476] (II) VESA(0): Manufacturer's mask: 0
[    26.476] (II) VESA(0): Supported standard timings:
[    26.476] (II) VESA(0): #0: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    26.476] (II) VESA(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    26.476] (II) VESA(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    26.476] (II) VESA(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    26.476] (II) VESA(0): #4: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    26.476] (II) VESA(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    26.476] (II) VESA(0): Supported detailed timing:
[    26.476] (II) VESA(0): clock: 148.5 MHz   Image Size:  604 x 342 mm
[    26.476] (II) VESA(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    26.476] (II) VESA(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    26.476] (II) VESA(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H max: 81 kHz, PixClock max 175 MHz
[    26.476] (II) VESA(0): Monitor name: SyncMaster
[    26.476] (II) VESA(0): Serial No: HVZZA01193
[    26.476] (II) VESA(0): EDID (in hex):
[    26.476] (II) VESA(0): 	00ffffffffffff004c2d110637324459
[    26.476] (II) VESA(0): 	2b1401030e3c22782aeed1a555489b26
[    26.476] (II) VESA(0): 	1250542308008100814081809500a940
[    26.476] (II) VESA(0): 	b30001010101023a801871382d40582c
[    26.476] (II) VESA(0): 	45005c562100001e000000fd00383c1e
[    26.476] (II) VESA(0): 	5111000a202020202020000000fc0053
[    26.476] (II) VESA(0): 	796e634d61737465720a2020000000ff
[    26.476] (II) VESA(0): 	0048565a5a4130313139330a2020007c
[    26.476] (II) VESA(0): EDID vendor "SAM", prod id 1553
[    26.476] (II) VESA(0): Using hsync ranges from config file
[    26.476] (II) VESA(0): Using vrefresh ranges from config file
[    26.476] (II) VESA(0): Printing DDC gathered Modelines:
[    26.476] (II) VESA(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    26.476] (II) VESA(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    26.476] (II) VESA(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    26.476] (II) VESA(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    26.476] (II) VESA(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    26.476] (II) VESA(0): Modeline "1280x800"x0.0   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz e)
[    26.476] (II) VESA(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    26.476] (II) VESA(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    26.476] (II) VESA(0): Modeline "1440x900"x0.0  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    26.476] (II) VESA(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    26.476] (II) VESA(0): Modeline "1680x1050"x0.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    26.476] (II) VESA(0): Searching for matching VESA mode(s):
[    26.476] Mode: 13c (0x0)
[    26.476] 	ModeAttributes: 0x0
[    26.476] 	WinAAttributes: 0x0
[    26.476] 	WinBAttributes: 0x0
[    26.476] 	WinGranularity: 0
[    26.476] 	WinSize: 0
[    26.476] 	WinASegment: 0x0
[    26.476] 	WinBSegment: 0x0
[    26.476] 	WinFuncPtr: 0x0
[    26.476] 	BytesPerScanline: 0
[    26.476] 	XResolution: 0

#################### took some code out to allow this post ###################


[    26.477] 	LinBytesPerScanLine: 0
[    26.477] 	BnkNumberOfImagePages: 0
[    26.477] 	LinNumberOfImagePages: 0
[    26.477] 	LinRedMaskSize: 0
[    26.477] 	LinRedFieldPosition: 0
[    26.477] 	LinGreenMaskSize: 0
[    26.477] 	LinGreenFieldPosition: 0
[    26.477] 	LinBlueMaskSize: 0
[    26.477] 	LinBlueFieldPosition: 0
[    26.477] 	LinRsvdMaskSize: 0
[    26.477] 	LinRsvdFieldPosition: 0
[    26.477] 	MaxPixelClock: 0
[    26.477] Mode: 15c (0x0)
[    26.477] 	ModeAttributes: 0x0
[    26.477] 	WinAAttributes: 0x0
[    26.477] 	WinBAttributes: 0x0
[    26.477] 	WinGranularity: 0
[    26.477] 	WinSize: 0
[    26.477] 	WinASegment: 0x0
[    26.477] 	WinBSegment: 0x0
[    26.477] 	WinFuncPtr: 0x0
[    26.477] 	BytesPerScanline: 0
[    26.477] 	XResolution: 0
[    26.477] 	YResolution: 0
[    26.477] 	XCharSize: 0
[    26.477] 	YCharSize: 0
[    26.477] 	NumberOfPlanes: 0
[    26.477] 	BitsPerPixel: 0
[    26.477] 	NumberOfBanks: 0
[    26.477] 	MemoryModel: 0
[    26.477] 	BankSize: 0
[    26.477] 	NumberOfImages: 0
[    26.477] 	RedMaskSize: 0
[    26.477] 	RedFieldPosition: 0
[    26.477] 	GreenMaskSize: 0
[    26.477] 	GreenFieldPosition: 0
[    26.477] 	BlueMaskSize: 0
[    26.477] 	BlueFieldPosition: 0
[    26.477] 	RsvdMaskSize: 0
[    26.477] 	RsvdFieldPosition: 0
[    26.477] 	DirectColorModeInfo: 0
[    26.477] 	PhysBasePtr: 0x0
[    26.477] 	LinBytesPerScanLine: 0
[    26.477] 	BnkNumberOfImagePages: 0
[    26.477] 	LinNumberOfImagePages: 0
[    26.477] 	LinRedMaskSize: 0
[    26.477] 	LinRedFieldPosition: 0
[    26.477] 	LinGreenMaskSize: 0
[    26.477] 	LinGreenFieldPosition: 0
[    26.477] 	LinBlueMaskSize: 0
[    26.477] 	LinBlueFieldPosition: 0
[    26.477] 	LinRsvdMaskSize: 0
[    26.477] 	LinRsvdFieldPosition: 0
[    26.477] 	MaxPixelClock: 0
[    26.477] Mode: 13a (1600x1200)
[    26.477] 	ModeAttributes: 0x9b
[    26.477] 	WinAAttributes: 0x7
[    26.477] 	WinBAttributes: 0x0
[    26.477] 	WinGranularity: 64
[    26.477] 	WinSize: 64
[    26.477] 	WinASegment: 0xa000
[    26.477] 	WinBSegment: 0x0
[    26.477] 	WinFuncPtr: 0xc0009762
[    26.477] 	BytesPerScanline: 1600
[    26.477] 	XResolution: 1600
[    26.477] 	YResolution: 1200
[    26.477] 	XCharSize: 8
[    26.477] 	YCharSize: 16
[    26.477] 	NumberOfPlanes: 1
[    26.477] 	BitsPerPixel: 8
[    26.477] 	NumberOfBanks: 1
[    26.477] 	MemoryModel: 4
[    26.477] 	BankSize: 0
[    26.477] 	NumberOfImages: 33
[    26.477] 	RedMaskSize: 0
[    26.477] 	RedFieldPosition: 0
[    26.477] 	GreenMaskSize: 0
[    26.477] 	GreenFieldPosition: 0
[    26.477] 	BlueMaskSize: 0
[    26.477] 	BlueFieldPosition: 0
[    26.477] 	RsvdMaskSize: 0
[    26.477] 	RsvdFieldPosition: 0
[    26.477] 	DirectColorModeInfo: 0
[    26.477] 	PhysBasePtr: 0xe0000000
[    26.477] 	LinBytesPerScanLine: 1600
[    26.477] 	BnkNumberOfImagePages: 33
[    26.477] 	LinNumberOfImagePages: 33
[    26.477] 	LinRedMaskSize: 0
[    26.477] 	LinRedFieldPosition: 0
[    26.477] 	LinGreenMaskSize: 0
[    26.477] 	LinGreenFieldPosition: 0
[    26.477] 	LinBlueMaskSize: 0
[    26.477] 	LinBlueFieldPosition: 0
[    26.478] 	LinRsvdMaskSize: 0
[    26.478] 	LinRsvdFieldPosition: 0
[    26.478] 	MaxPixelClock: 230000000
[    26.478] Mode: 14b (1600x1200)
[    26.478] 	ModeAttributes: 0x9b
[    26.478] 	WinAAttributes: 0x7
[    26.478] 	WinBAttributes: 0x0
[    26.478] 	WinGranularity: 64
[    26.478] 	WinSize: 64
[    26.478] 	WinASegment: 0xa000
[    26.478] 	WinBSegment: 0x0
[    26.478] 	WinFuncPtr: 0xc0009762
[    26.478] 	BytesPerScanline: 3200
[    26.478] 	XResolution: 1600
[    26.478] 	YResolution: 1200
[    26.478] 	XCharSize: 8
[    26.478] 	YCharSize: 16
[    26.478] 	NumberOfPlanes: 1
[    26.478] 	BitsPerPixel: 16
[    26.478] 	NumberOfBanks: 1
[    26.478] 	MemoryModel: 6
[    26.478] 	BankSize: 0
[    26.478] 	NumberOfImages: 16
[    26.478] 	RedMaskSize: 5
[    26.478] 	RedFieldPosition: 11
[    26.478] 	GreenMaskSize: 6
[    26.478] 	GreenFieldPosition: 5
[    26.478] 	BlueMaskSize: 5
[    26.478] 	BlueFieldPosition: 0
[    26.478] 	RsvdMaskSize: 0
[    26.478] 	RsvdFieldPosition: 0
[    26.478] 	DirectColorModeInfo: 0
[    26.478] 	PhysBasePtr: 0xe0000000
[    26.478] 	LinBytesPerScanLine: 3200
[    26.478] 	BnkNumberOfImagePages: 16
[    26.478] 	LinNumberOfImagePages: 16
[    26.478] 	LinRedMaskSize: 5
[    26.478] 	LinRedFieldPosition: 11
[    26.478] 	LinGreenMaskSize: 6
[    26.478] 	LinGreenFieldPosition: 5
[    26.478] 	LinBlueMaskSize: 5
[    26.478] 	LinBlueFieldPosition: 0
[    26.478] 	LinRsvdMaskSize: 0
[    26.478] 	LinRsvdFieldPosition: 0
[    26.478] 	MaxPixelClock: 230000000
[    26.478] *Mode: 15a (1600x1200)
[    26.478] 	ModeAttributes: 0x9b
[    26.478] 	WinAAttributes: 0x7
[    26.478] 	WinBAttributes: 0x0
[    26.478] 	WinGranularity: 64
[    26.478] 	WinSize: 64
[    26.478] 	WinASegment: 0xa000
[    26.478] 	WinBSegment: 0x0
[    26.478] 	WinFuncPtr: 0xc0009762
[    26.478] 	BytesPerScanline: 6400
[    26.478] 	XResolution: 1600
[    26.478] 	YResolution: 1200
[    26.478] 	XCharSize: 8
[    26.478] 	YCharSize: 16
[    26.478] 	NumberOfPlanes: 1
[    26.478] 	BitsPerPixel: 32
[    26.478] 	NumberOfBanks: 1
[    26.478] 	MemoryModel: 6
[    26.478] 	BankSize: 0
[    26.478] 	NumberOfImages: 7
[    26.478] 	RedMaskSize: 8
[    26.478] 	RedFieldPosition: 16
[    26.478] 	GreenMaskSize: 8
[    26.478] 	GreenFieldPosition: 8
[    26.478] 	BlueMaskSize: 8
[    26.478] 	BlueFieldPosition: 0
[    26.478] 	RsvdMaskSize: 8
[    26.478] 	RsvdFieldPosition: 24
[    26.478] 	DirectColorModeInfo: 0
[    26.478] 	PhysBasePtr: 0xe0000000
[    26.478] 	LinBytesPerScanLine: 6400
[    26.478] 	BnkNumberOfImagePages: 7
[    26.478] 	LinNumberOfImagePages: 7
[    26.478] 	LinRedMaskSize: 8
[    26.478] 	LinRedFieldPosition: 16
[    26.478] 	LinGreenMaskSize: 8
[    26.478] 	LinGreenFieldPosition: 8
[    26.478] 	LinBlueMaskSize: 8
[    26.478] 	LinBlueFieldPosition: 0
[    26.478] 	LinRsvdMaskSize: 8
[    26.478] 	LinRsvdFieldPosition: 24
[    26.478] 	MaxPixelClock: 230000000
[    26.478] Mode: 107 (1280x1024)
[    26.478] 	ModeAttributes: 0x9b
[    26.478] 	WinAAttributes: 0x7
[    26.478] 	WinBAttributes: 0x0
[    26.478] 	WinGranularity: 64
[    26.478] 	WinSize: 64
[    26.478] 	WinASegment: 0xa000
[    26.478] 	WinBSegment: 0x0
[    26.478] 	WinFuncPtr: 0xc0009762
[    26.478] 	BytesPerScanline: 1280
[    26.478] 	XResolution: 1280
[    26.478] 	YResolution: 1024
[    26.478] 	XCharSize: 8
[    26.478] 	YCharSize: 16
[    26.479] 	NumberOfPlanes: 1
[    26.479] 	BitsPerPixel: 8
[    26.479] 	NumberOfBanks: 1
[    26.479] 	MemoryModel: 4
[    26.479] 	BankSize: 0
[    26.479] 	NumberOfImages: 50
[    26.479] 	RedMaskSize: 0
[    26.479] 	RedFieldPosition: 0
[    26.479] 	GreenMaskSize: 0
[    26.479] 	GreenFieldPosition: 0
[    26.479] 	BlueMaskSize: 0
[    26.479] 	BlueFieldPosition: 0
[    26.479] 	RsvdMaskSize: 0
[    26.479] 	RsvdFieldPosition: 0
[    26.479] 	DirectColorModeInfo: 0
[    26.479] 	PhysBasePtr: 0xe0000000
[    26.479] 	LinBytesPerScanLine: 1280
[    26.479] 	BnkNumberOfImagePages: 50
[    26.479] 	LinNumberOfImagePages: 50
[    26.479] 	LinRedMaskSize: 0
[    26.479] 	LinRedFieldPosition: 0
[    26.479] 	LinGreenMaskSize: 0
[    26.479] 	LinGreenFieldPosition: 0
[    26.479] 	LinBlueMaskSize: 0
[    26.479] 	LinBlueFieldPosition: 0
[    26.479] 	LinRsvdMaskSize: 0
[    26.479] 	LinRsvdFieldPosition: 0
[    26.479] 	MaxPixelClock: 230000000
[    26.479] Mode: 11a (1280x1024)
[    26.479] 	ModeAttributes: 0x9b
[    26.479] 	WinAAttributes: 0x7
[    26.479] 	WinBAttributes: 0x0
[    26.479] 	WinGranularity: 64
[    26.479] 	WinSize: 64
[    26.479] 	WinASegment: 0xa000
[    26.479] 	WinBSegment: 0x0
[    26.479] 	WinFuncPtr: 0xc0009762
[    26.479] 	BytesPerScanline: 2560
[    26.479] 	XResolution: 1280
[    26.479] 	YResolution: 1024
[    26.479] 	XCharSize: 8
[    26.479] 	YCharSize: 16
[    26.479] 	NumberOfPlanes: 1
[    26.479] 	BitsPerPixel: 16
[    26.479] 	NumberOfBanks: 1
[    26.479] 	MemoryModel: 6
[    26.479] 	BankSize: 0
[    26.479] 	NumberOfImages: 24
[    26.479] 	RedMaskSize: 5
[    26.479] 	RedFieldPosition: 11
[    26.479] 	GreenMaskSize: 6
[    26.479] 	GreenFieldPosition: 5
[    26.479] 	BlueMaskSize: 5
[    26.479] 	BlueFieldPosition: 0
[    26.479] 	RsvdMaskSize: 0
[    26.479] 	RsvdFieldPosition: 0
[    26.479] 	DirectColorModeInfo: 0
[    26.479] 	PhysBasePtr: 0xe0000000
[    26.479] 	LinBytesPerScanLine: 2560
[    26.479] 	BnkNumberOfImagePages: 24
[    26.479] 	LinNumberOfImagePages: 24
[    26.479] 	LinRedMaskSize: 5
[    26.479] 	LinRedFieldPosition: 11
[    26.479] 	LinGreenMaskSize: 6
[    26.479] 	LinGreenFieldPosition: 5
[    26.479] 	LinBlueMaskSize: 5
[    26.479] 	LinBlueFieldPosition: 0
[    26.479] 	LinRsvdMaskSize: 0
[    26.479] 	LinRsvdFieldPosition: 0
[    26.479] 	MaxPixelClock: 230000000
[    26.479] *Mode: 11b (1280x1024)
[    26.479] 	ModeAttributes: 0x9b
[    26.479] 	WinAAttributes: 0x7
[    26.479] 	WinBAttributes: 0x0
[    26.479] 	WinGranularity: 64
[    26.479] 	WinSize: 64
[    26.479] 	WinASegment: 0xa000
[    26.479] 	WinBSegment: 0x0
[    26.479] 	WinFuncPtr: 0xc0009762
[    26.479] 	BytesPerScanline: 5120
[    26.479] 	XResolution: 1280
[    26.479] 	YResolution: 1024
[    26.479] 	XCharSize: 8
[    26.479] 	YCharSize: 16
[    26.479] 	NumberOfPlanes: 1
[    26.479] 	BitsPerPixel: 32
[    26.479] 	NumberOfBanks: 1
[    26.479] 	MemoryModel: 6
[    26.479] 	BankSize: 0
[    26.479] 	NumberOfImages: 11
[    26.479] 	RedMaskSize: 8
[    26.479] 	RedFieldPosition: 16
[    26.479] 	GreenMaskSize: 8
[    26.479] 	GreenFieldPosition: 8
[    26.479] 	BlueMaskSize: 8
[    26.479] 	BlueFieldPosition: 0
[    26.479] 	RsvdMaskSize: 8
[    26.479] 	RsvdFieldPosition: 24
[    26.479] 	DirectColorModeInfo: 0
[    26.479] 	PhysBasePtr: 0xe0000000
[    26.479] 	LinBytesPerScanLine: 5120
[    26.479] 	BnkNumberOfImagePages: 11
[    26.479] 	LinNumberOfImagePages: 11
[    26.479] 	LinRedMaskSize: 8
[    26.479] 	LinRedFieldPosition: 16
[    26.479] 	LinGreenMaskSize: 8
[    26.479] 	LinGreenFieldPosition: 8
[    26.479] 	LinBlueMaskSize: 8
[    26.479] 	LinBlueFieldPosition: 0
[    26.479] 	LinRsvdMaskSize: 8
[    26.479] 	LinRsvdFieldPosition: 24
[    26.479] 	MaxPixelClock: 230000000
[    26.480] Mode: 105 (1024x768)
[    26.480] 	ModeAttributes: 0x9b
[    26.480] 	WinAAttributes: 0x7
[    26.480] 	WinBAttributes: 0x0
[    26.480] 	WinGranularity: 64
[    26.480] 	WinSize: 64
[    26.480] 	WinASegment: 0xa000
[    26.480] 	WinBSegment: 0x0
[    26.480] 	WinFuncPtr: 0xc0009762
[    26.480] 	BytesPerScanline: 1024
[    26.480] 	XResolution: 1024
[    26.480] 	YResolution: 768
[    26.480] 	XCharSize: 8
[    26.480] 	YCharSize: 16
[    26.480] 	NumberOfPlanes: 1
[    26.480] 	BitsPerPixel: 8
[    26.480] 	NumberOfBanks: 1
[    26.480] 	MemoryModel: 4
[    26.480] 	BankSize: 0
[    26.480] 	NumberOfImages: 84
[    26.480] 	RedMaskSize: 0
[    26.480] 	RedFieldPosition: 0
[    26.480] 	GreenMaskSize: 0
[    26.480] 	GreenFieldPosition: 0
[    26.480] 	BlueMaskSize: 0
[    26.480] 	BlueFieldPosition: 0
[    26.480] 	RsvdMaskSize: 0
[    26.480] 	RsvdFieldPosition: 0
[    26.480] 	DirectColorModeInfo: 0
[    26.480] 	PhysBasePtr: 0xe0000000
[    26.480] 	LinBytesPerScanLine: 1024
[    26.480] 	BnkNumberOfImagePages: 84
[    26.480] 	LinNumberOfImagePages: 84
[    26.480] 	LinRedMaskSize: 0
[    26.480] 	LinRedFieldPosition: 0
[    26.480] 	LinGreenMaskSize: 0
[    26.480] 	LinGreenFieldPosition: 0
[    26.480] 	LinBlueMaskSize: 0
[    26.480] 	LinBlueFieldPosition: 0
[    26.480] 	LinRsvdMaskSize: 0
[    26.480] 	LinRsvdFieldPosition: 0
[    26.480] 	MaxPixelClock: 230000000
[    26.480] Mode: 117 (1024x768)
[    26.480] 	ModeAttributes: 0x9b
[    26.480] 	WinAAttributes: 0x7
[    26.480] 	WinBAttributes: 0x0
[    26.480] 	WinGranularity: 64
[    26.480] 	WinSize: 64
[    26.480] 	WinASegment: 0xa000
[    26.480] 	WinBSegment: 0x0
[    26.480] 	WinFuncPtr: 0xc0009762
[    26.480] 	BytesPerScanline: 2048
[    26.480] 	XResolution: 1024
[    26.480] 	YResolution: 768
[    26.480] 	XCharSize: 8
[    26.480] 	YCharSize: 16
[    26.480] 	NumberOfPlanes: 1
[    26.480] 	BitsPerPixel: 16
[    26.480] 	NumberOfBanks: 1
[    26.480] 	MemoryModel: 6
[    26.480] 	BankSize: 0
[    26.480] 	NumberOfImages: 41
[    26.480] 	RedMaskSize: 5
[    26.480] 	RedFieldPosition: 11
[    26.480] 	GreenMaskSize: 6
[    26.480] 	GreenFieldPosition: 5
[    26.480] 	BlueMaskSize: 5
[    26.480] 	BlueFieldPosition: 0
[    26.480] 	RsvdMaskSize: 0
[    26.480] 	RsvdFieldPosition: 0
[    26.480] 	DirectColorModeInfo: 0
[    26.480] 	PhysBasePtr: 0xe0000000
[    26.480] 	LinBytesPerScanLine: 2048
[    26.480] 	BnkNumberOfImagePages: 41
[    26.480] 	LinNumberOfImagePages: 41
[    26.480] 	LinRedMaskSize: 5
[    26.480] 	LinRedFieldPosition: 11
[    26.480] 	LinGreenMaskSize: 6
[    26.480] 	LinGreenFieldPosition: 5
[    26.480] 	LinBlueMaskSize: 5
[    26.480] 	LinBlueFieldPosition: 0
[    26.480] 	LinRsvdMaskSize: 0
[    26.480] 	LinRsvdFieldPosition: 0
[    26.480] 	MaxPixelClock: 230000000
[    26.480] *Mode: 118 (1024x768)
[    26.480] 	ModeAttributes: 0x9b
[    26.480] 	WinAAttributes: 0x7
[    26.480] 	WinBAttributes: 0x0
[    26.480] 	WinGranularity: 64
[    26.480] 	WinSize: 64
[    26.480] 	WinASegment: 0xa000
[    26.480] 	WinBSegment: 0x0
[    26.480] 	WinFuncPtr: 0xc0009762
[    26.480] 	BytesPerScanline: 4096
[    26.480] 	XResolution: 1024
[    26.480] 	YResolution: 768
[    26.480] 	XCharSize: 8
[    26.480] 	YCharSize: 16
[    26.480] 	NumberOfPlanes: 1
[    26.480] 	BitsPerPixel: 32
[    26.480] 	NumberOfBanks: 1
[    26.480] 	MemoryModel: 6
[    26.480] 	BankSize: 0
[    26.480] 	NumberOfImages: 20
[    26.480] 	RedMaskSize: 8
[    26.480] 	RedFieldPosition: 16
[    26.480] 	GreenMaskSize: 8
[    26.480] 	GreenFieldPosition: 8
[    26.480] 	BlueMaskSize: 8
[    26.480] 	BlueFieldPosition: 0
[    26.480] 	RsvdMaskSize: 8
[    26.480] 	RsvdFieldPosition: 24
[    26.480] 	DirectColorModeInfo: 0
[    26.480] 	PhysBasePtr: 0xe0000000
[    26.480] 	LinBytesPerScanLine: 4096
[    26.480] 	BnkNumberOfImagePages: 20
[    26.480] 	LinNumberOfImagePages: 20
[    26.480] 	LinRedMaskSize: 8
[    26.480] 	LinRedFieldPosition: 16
[    26.480] 	LinGreenMaskSize: 8
[    26.480] 	LinGreenFieldPosition: 8
[    26.480] 	LinBlueMaskSize: 8
[    26.480] 	LinBlueFieldPosition: 0
[    26.480] 	LinRsvdMaskSize: 8
[    26.480] 	LinRsvdFieldPosition: 24
[    26.480] 	MaxPixelClock: 230000000
[    26.481] *Mode: 112 (640x480)
[    26.481] 	ModeAttributes: 0x9b
[    26.481] 	WinAAttributes: 0x7
[    26.481] 	WinBAttributes: 0x0
[    26.481] 	WinGranularity: 64
[    26.481] 	WinSize: 64
[    26.481] 	WinASegment: 0xa000
[    26.481] 	WinBSegment: 0x0
[    26.481] 	WinFuncPtr: 0xc0009762
[    26.481] 	BytesPerScanline: 2560
[    26.481] 	XResolution: 640
[    26.481] 	YResolution: 480
[    26.481] 	XCharSize: 8
[    26.481] 	YCharSize: 16
[    26.481] 	NumberOfPlanes: 1
[    26.481] 	BitsPerPixel: 32
[    26.481] 	NumberOfBanks: 1
[    26.481] 	MemoryModel: 6
[    26.481] 	BankSize: 0
[    26.481] 	NumberOfImages: 52
[    26.481] 	RedMaskSize: 8
[    26.481] 	RedFieldPosition: 16
[    26.481] 	GreenMaskSize: 8
[    26.481] 	GreenFieldPosition: 8
[    26.481] 	BlueMaskSize: 8
[    26.481] 	BlueFieldPosition: 0
[    26.481] 	RsvdMaskSize: 8
[    26.481] 	RsvdFieldPosition: 24
[    26.481] 	DirectColorModeInfo: 0
[    26.481] 	PhysBasePtr: 0xe0000000
[    26.481] 	LinBytesPerScanLine: 2560
[    26.481] 	BnkNumberOfImagePages: 52
[    26.481] 	LinNumberOfImagePages: 52
[    26.481] 	LinRedMaskSize: 8
[    26.481] 	LinRedFieldPosition: 16
[    26.481] 	LinGreenMaskSize: 8
[    26.481] 	LinGreenFieldPosition: 8
[    26.481] 	LinBlueMaskSize: 8
[    26.481] 	LinBlueFieldPosition: 0
[    26.481] 	LinRsvdMaskSize: 8
[    26.481] 	LinRsvdFieldPosition: 24
[    26.481] 	MaxPixelClock: 230000000
[    26.481] Mode: 114 (800x600)
[    26.481] 	ModeAttributes: 0x9b
[    26.481] 	WinAAttributes: 0x7
[    26.481] 	WinBAttributes: 0x0
[    26.481] 	WinGranularity: 64
[    26.481] 	WinSize: 64
[    26.481] 	WinASegment: 0xa000
[    26.481] 	WinBSegment: 0x0
[    26.481] 	WinFuncPtr: 0xc0009762
[    26.481] 	BytesPerScanline: 1600
[    26.481] 	XResolution: 800
[    26.481] 	YResolution: 600
[    26.481] 	XCharSize: 8
[    26.481] 	YCharSize: 16
[    26.481] 	NumberOfPlanes: 1
[    26.481] 	BitsPerPixel: 16
[    26.481] 	NumberOfBanks: 1
[    26.481] 	MemoryModel: 6
[    26.481] 	BankSize: 0
[    26.481] 	NumberOfImages: 67
[    26.481] 	RedMaskSize: 5
[    26.481] 	RedFieldPosition: 11
[    26.481] 	GreenMaskSize: 6
[    26.481] 	GreenFieldPosition: 5
[    26.481] 	BlueMaskSize: 5
[    26.481] 	BlueFieldPosition: 0
[    26.481] 	RsvdMaskSize: 0
[    26.481] 	RsvdFieldPosition: 0
[    26.481] 	DirectColorModeInfo: 0
[    26.481] 	PhysBasePtr: 0xe0000000
[    26.481] 	LinBytesPerScanLine: 1600
[    26.481] 	BnkNumberOfImagePages: 67
[    26.481] 	LinNumberOfImagePages: 67
[    26.481] 	LinRedMaskSize: 5
[    26.481] 	LinRedFieldPosition: 11
[    26.481] 	LinGreenMaskSize: 6
[    26.481] 	LinGreenFieldPosition: 5
[    26.481] 	LinBlueMaskSize: 5
[    26.481] 	LinBlueFieldPosition: 0
[    26.481] 	LinRsvdMaskSize: 0
[    26.481] 	LinRsvdFieldPosition: 0
[    26.481] 	MaxPixelClock: 230000000
[    26.481] *Mode: 115 (800x600)
[    26.481] 	ModeAttributes: 0x9b
[    26.481] 	WinAAttributes: 0x7
[    26.481] 	WinBAttributes: 0x0
[    26.481] 	WinGranularity: 64
[    26.481] 	WinSize: 64
[    26.481] 	WinASegment: 0xa000
[    26.481] 	WinBSegment: 0x0
[    26.481] 	WinFuncPtr: 0xc0009762
[    26.481] 	BytesPerScanline: 3200
[    26.481] 	XResolution: 800
[    26.481] 	YResolution: 600
[    26.481] 	XCharSize: 8
[    26.481] 	YCharSize: 16
[    26.481] 	NumberOfPlanes: 1
[    26.481] 	BitsPerPixel: 32
[    26.481] 	NumberOfBanks: 1
[    26.481] 	MemoryModel: 6
[    26.481] 	BankSize: 0
[    26.481] 	NumberOfImages: 33
[    26.481] 	RedMaskSize: 8
[    26.481] 	RedFieldPosition: 16
[    26.482] 	GreenMaskSize: 8
[    26.482] 	GreenFieldPosition: 8
[    26.482] 	BlueMaskSize: 8
[    26.482] 	BlueFieldPosition: 0
[    26.482] 	RsvdMaskSize: 8
[    26.482] 	RsvdFieldPosition: 24
[    26.482] 	DirectColorModeInfo: 0
[    26.482] 	PhysBasePtr: 0xe0000000
[    26.482] 	LinBytesPerScanLine: 3200
[    26.482] 	BnkNumberOfImagePages: 33
[    26.482] 	LinNumberOfImagePages: 33
[    26.482] 	LinRedMaskSize: 8
[    26.482] 	LinRedFieldPosition: 16
[    26.482] 	LinGreenMaskSize: 8
[    26.482] 	LinGreenFieldPosition: 8
[    26.482] 	LinBlueMaskSize: 8
[    26.482] 	LinBlueFieldPosition: 0
[    26.482] 	LinRsvdMaskSize: 8
[    26.482] 	LinRsvdFieldPosition: 24
[    26.482] 	MaxPixelClock: 230000000
[    26.482] Mode: 101 (640x480)
[    26.482] 	ModeAttributes: 0x9b
[    26.482] 	WinAAttributes: 0x7
[    26.482] 	WinBAttributes: 0x0
[    26.482] 	WinGranularity: 64
[    26.482] 	WinSize: 64
[    26.482] 	WinASegment: 0xa000
[    26.482] 	WinBSegment: 0x0
[    26.482] 	WinFuncPtr: 0xc0009762
[    26.482] 	BytesPerScanline: 640
[    26.482] 	XResolution: 640
[    26.482] 	YResolution: 480
[    26.482] 	XCharSize: 8
[    26.482] 	YCharSize: 16
[    26.482] 	NumberOfPlanes: 1
[    26.482] 	BitsPerPixel: 8
[    26.482] 	NumberOfBanks: 1
[    26.482] 	MemoryModel: 4
[    26.482] 	BankSize: 0
[    26.482] 	NumberOfImages: 203
[    26.482] 	RedMaskSize: 0
[    26.482] 	RedFieldPosition: 0
[    26.482] 	GreenMaskSize: 0
[    26.482] 	GreenFieldPosition: 0
[    26.482] 	BlueMaskSize: 0
[    26.482] 	BlueFieldPosition: 0
[    26.482] 	RsvdMaskSize: 0
[    26.482] 	RsvdFieldPosition: 0
[    26.482] 	DirectColorModeInfo: 0
[    26.482] 	PhysBasePtr: 0xe0000000
[    26.482] 	LinBytesPerScanLine: 640
[    26.482] 	BnkNumberOfImagePages: 203
[    26.482] 	LinNumberOfImagePages: 203
[    26.482] 	LinRedMaskSize: 0
[    26.482] 	LinRedFieldPosition: 0
[    26.482] 	LinGreenMaskSize: 0
[    26.482] 	LinGreenFieldPosition: 0
[    26.482] 	LinBlueMaskSize: 0
[    26.482] 	LinBlueFieldPosition: 0
[    26.482] 	LinRsvdMaskSize: 0
[    26.482] 	LinRsvdFieldPosition: 0
[    26.482] 	MaxPixelClock: 230000000
[    26.482] Mode: 103 (800x600)
[    26.482] 	ModeAttributes: 0x9b
[    26.482] 	WinAAttributes: 0x7
[    26.482] 	WinBAttributes: 0x0
[    26.482] 	WinGranularity: 64
[    26.482] 	WinSize: 64
[    26.482] 	WinASegment: 0xa000
[    26.482] 	WinBSegment: 0x0
[    26.482] 	WinFuncPtr: 0xc0009762
[    26.482] 	BytesPerScanline: 832
[    26.482] 	XResolution: 800
[    26.482] 	YResolution: 600
[    26.482] 	XCharSize: 8
[    26.482] 	YCharSize: 16
[    26.482] 	NumberOfPlanes: 1
[    26.482] 	BitsPerPixel: 8
[    26.482] 	NumberOfBanks: 1
[    26.482] 	MemoryModel: 4
[    26.482] 	BankSize: 0
[    26.482] 	NumberOfImages: 126
[    26.482] 	RedMaskSize: 0
[    26.482] 	RedFieldPosition: 0
[    26.482] 	GreenMaskSize: 0
[    26.482] 	GreenFieldPosition: 0
[    26.482] 	BlueMaskSize: 0
[    26.482] 	BlueFieldPosition: 0
[    26.482] 	RsvdMaskSize: 0
[    26.482] 	RsvdFieldPosition: 0
[    26.482] 	DirectColorModeInfo: 0
[    26.482] 	PhysBasePtr: 0xe0000000
[    26.482] 	LinBytesPerScanLine: 832
[    26.482] 	BnkNumberOfImagePages: 126
[    26.482] 	LinNumberOfImagePages: 126
[    26.482] 	LinRedMaskSize: 0
[    26.482] 	LinRedFieldPosition: 0
[    26.482] 	LinGreenMaskSize: 0
[    26.482] 	LinGreenFieldPosition: 0
[    26.482] 	LinBlueMaskSize: 0
[    26.482] 	LinBlueFieldPosition: 0
[    26.482] 	LinRsvdMaskSize: 0
[    26.482] 	LinRsvdFieldPosition: 0
[    26.482] 	MaxPixelClock: 230000000
[    26.482] Mode: 111 (640x480)
[    26.482] 	ModeAttributes: 0x9b
[    26.482] 	WinAAttributes: 0x7
[    26.482] 	WinBAttributes: 0x0
[    26.482] 	WinGranularity: 64
[    26.482] 	WinSize: 64
[    26.482] 	WinASegment: 0xa000
[    26.482] 	WinBSegment: 0x0
[    26.482] 	WinFuncPtr: 0xc0009762
[    26.482] 	BytesPerScanline: 1280
[    26.482] 	XResolution: 640
[    26.482] 	YResolution: 480
[    26.482] 	XCharSize: 8
[    26.482] 	YCharSize: 16
[    26.482] 	NumberOfPlanes: 1
[    26.482] 	BitsPerPixel: 16
[    26.482] 	NumberOfBanks: 1
[    26.482] 	MemoryModel: 6
[    26.482] 	BankSize: 0
[    26.482] 	NumberOfImages: 101
[    26.482] 	RedMaskSize: 5
[    26.482] 	RedFieldPosition: 11
[    26.482] 	GreenMaskSize: 6
[    26.482] 	GreenFieldPosition: 5
[    26.482] 	BlueMaskSize: 5
[    26.482] 	BlueFieldPosition: 0
[    26.482] 	RsvdMaskSize: 0
[    26.482] 	RsvdFieldPosition: 0
[    26.482] 	DirectColorModeInfo: 0
[    26.482] 	PhysBasePtr: 0xe0000000
[    26.483] 	LinBytesPerScanLine: 1280
[    26.483] 	BnkNumberOfImagePages: 101
[    26.483] 	LinNumberOfImagePages: 101
[    26.483] 	LinRedMaskSize: 5
[    26.483] 	LinRedFieldPosition: 11
[    26.483] 	LinGreenMaskSize: 6
[    26.483] 	LinGreenFieldPosition: 5
[    26.483] 	LinBlueMaskSize: 5
[    26.483] 	LinBlueFieldPosition: 0
[    26.483] 	LinRsvdMaskSize: 0
[    26.483] 	LinRsvdFieldPosition: 0
[    26.483] 	MaxPixelClock: 230000000
[    26.483] Mode: 17d (1920x1080)
[    26.483] 	ModeAttributes: 0x9b
[    26.483] 	WinAAttributes: 0x7
[    26.483] 	WinBAttributes: 0x0
[    26.483] 	WinGranularity: 64
[    26.483] 	WinSize: 64
[    26.483] 	WinASegment: 0xa000
[    26.483] 	WinBSegment: 0x0
[    26.483] 	WinFuncPtr: 0xc0009762
[    26.483] 	BytesPerScanline: 1920
[    26.483] 	XResolution: 1920
[    26.483] 	YResolution: 1080
[    26.483] 	XCharSize: 8
[    26.483] 	YCharSize: 16
[    26.483] 	NumberOfPlanes: 1
[    26.483] 	BitsPerPixel: 8
[    26.483] 	NumberOfBanks: 1
[    26.483] 	MemoryModel: 4
[    26.483] 	BankSize: 0
[    26.483] 	NumberOfImages: 30
[    26.483] 	RedMaskSize: 0
[    26.483] 	RedFieldPosition: 0
[    26.483] 	GreenMaskSize: 0
[    26.483] 	GreenFieldPosition: 0
[    26.483] 	BlueMaskSize: 0
[    26.483] 	BlueFieldPosition: 0
[    26.483] 	RsvdMaskSize: 0
[    26.483] 	RsvdFieldPosition: 0
[    26.483] 	DirectColorModeInfo: 0
[    26.483] 	PhysBasePtr: 0xe0000000
[    26.483] 	LinBytesPerScanLine: 1920
[    26.483] 	BnkNumberOfImagePages: 30
[    26.483] 	LinNumberOfImagePages: 30
[    26.483] 	LinRedMaskSize: 0
[    26.483] 	LinRedFieldPosition: 0
[    26.483] 	LinGreenMaskSize: 0
[    26.483] 	LinGreenFieldPosition: 0
[    26.483] 	LinBlueMaskSize: 0
[    26.483] 	LinBlueFieldPosition: 0
[    26.483] 	LinRsvdMaskSize: 0
[    26.483] 	LinRsvdFieldPosition: 0
[    26.483] 	MaxPixelClock: 230000000
[    26.483] Mode: 17e (1920x1080)
[    26.483] 	ModeAttributes: 0x9b
[    26.483] 	WinAAttributes: 0x7
[    26.483] 	WinBAttributes: 0x0
[    26.483] 	WinGranularity: 64
[    26.483] 	WinSize: 64
[    26.483] 	WinASegment: 0xa000
[    26.483] 	WinBSegment: 0x0
[    26.483] 	WinFuncPtr: 0xc0009762
[    26.483] 	BytesPerScanline: 3840
[    26.483] 	XResolution: 1920
[    26.483] 	YResolution: 1080
[    26.483] 	XCharSize: 8
[    26.483] 	YCharSize: 16
[    26.483] 	NumberOfPlanes: 1
[    26.483] 	BitsPerPixel: 16
[    26.483] 	NumberOfBanks: 1
[    26.483] 	MemoryModel: 6
[    26.483] 	BankSize: 0
[    26.483] 	NumberOfImages: 14
[    26.483] 	RedMaskSize: 5
[    26.483] 	RedFieldPosition: 11
[    26.483] 	GreenMaskSize: 6
[    26.483] 	GreenFieldPosition: 5
[    26.483] 	BlueMaskSize: 5
[    26.483] 	BlueFieldPosition: 0
[    26.483] 	RsvdMaskSize: 0
[    26.483] 	RsvdFieldPosition: 0
[    26.483] 	DirectColorModeInfo: 0
[    26.483] 	PhysBasePtr: 0xe0000000
[    26.483] 	LinBytesPerScanLine: 3840
[    26.483] 	BnkNumberOfImagePages: 14
[    26.483] 	LinNumberOfImagePages: 14
[    26.483] 	LinRedMaskSize: 5
[    26.483] 	LinRedFieldPosition: 11
[    26.483] 	LinGreenMaskSize: 6
[    26.483] 	LinGreenFieldPosition: 5
[    26.483] 	LinBlueMaskSize: 5
[    26.483] 	LinBlueFieldPosition: 0
[    26.483] 	LinRsvdMaskSize: 0
[    26.483] 	LinRsvdFieldPosition: 0
[    26.483] 	MaxPixelClock: 230000000
[    26.484] *Mode: 17f (1920x1080)
[    26.484] 	ModeAttributes: 0x9b
[    26.484] 	WinAAttributes: 0x7
[    26.484] 	WinBAttributes: 0x0
[    26.484] 	WinGranularity: 64
[    26.484] 	WinSize: 64
[    26.484] 	WinASegment: 0xa000
[    26.484] 	WinBSegment: 0x0
[    26.484] 	WinFuncPtr: 0xc0009762
[    26.484] 	BytesPerScanline: 7680
[    26.484] 	XResolution: 1920
[    26.484] 	YResolution: 1080
[    26.484] 	XCharSize: 8
[    26.484] 	YCharSize: 16
[    26.484] 	NumberOfPlanes: 1
[    26.484] 	BitsPerPixel: 32
[    26.484] 	NumberOfBanks: 1
[    26.484] 	MemoryModel: 6
[    26.484] 	BankSize: 0
[    26.484] 	NumberOfImages: 7
[    26.484] 	RedMaskSize: 8
[    26.484] 	RedFieldPosition: 16
[    26.484] 	GreenMaskSize: 8
[    26.484] 	GreenFieldPosition: 8
[    26.484] 	BlueMaskSize: 8
[    26.484] 	BlueFieldPosition: 0
[    26.484] 	RsvdMaskSize: 8
[    26.484] 	RsvdFieldPosition: 24
[    26.484] 	DirectColorModeInfo: 0
[    26.484] 	PhysBasePtr: 0xe0000000
[    26.484] 	LinBytesPerScanLine: 7680
[    26.484] 	BnkNumberOfImagePages: 7
[    26.484] 	LinNumberOfImagePages: 7
[    26.484] 	LinRedMaskSize: 8
[    26.484] 	LinRedFieldPosition: 16
[    26.484] 	LinGreenMaskSize: 8
[    26.484] 	LinGreenFieldPosition: 8
[    26.484] 	LinBlueMaskSize: 8
[    26.484] 	LinBlueFieldPosition: 0
[    26.484] 	LinRsvdMaskSize: 8
[    26.484] 	LinRsvdFieldPosition: 24
[    26.484] 	MaxPixelClock: 230000000
[    26.484] 
[    26.484] (II) VESA(0): Total Memory: 1023 64KB banks (65472kB)
[    26.484] (II) VESA(0): Monitor0: Using hsync range of 24.00-80.00 kHz
[    26.484] (II) VESA(0): Monitor0: Using vrefresh range of 50.00-75.00 Hz
[    26.484] (II) VESA(0): Monitor0: Using maximum pixel clock of 175.00 MHz
[    26.484] (WW) VESA(0): Unable to estimate virtual size
[    26.485] (--) VESA(0): Virtual size is 1920x1200 (pitch 1920)
[    26.485] (**) VESA(0): *Built-in mode "1920x1080"
[    26.485] (**) VESA(0): *Built-in mode "1600x1200"
[    26.485] (**) VESA(0): *Built-in mode "1280x1024"
[    26.485] (**) VESA(0): *Built-in mode "1024x768"
[    26.485] (**) VESA(0): *Built-in mode "800x600"
[    26.485] (**) VESA(0): *Built-in mode "640x480"
[    26.485] (**) VESA(0): Display dimensions: (600, 340) mm
[    26.485] (**) VESA(0): DPI set to (81, 89)
[    26.485] (**) VESA(0): Using "Shadow Framebuffer"
[    26.485] (II) Loading sub module "shadow"
[    26.485] (II) LoadModule: "shadow"
[    26.485] (II) Loading /usr/pkg/lib/xorg/modules/libshadow.so
[    26.486] (II) Module shadow: vendor="X.Org Foundation"
[    26.486] 	compiled for 1.12.4, module version = 1.1.0
[    26.486] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    26.486] (II) Loading sub module "fb"
[    26.486] (II) LoadModule: "fb"
[    26.486] (II) Loading /usr/pkg/lib/xorg/modules/libfb.so
[    26.487] (II) Module fb: vendor="X.Org Foundation"
[    26.487] 	compiled for 1.12.4, module version = 1.0.0
[    26.487] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    26.487] (==) Depth 24 pixmap format is 32 bpp
[    26.487] (II) Loading sub module "int10"
[    26.487] (II) LoadModule: "int10"
[    26.487] (II) Loading /usr/pkg/lib/xorg/modules/libint10.so
[    26.487] (II) Module int10: vendor="X.Org Foundation"
[    26.487] 	compiled for 1.12.4, module version = 1.0.0
[    26.487] 	ABI class: X.Org Video Driver, version 12.1
[    26.487] (II) VESA(0): initializing int10
[    26.487] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[    26.488] (II) VESA(0): VESA BIOS detected
[    26.488] (II) VESA(0): VESA VBE Version 3.0
[    26.488] (II) VESA(0): VESA VBE Total Mem: 65472 kB
[    26.488] (II) VESA(0): VESA VBE OEM: Intel(R) HSW Mobile/Desktop Graphics Chipset Accelerated VGA BIOS
[    26.488] (II) VESA(0): VESA VBE OEM Software Rev: 0.0
[    26.493] (II) VESA(0): virtual address = 0x7f7fec810000,
	physical address = 0xe0000000, size = 67043328
[    26.499] (II) VESA(0): Setting up VESA Mode 0x17F (1920x1080)
[    26.603] (==) VESA(0): Default visual is TrueColor
[    26.605] (==) VESA(0): Backing store disabled
[    26.606] (**) VESA(0): DPMS enabled
[    26.607] (==) RandR enabled
[    26.607] (II) Initializing built-in extension Generic Event Extension
[    26.607] (II) Initializing built-in extension SHAPE
[    26.607] (II) Initializing built-in extension MIT-SHM
[    26.607] (II) Initializing built-in extension XInputExtension
[    26.607] (II) Initializing built-in extension XTEST
[    26.607] (II) Initializing built-in extension BIG-REQUESTS
[    26.607] (II) Initializing built-in extension SYNC
[    26.607] (II) Initializing built-in extension XKEYBOARD
[    26.607] (II) Initializing built-in extension XC-MISC
[    26.607] (II) Initializing built-in extension XINERAMA
[    26.607] (II) Initializing built-in extension XFIXES
[    26.607] (II) Initializing built-in extension RENDER
[    26.607] (II) Initializing built-in extension RANDR
[    26.607] (II) Initializing built-in extension COMPOSITE
[    26.607] (II) Initializing built-in extension DAMAGE
[    26.615] (II) AIGLX: Screen 0 is not DRI2 capable
[    26.615] (II) AIGLX: Screen 0 is not DRI capable
[    26.634] (II) AIGLX: Loaded and initialized swrast
[    26.634] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    26.745] (II) Using input driver 'mouse' for 'Mouse0'
[    26.745] (**) Option "CorePointer"
[    26.745] (**) Mouse0: always reports core events
[    26.745] (**) Option "Protocol" "wsmouse"
[    26.745] (**) Option "Device" "/dev/wsmouse"
[    26.745] (**) Mouse0: Protocol: "wsmouse"
[    26.745] (**) Mouse0: always reports core events
[    26.750] (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
[    26.750] (**) Option "ZAxisMapping" "4 5 6 7"
[    26.750] (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
[    26.750] (**) Mouse0: Buttons: 11
[    26.750] (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE, id 6)
[    26.750] (**) Mouse0: (accel) keeping acceleration scheme 1
[    26.750] (**) Mouse0: (accel) acceleration profile 0
[    26.750] (**) Mouse0: (accel) acceleration factor: 2.000
[    26.750] (**) Mouse0: (accel) acceleration threshold: 4
[    26.750] (II) Using input driver 'kbd' for 'Keyboard0'
[    26.750] (**) Option "CoreKeyboard"
[    26.750] (**) Keyboard0: always reports core events
[    26.750] (**) Keyboard0: always reports core events
[    26.750] (**) Option "Protocol" "standard"
[    26.750] (**) Option "XkbRules" "base"
[    26.750] (**) Option "XkbModel" "pc105"
[    26.750] (**) Option "XkbLayout" "us"
[    26.750] (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD, id 7)
[   499.431] (II) VESA(0): Setting up VESA Mode 0x118 (1024x768)
[   530.680] (II) UnloadModule: "mouse"
[   530.680] (II) UnloadModule: "kbd"
[   530.897] Server terminated successfully (0). Closing log file.

Last edited by tavrion; 5th July 2013 at 06:17 PM. Reason: un-garbling speech
Reply With Quote
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Thank you. Even without a dmesg, we have more info. For instance:
Code:
[    26.425] Current Operating System: NetBSD NetBSD.home.gateway 6.1 NetBSD 6.1 (GENERIC) amd64
You have an Xorg configuration file that lists timings:
Code:
[    26.476] (II) VESA(0): Using hsync ranges from config file
[    26.476] (II) VESA(0): Using vrefresh ranges from config file
I recommend removing these from your xorg.conf file or commenting them out. Your monitor supports DDC and should signal its own horizontal sync and vertical refresh rates, as well as the modelines it supports.
Reply With Quote
Old 5th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

Thank you. I have removed the hsync and vertical refersh info but it still crashed whenever I switch console or reboot/reset/exit with 1920x1080. When I log in, the resolution is too high. I think it has something to do with startx configuration. Will take a look at that tomorrow.

I can not thank you enough. Even though the issue is not yet fully resolved, at least my understanding of the problem has increased. Even a tutorial on mounting a usb in unix : )

Thank you very much for you help.
Reply With Quote
Old 5th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Perhaps you could do away with your xorg.conf entirely? With X.org in recent years they're really helpful only when automated configuration either isn't enough or doesn't work as intended.

If not, you could post it here, so that others could make recommendations. I'm no X11 expert.

I deny that I ever worked on debugging XFree86 driver code in 1985 or 1986. There's no evidence of it in any code base anywhere. (Probably a good thing.)
Reply With Quote
Old 6th July 2013
tavrion tavrion is offline
Port Guard
 
Join Date: Jul 2013
Posts: 14
Default

I have removed the xorg.conf file alltogether and everything works as you predicted - better in fact after I threw out the vga cable and used the hdmi cable instead. The latter effect being that I default to the correct resolution.

I still need to step the resolution down in order to quit the X enviroment. If not, I crash. With Wheezy, changing the resolution doesnt stop the crash when I logout/reboot/shutdown/etc. It would appear that I am not the only person with this problem.

There is not much I can do except wait for an updated kernel or patch or something. Apart from this, the system is rock solid.

Thanks again for your help jggimi. I probably owe you a beer!
Reply With Quote
Old 7th July 2013
shep shep is offline
Real Name: Scott
Arp Constable
 
Join Date: May 2008
Location: Dry and Dusty
Posts: 1,503
Default

Quote:
Thanks again for your help jggimi. I probably owe you a beer!
jggimi is the forums resident guru. For all things networking, OpenBSD and internet security he provides informed, accurate guidance while encouraging learning and self sufficiency.

If he drank a beer for for each problem he has helped he would at least have a beer belly if not a fatty liver.
Reply With Quote
Old 7th July 2013
jggimi's Avatar
jggimi jggimi is offline
More noise than signal
 
Join Date: May 2008
Location: USA
Posts: 7,977
Default

Quote:
Originally Posted by tavrion View Post
...Thanks again for your help jggimi...
You are most welcome.
Quote:
Originally Posted by shep View Post
jggimi is the forums resident guru.
Pshaw.
Quote:
For all things networking...
Some things.
Quote:
... OpenBSD and internet security ....
I use the one and am interested in the other.
Quote:
...If he drank a beer for for each problem he has helped he would at least have a beer belly if not a fatty liver.
But I like beer.

Actually, I've been losing weight for the last nine months and haven't had a beer in at least that length of time. I reached my goal weight about two months ago and am still losing while trying to maintain weight. Perhaps I should add beer to my diet once again.
Reply With Quote
Reply

Tags
display, haswell, hd4600, intel, x11

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Intel graphics tolstoi NetBSD General 5 20th February 2013 08:10 AM
"Intel Packet of Death" not Intel's problem J65nko News 0 11th February 2013 07:26 PM
FreeBSD Intel KMS shep News 0 8th May 2012 07:29 PM
OpenBSD 4.4 and Intel DRM Nightweaver OpenBSD General 8 19th October 2008 07:34 PM
Intel 775 MB For 20$ revzalot OpenBSD General 2 22nd July 2008 06:17 AM


All times are GMT. The time now is 11:28 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Content copyright © 2007-2010, the authors
Daemon image copyright ©1988, Marshall Kirk McKusick