xorg7.0_rc1 빌드 가능(젠투)

luark의 이미지

젠투의 포티지에 xorg7관련 패키지들이 전부 하드마스크가 풀렸기에 젠투 포럼을 살펴보니 7.0빌드에 성공했다는 사람들이 여럿 있었다. 용기를 얻고 xorg7.0설치에 들어갔다.

우선 혹시 있을지도 모르는 사태에 대비하여 quickpkg xorg-x11로 기존 xorg를 패키지로 저장해 놓고 emerge -C xorg-x11로 제거했다. xorg-x11 6.8.2등이 설치된 상태에서는 충돌이 일어나서 7.0이 설치되지 않는다.

총 91개의 패키지가 설치되는데 총 걸린 시간은 45분 정도이다. 기본적으로 의존성에 걸려 깔리는 패키지 외에 x11-drivers/xf86-input-mouse ,xf86-input-keyboard, xf86-input-evdev 를 설치해야 하고 추가로 자신의 그래픽카드에 맞는 x11-drivers/xf86-video-xx를 설치해야 한다. 나의 경우에는 ati용 드라이버를 설치했다.
혹시 mesa쪽에서 이머징에러가 난다면 /etc/portage/package.use 에 x11-libs/mesa -motif 를 추가해 보자.

그외엔 별다른 에러 없이 설치가 될 것이다. 만약 libXaw.so.8를 찾는 에러가 난다면 /usr/lib/에 있는 libXaw.so를 위의 파일로 바꿔주거나 링크를 걸어주자.

모든 빌드가 완료되면 etc-update를 해주고 revdep-build를 해서 어긋난 라이브러리들을 맞춰주자.

엑스관련 라이브러리의 위치가 바뀐관계로 실행이 되지 않는 경우가 있는데 xorg.conf를 편집하여 ModulePath에 usr/lib/xorg/modules 값을 넣어주거나 아래와 같이 실행해 보자.

Xorg -modulepath /usr/lib/xorg/modules

나의 엑스는 별 이상없이 잘 작동했다. 마우스 휠관련도 이미 수정이 되었고 여타 프로그램들을 열어 보니 모두 잘 실행이 되었다.

마지막 난관은 X의 가속이었는데, 안타깝게도 내가가진 그래픽카드의 사용칩셋이 radeon9700m 이라는 M11칩셋이라 r300 프로젝트에서도 기본 커널 드라이버에서도 또 fglrx에서도 지원이 되지 않았다. fglrx의 경우 6.8.2에서도 -insecure-driver라는 USE값을 주지 않으면 실행이 안되었었는데 xorg7.0에는 위와 같은 값의 USE가 없다. 곧 새로운 버전의 드라이버가 나왔으면 좋겠다.

다른 칩셋을 가지고 있는 젠투유저라면 부담없이 빌드해도 될 것 같다.!!!

원문: 내블로그, http://blog.kashel.net/tt/index.php?pl=141&ct1=2

File attachments: 
첨부파일 크기
Image icon 2005-11-05-1131131075-.jpg550.58 KB
Image icon e17_trans_xcomp.png1 MB
Image icon xcomposite.png731.8 KB

댓글

luark의 이미지

Xorg 7.0에서 ATI RADEON 9700 M 가속성공(dri이용)

Xorg 7.0에서 가속이 안된다고 침울해 있었는데 xorg.conf 삽질을 하다가 드디어 가속이 되는 값을 얻었다 ㅜㅜ

우선 커널에 들어있는 기본 radeon 모듈로는 불가능 하고 r300 모듈을 설치해야 한다.

http://forums.gentoo.org/viewtopic-t-374745-highlight-xorg+eselect+opengl.html

이곳에 잘 정리되어 있으니 따라하기만 해도 설치에는 문제가 없다.

/etc/X11/xorg.conf 은 다음과 같은 부분을 추가해 준다.

# === ATI device section ===

Section "Device"
Identifier "ATI Graphics Adapter"
Driver "radeon"
Option "no_accel" "no"
Option "no_dri" "no"
Option "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mt
Option "Capabilities" "0x00000000"
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "on"
Option "FSAAEnable" "no"
Option "FSAAScale" "1"
Option "FSAADisableGamma" "no"
Option "FSAACustomizeMSPos" "no"
Option "FSAAMSPosX0" "0.000000"
Option "FSAAMSPosY0" "0.000000"
Option "FSAAMSPosX1" "0.000000"
Option "FSAAMSPosY1" "0.000000"
Option "FSAAMSPosX2" "0.000000"
Option "FSAAMSPosY2" "0.000000"
Option "FSAAMSPosX3" "0.000000"
Option "FSAAMSPosY3" "0.000000"
Option "FSAAMSPosX4" "0.000000"
Option "FSAAMSPosY4" "0.000000"
Option "FSAAMSPosX5" "0.000000"
Option "FSAAMSPosY5" "0.000000"
Option "UseInternalAGPGART" "on"
Screen 0
EndSection

삽질을 더 하면 더 나은 값을 얻을 수 있겠지만 일단은 가속이 된다는 것에 만족! 사실 6.8.2에서 fglrx대신 dri를 이용했을 때에도 비슷한 정도의 속도를 얻었었다. fglrx값의 절반 정도라고 생각하면 딱 맞을 듯하다. 자자.. 이제 걱정없이 xorg 7.0 삽질에 들어가도록 하자. ^^ =3=333

원문 : 내블로그, http://blog.kashel.net/tt/index.php?pl=142
이쪽에도 올렸다 : http://forums.gentoo.org/viewtopic-t-374745-postdays-0-postorder-asc-highlight-xorg+eselect+opengl-start-75.html

---

---
키체의 힘으로 당신에게 평안을...

luark의 이미지

드랍쉐도우 적용

http://blog.kashel.net/tt/index.php?pl=143&ct1=2

xorg 7.0을 설치하면서 ati공식 드라이버 사용이 불가능 해졌다. ati공식드라이버에서는 지원하지 않던 composite와 dropshadow를 써보자란 생각에 약간의 삽질 후에 가능하게 되었다.
메인 윈도우 매니져인 fluxbox에서는 지원하지 않는 것인지 계속 깨지거나 잔상이 남았는데 그것도 모르고 계속 플빡에서 삽질을 했다.;;; 그러다가 다른 윈도우매니져는 어떨까 하고 그놈세션을 띄워보니... 한방에 작동하지 않는가 ? ! ㅜㅜ
인라17에서도 모듈로 드랍쉐도우기능을 사용하기는 했지만 창테두리에서만 적용이 되었었는데 xorg7.0에서 xcompmgr을 이용한 것은 메뉴나 새로운 창이 뜨는 경우에 전부 그림자효과가 지원되어서 부담스럽기까지 하다. 그러나 예쁘다! *_*

댓글 첨부 파일: 
첨부파일 크기
Image icon 0바이트

---

---
키체의 힘으로 당신에게 평안을...

luark의 이미지

사용방법은
/etc/X11/xorg.conf 의 device 섹션에 다음을 추가한다. 이 글은 전부 우분투포럼의 팁을 참고했다.

원래문서 : http://ubuntu.or.kr/wiki.php/DropShadows

        Option          "backingstore"          "true"
        Option          "RenderAccel"           "true"

nvidia사용자의 경우 원래 링크에 가면 사용법이 나와 있다.

그리고 xorg.conf의 말미에 다음을 추가한다.

Section "Extensions"
        Option "Composite" "Enable"
        Option "RENDER" "true"
        Option "DAMAGE" "true"
EndSection

그림자 효과를 얻기 위해서는 xcompmgr를 따로 설치해 주어야 한다. 그리고 터미널에서 실험을 해보자.
xcompmgr -c

그림자 효과가 나타나는가?
CTRL+C로 종료하자

투명창 효과도 간단하게 지원한다.

transset
xcompmgr -c -r 10 

그림자와 더불어 투명창 효과가 나타났다. 투명창 효과란 창이 겹칠 경우 윗쪽창을 통과하여 아랫쪽 창까지 보여지는 효과를 말한다. 수정: 투명창 효과는 transset이란 유틸과 결합하여 나타나는 것이다.;;

다시한번 강조하지만 플럭스박스에서는 제대로 지원되지 않는다.
그리고 디바이스 섹션에 다음을 추가하면 속도저하현상이 일어나지 않는다고 하는데, luark의 그래픽카드는 이를 지원하지 않아서 약간의 속도저하가 일어났다. 그러나 xorg6.8.2에서 실험해 봤을 때에 비하면 확연히 빨라진 것을 느낄 수 있었다.

Option "AllowGLXWithComposite" "true"

그외에 투명창 효과를 마우스 휠로 조절하는 방법이 위의 문서에 transset과 xbindkey를 이용한 팁으로 소개되어 있으니 참고하면 좋겠다. 안타깝게도 이 방법은 luark의 시스템에서는 제대로 동작하지 않았다.
댓글 첨부 파일: 
첨부파일 크기
Image icon 0바이트

---

---
키체의 힘으로 당신에게 평안을...

haze11의 이미지

루크님은 삽질쟁이...

ps. 루크님도 겉멋만.. ㅋㅋ

lunarboy의 이미지

emerge x11-drm
명령만으로도 되는 것 같습니다.

무엇보다 좋은 점은 창이 포커스를 가졌지만 일부가 다른 창에 의해 가려진 부분도 볼 수 있다는 것이네요. 올렸다 내렸다 불편했는데 말이죠.

댓글 첨부 파일: 
첨부파일 크기
Image icon 0바이트
luark의 이미지

엇;; 제가 이런 글도 썼었군요;;;;;
요즘 xgl덕분에 투명화가 다시 관심의 대상이 되고 있는데 xcompmgr을 돌려본 경험으로는 느린 것도 느린 것이지만 화면의 가독성이 매우 떨어져서 실제 사용에는 불편이 따른다고 봅니다. 뭐.. 스샷용으로는 멋지지만 말이죠.

---

---
키체의 힘으로 당신에게 평안을...

지리즈의 이미지

gentoo online portage database에서
어젠가 7.0이 빠졌더군요.

본격적으로 나올 움직임이 보는 것인지..
내심기대가 되기도 하지만,
한편 ATI나 Nvidia의 Closed 드라이버가
동작할 때까지 버틸지도 모른다는 생각마저 들기 시작했습니다.

이젠 반쯤 포기한 심정으로 기다리고 있습니다.

drzzang wrote:
무엇보다 좋은 점은 창이 포커스를 가졌지만 일부가 다른 창에 의해 가려진 부분도 볼 수 있다는 것이네요. 올렸다 내렸다 불편했는데 말이죠.

KDE를 사용하는데, 휠로 살짝 움직이며 창이 위로 올라오지 않고,
활성화가 되더군요...

사실, X가 예전 부터 좋은 점은 포커스가 있는창의 zorder가 탑이 아니게 동작할 수 있다는 점이었죠.

luark wrote:
엇;; 제가 이런 글도 썼었군요;;;;;
요즘 xgl덕분에 투명화가 다시 관심의 대상이 되고 있는데 xcompmgr을 돌려본 경험으로는 느린 것도 느린 것이지만 화면의 가독성이 매우 떨어져서 실제 사용에는 불편이 따른다고 봅니다. 뭐.. 스샷용으로는 멋지지만 말이죠.

솔직히 투명한 창들은 별로 부럽지는 않습니다.

다른 것은 안바랍니다.

KDE의 패널의 투명값이라도 제대로 먹어 줬으면 하는 바램으로
기다리고 있습니다.

There is no spoon. Neo from the Matrix 1999.

kspil의 이미지

X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.15-gentoo-r1 i686
Current Operating System: Linux localhost 2.6.15-gentoo-r1 #5 PREEMPT Wed Feb 1 23:14:43 KST 2006 i686
Build Date: 18 February 2006
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 18 09:06:23 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) | |-->Monitor "my monitor"
(**) | |-->Device "my video"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/"
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.8
X.Org XInput driver : 0.5
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2590 card 1584,9050 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2592 card 1584,9800 rev 03 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,2792 card 1584,9800 rev 03 class 03,80,00 hdr 80
(II) PCI: 00:1d:0: chip 8086,2658 card 1584,9050 rev 04 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2659 card 1584,9050 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,265a card 1584,9050 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,265b card 1584,9050 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,265c card 1584,9050 rev 04 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev d4 class 06,04,01 hdr 81
(II) PCI: 00:1e:2: chip 8086,266e card 1584,9060 rev 04 class 04,01,00 hdr 00
(II) PCI: 00:1e:3: chip 8086,266d card 1584,400c rev 04 class 07,03,00 hdr 00
(II) PCI: 00:1f:0: chip 8086,2641 card 1584,9050 rev 04 class 06,01,00 hdr 80
(II) PCI: 00:1f:2: chip 8086,2653 card 1584,9050 rev 04 class 01,01,80 hdr 00
(II) PCI: 00:1f:3: chip 8086,266a card 1584,9050 rev 04 class 0c,05,00 hdr 00
(II) PCI: 01:03:0: chip 8086,4220 card 8086,2702 rev 05 class 02,80,00 hdr 00
(II) PCI: 01:04:0: chip 1217,6972 card b001,0000 rev 40 class 06,07,00 hdr 02
(II) PCI: 01:0a:0: chip 104c,8023 card 1584,7000 rev 00 class 0c,00,10 hdr 00
(II) PCI: 01:0c:0: chip 10ec,8139 card 1584,9700 rev 10 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:30:0), (0,1,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1 0 0x0000b000 - 0x0000b0ff (0x100) IX[B]
[1] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
[2] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
[3] -1 0 0x0000bc00 - 0x0000bcff (0x100) IX[B]
[4] -1 0 0x0000c000 - 0x0000c0ff (0x100) IX[B]
[5] -1 0 0x0000c400 - 0x0000c4ff (0x100) IX[B]
[6] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[7] -1 0 0x0000cc00 - 0x0000ccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xff400000 - 0xffcfffff (0x900000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xbdf00000 - 0xbfefffff (0x2000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 2: bridge is at (1:4:0), (1,2,5), BCTRL: 0x0340 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000b000 - 0x0000b0ff (0x100) IX[B]
[1] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
(--) PCI:*(0:2:0) Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0xffe80000/19, 0xd0000000/28, 0xffe40000/18, I/O @ 0xec00/3
(--) PCI: (0:2:1) Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller rev 3, Mem @ 0x40000000/19
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
[0] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[1] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[2] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[3] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[4] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[5] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[6] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[7] -1 0 0xffe40000 - 0xffe7ffff (0x40000) MX[B](B)
[8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[9] -1 0 0xffe80000 - 0xffefffff (0x80000) MX[B](B)
[10] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[11] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[12] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[13] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[15] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[16] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[17] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[18] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[19] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[20] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) Inactive PCI resource ranges:
[0] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[1] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[2] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[3] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[4] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[5] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[6] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[7] -1 0 0xffe40000 - 0xffe7ffff (0x40000) MX[B](B)
[8] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[9] -1 0 0xffe80000 - 0xffefffff (0x80000) MX[B](B)
[10] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[11] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[12] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[13] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[14] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[15] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[16] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[17] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[18] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[19] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[20] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) Inactive PCI resource ranges after removing overlaps:
[0] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[6] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[7] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[8] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[9] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[10] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[11] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[12] -1 0 0xffe40000 - 0xffe7ffff (0x40000) MX[B](B)
[13] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[14] -1 0 0xffe80000 - 0xffefffff (0x80000) MX[B](B)
[15] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
[16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[19] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[22] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[23] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[24] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[26] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[27] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[28] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[29] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Loading /usr/lib/xorg/modules/extensions/libGLcore.so
(II) Module GLcore: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension GLX
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions/libdri.so
(II) Module dri: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/lib/xorg/modules/linux/libdrm.so
(II) Module drm: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "i810"
(II) Loading /usr/lib/xorg/modules/drivers/i810_drv.so
(II) Module i810: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.4.1
Module class: X.Org Video Driver
ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.3
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "keyboard"
(II) Loading /usr/lib/xorg/modules/input/keyboard_drv.so
(II) Module keyboard: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.5
(II) I810: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100,
i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915),
915GM, 945G
(II) Primary Device is: PCI 00:02:0
(--) Assigning device section with no busID to primary device
(WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found
(--) Chipset 915GM found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[6] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[7] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[8] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[9] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[10] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[11] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[12] -1 0 0xffe40000 - 0xffe7ffff (0x40000) MX[B](B)
[13] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[14] -1 0 0xffe80000 - 0xffefffff (0x80000) MX[B](B)
[15] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
[16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[18] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[19] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[22] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[23] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[24] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[25] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[26] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[27] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[28] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[29] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
(WW) ****INVALID MEM ALLOCATION**** b: 0xffe80000 e: 0xffefffff correcting
(II) NonSys
[0] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[1] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[2] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[3] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[4] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[5] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[6] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[7] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[8] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[13] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[14] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[15] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[16] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[17] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[18] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[19] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[20] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[21] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[22] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[23] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[24] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[25] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[26] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[27] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[28] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) window:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) resSize:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) window fixed:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(WW) ****INVALID MEM ALLOCATION**** b: 0xffe40000 e: 0xffe7ffff correcting
(II) NonSys
[0] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[1] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[2] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[3] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[4] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[5] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[6] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[7] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[8] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[12] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[13] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[14] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[15] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[16] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[17] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[18] -1 0 0x00000000 - 0x00000000 (0x1) IX[B]
[19] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[20] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[21] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[22] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[23] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[24] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[25] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[26] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[27] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[28] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) window:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) resSize:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) window fixed:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) resource ranges after probing:
[0] -1 0 0x40100000 - 0x4013ffff (0x40000) MX[B](B)
[1] -1 0 0x40080000 - 0x400fffff (0x80000) MX[B](B)
[2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[8] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[9] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[10] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[11] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[12] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[13] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[14] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[15] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
[16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[21] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[22] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[23] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[24] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[25] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[26] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[27] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[28] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[29] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[30] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[31] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[32] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
[33] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[34] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.1.0
ABI class: X.Org Video Driver, version 0.8
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/lib/xorg/modules/libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.8
(EE) end of block range 0xffe7ffff < begin 0xfff00000
(EE) end of block range 0xffe7ffff < begin 0xfff00000
(**) I810(0): Depth 24, (--) framebuffer bpp 32
(==) I810(0): RGB weight 888
(==) I810(0): Default visual is TrueColor
(**) I810(0): Option "NoAccel" "false"
(**) I810(0): Option "DRI" "true"
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 16064 kB
(II) I810(0): VESA VBE OEM: Intel(r)915GM/910ML/915MS Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)915GM/910ML/915MS Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Integrated Graphics Chipset: Intel(R) 915GM
(--) I810(0): Chipset: "915GM"
(--) I810(0): Linear framebuffer at 0xD0000000
(--) I810(0): IO registers at addr 0x40080000
(II) I810(0): 2 display pipes available.
(II) I810(0): detected 16124 kB stolen memory.
(II) I810(0): Kernel reported 236800 total, 1 used
(II) I810(0): Checking Available AGP Memory: 947196 kB available (total 947200 kB, used 4 kB)
(II) I810(0): Monitoring connected displays enabled
(--) I810(0): Pre-allocated VideoRAM: 16124 kByte
(**) I810(0): VideoRAM: 16384 kByte
(==) I810(0): video overlay key set to 0x101fe
(**) I810(0): page flipping disabled
(==) I810(0): Using gamma correction (1.0, 1.0, 1.0)
(II) I810(0): BIOS Build: 1214
(II) I810(0): Using new Pipe switch code
(==) I810(0): Device Presence: disabled.
(==) I810(0): Display Info: enabled.
(II) I810(0): Broken BIOSes cause the system to hang here.
If you encounter this problem please add
Option "DisplayInfo" "FALSE"
to the Device section of your XF86Config file.
(II) I810(0): Display Info: CRT: attached: FALSE, present: TRUE, size: (720,400)
(II) I810(0): Display Info: TV: attached: FALSE, present: TRUE, size: (1024,768)
(II) I810(0): Display Info: DFP (digital flat panel): attached: FALSE, present: FALSE, size: (0,2059)
(II) I810(0): Display Info: LFP (local flat panel): attached: TRUE, present: TRUE, size: (1280,800)
(II) I810(0): Display Info: CRT2 (second CRT): attached: FALSE, present: FALSE, size: (0,2059)
(II) I810(0): Display Info: TV2 (second TV): attached: FALSE, present: FALSE, size: (0,2059)
(II) I810(0): Size of device LFP (local flat panel) is 1280 x 800
(II) I810(0): No active displays on Pipe A.
(II) I810(0): Currently active displays on Pipe B:
(II) I810(0): LFP (local flat panel)
(II) I810(0): Lowest common panel size for pipe B is 1280 x 800
(==) I810(0): Display is using Pipe B
(--) I810(0): Maximum frambuffer space: 16216 kByte
(II) I810(0): VESA VBE PanelID read successfully
(II) I810(0): PanelID returned panel resolution : 1280x800
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) I810(0): VESA VBE DDC supported
(II) I810(0): VESA VBE DDC Level none
(II) I810(0): VESA VBE DDC transfer in appr. 0 sec.
(II) I810(0): VESA VBE DDC read failed
(--) I810(0): A non-CRT device is attached to pipe B.
No refresh rate overrides will be attempted.
(--) I810(0): Maximum space available for video modes: 16064 kByte
Mode: 30 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 32 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 34 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 38 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 3a (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 3c (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 1280
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 8
NumberOfBanks: 1
MemoryModel: 4
BankSize: 0
NumberOfImages: 14
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 1280
BnkNumberOfImagePages: 14
LinNumberOfImagePages: 14
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 41 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 43 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 45 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 49 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 4b (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
Mode: 4d (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 2560
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 16
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 7
RedMaskSize: 5
RedFieldPosition: 11
GreenMaskSize: 6
GreenFieldPosition: 5
BlueMaskSize: 5
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 2560
BnkNumberOfImagePages: 7
LinNumberOfImagePages: 7
LinRedMaskSize: 5
LinRedFieldPosition: 11
LinGreenMaskSize: 6
LinGreenFieldPosition: 5
LinBlueMaskSize: 5
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 230000000
*Mode: 50 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 52 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 54 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 58 (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 5a (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
*Mode: 5c (1280x800)
ModeAttributes: 0x9b
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc00071ef
BytesPerScanline: 5120
XResolution: 1280
YResolution: 800
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 2
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xd0000000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 2
LinNumberOfImagePages: 2
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 230000000
Mode: 60 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 61 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 62 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 63 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 64 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 65 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 66 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 67 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 68 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 69 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6a (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6b (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6c (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6d (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6e (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 6f (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 70 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
Mode: 71 (0x0)
ModeAttributes: 0x0
WinAAttributes: 0x0
WinBAttributes: 0x0
WinGranularity: 0
WinSize: 0
WinASegment: 0x0
WinBSegment: 0x0
WinFuncPtr: 0x0
BytesPerScanline: 0
XResolution: 0
YResolution: 0
XCharSize: 0
YCharSize: 0
NumberOfPlanes: 0
BitsPerPixel: 0
NumberOfBanks: 0
MemoryModel: 0
BankSize: 0
NumberOfImages: 0
RedMaskSize: 0
RedFieldPosition: 0
GreenMaskSize: 0
GreenFieldPosition: 0
BlueMaskSize: 0
BlueFieldPosition: 0
RsvdMaskSize: 0
RsvdFieldPosition: 0
DirectColorModeInfo: 0
PhysBasePtr: 0x0
LinBytesPerScanLine: 0
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 0
LinRedFieldPosition: 0
LinGreenMaskSize: 0
LinGreenFieldPosition: 0
LinBlueMaskSize: 0
LinBlueFieldPosition: 0
LinRsvdMaskSize: 0
LinRsvdFieldPosition: 0
MaxPixelClock: 0
(II) I810(0): my monitor: Using hsync range of 28.00-110.00 kHz
(II) I810(0): my monitor: Using vrefresh range of 43.00-90.00 Hz
(II) I810(0): 9720 kBytes additional video memory is required to
enable tiling mode for DRI.
(--) I810(0): Virtual size is 1280x800 (pitch 1280)
(**) I810(0): *Built-in mode "1280x800"
(**) I810(0): Built-in mode "1280x800"
(**) I810(0): Built-in mode "1280x800"
(**) I810(0): Built-in mode "1280x800"
(**) I810(0): Built-in mode "1280x800"
(**) I810(0): Built-in mode "1280x800"
(==) I810(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib/xorg/modules/libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.2.0
ABI class: X.Org Video Driver, version 0.8
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.8
(==) I810(0): VBE Restore workaround: enabled.
(II) Loading sub module "dri"
(II) LoadModule: "dri"
(II) Reloading /usr/lib/xorg/modules/extensions/libdri.so
(II) UnloadModule: "dri"
(II) I810: Failed to load module "dri" (already loaded, 0)
(II) Loading sub module "shadow"
(II) LoadModule: "shadow"
(II) Loading /usr/lib/xorg/modules/libshadow.so
(II) Module shadow: vendor="X.Org Foundation"
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(==) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MS[B]
[1] 0 0 0xffe80000 - 0xffefffff (0x80000) MS[B]
[2] -1 0 0x40100000 - 0x4013ffff (0x40000) MX[B](B)
[3] -1 0 0x40080000 - 0x400fffff (0x80000) MX[B](B)
[4] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[5] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[6] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[7] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[8] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[9] -1 0 0xffcffc00 - 0xffcffcff (0x100) MX[B]
[10] -1 0 0xffcf8000 - 0xffcfbfff (0x4000) MX[B]
[11] -1 0 0xffcff000 - 0xffcff7ff (0x800) MX[B]
[12] -1 0 0xffcfe000 - 0xffcfefff (0x1000) MX[B]
[13] -1 0 0xffe3f800 - 0xffe3f8ff (0x100) MX[B]
[14] -1 0 0xffe3fc00 - 0xffe3fdff (0x200) MX[B]
[15] -1 0 0xffe3f400 - 0xffe3f7ff (0x400) MX[B]
[16] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
[17] -1 0 0x40000000 - 0x4007ffff (0x80000) MX[B](B)
[18] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[19] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[20] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[21] 0 0 0x0000ec00 - 0x0000ec07 (0x8) IS[B]
[22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[23] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[24] -1 0 0x0000c800 - 0x0000c8ff (0x100) IX[B]
[25] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
[26] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[27] -1 0 0x0000e480 - 0x0000e4ff (0x80) IX[B]
[28] -1 0 0x0000e800 - 0x0000e8ff (0x100) IX[B]
[29] -1 0 0x0000e400 - 0x0000e43f (0x40) IX[B]
[30] -1 0 0x0000e000 - 0x0000e0ff (0x100) IX[B]
[31] -1 0 0x0000dc00 - 0x0000dc1f (0x20) IX[B]
[32] -1 0 0x0000d880 - 0x0000d89f (0x20) IX[B]
[33] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
[34] -1 0 0x0000d480 - 0x0000d49f (0x20) IX[B]
[35] -1 0 0x0000ec00 - 0x0000ec07 (0x8) IX[B](B)
[36] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[37] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/lib/xorg/modules/libint10.so
(II) I810(0): initializing int10
(WW) I810(0): Bad V_BIOS checksum
(II) I810(0): Primary V_BIOS segment is: 0xc000
(II) I810(0): VESA BIOS detected
(II) I810(0): VESA VBE Version 3.0
(II) I810(0): VESA VBE Total Mem: 16064 kB
(II) I810(0): VESA VBE OEM: Intel(r)915GM/910ML/915MS Graphics Chip Accelerated VGA BIOS
(II) I810(0): VESA VBE OEM Software Rev: 1.0
(II) I810(0): VESA VBE OEM Vendor: Intel Corporation
(II) I810(0): VESA VBE OEM Product: Intel(r)915GM/910ML/915MS Graphics Controller
(II) I810(0): VESA VBE OEM Product Rev: Hardware Version 0.0
(II) I810(0): Allocated 128 kB for the ring buffer at 0x0
(II) I810(0): Allocating at least 256 scanlines for pixmap cache
(II) I810(0): Initial framebuffer allocation size: 5280 kByte
(II) I810(0): Allocated 4 kB for HW cursor at 0xffff000 (0x375e3000)
(II) I810(0): Allocated 16 kB for HW (ARGB) cursor at 0xfffb000 (0x37b94000)
(II) I810(0): Allocated 4 kB for Overlay registers at 0xfffa000 (0x375e0000).
(II) I810(0): Allocated 64 kB for the scratch buffer at 0xffea000
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: open result is -1, (No such device or address)
drmOpenDevice: Open failed
drmOpenByBusid: Searching for BusID pci:0000:00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 7, (OK)
drmOpenByBusid: drmOpenMinor returns 7
drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
(II) I810(0): [drm] loaded kernel module for "i915" driver
(II) I810(0): [drm] DRM interface version 1.2
(II) I810(0): [drm] created "i915" driver at busid "pci:0000:00:02.0"
(II) I810(0): [drm] added 8192 byte SAREA at 0xf8a25000
(II) I810(0): [drm] mapped SAREA 0xf8a25000 to 0xb7f17000
(II) I810(0): [drm] framebuffer handle = 0xd0020000
(II) I810(0): [drm] added 1 reserved context for kernel
(II) I810(0): Allocated 4000 kB for the back buffer at 0xbd7000.
(II) I810(0): Allocated 4000 kB for the depth buffer at 0x7ef000.
(II) I810(0): Allocated 32 kB for the logical context at 0xffe2000.
(II) I810(0): Allocated 2848 kB for textures at 0x548000
(II) I810(0): Updated framebuffer allocation size from 5280 to 5285 kByte
(II) I810(0): Updated pixmap cache from 256 scanlines to 257 scanlines
(II) I810(0): 0x823453c: Memory at offset 0x00020000, size 5285 kBytes
(II) I810(0): 0x8237678: Memory at offset 0x0ffff000, size 4 kBytes
(II) I810(0): 0x82376a0: Memory at offset 0x0fffb000, size 16 kBytes
(II) I810(0): 0x8234ccc: Memory at offset 0x00000000, size 128 kBytes
(II) I810(0): 0x823457c: Memory at offset 0x0ffea000, size 64 kBytes
(II) I810(0): 0x82376c8: Memory at offset 0x0fffa000, size 4 kBytes
(II) I810(0): 0x82345cc: Memory at offset 0x00bd7000, size 4000 kBytes
(II) I810(0): 0x82345ec: Memory at offset 0x007ef000, size 4000 kBytes
(II) I810(0): 0x823462c: Memory at offset 0x0ffe2000, size 32 kBytes
(II) I810(0): 0x823460c: Memory at offset 0x00548000, size 2848 kBytes
(II) I810(0): I830SetupMemoryTiling: Not tileable 0x1400
(II) I810(0): [drm] Registers = 0x40080000
(II) I810(0): [drm] Back Buffer = 0xd0bd7000
(II) I810(0): [drm] Depth Buffer = 0xd07ef000
(II) I810(0): [drm] ring buffer = 0xd0000000
(II) I810(0): [drm] textures = 0xd0548000
(II) I810(0): [drm] dma control initialized, using IRQ 10
(II) I810(0): [drm] Initialized kernel agp heap manager, 2916352
(II) I810(0): [dri] visual configs initialized
(II) I810(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(WW) I810(0): Extended BIOS function 0x5f05 failed.
(II) I810(0): xf86BindGARTMemory: bind key 5 at 0x00fbf000 (pgoffset 4031)
(II) I810(0): xf86BindGARTMemory: bind key 0 at 0x0ffff000 (pgoffset 65535)
(II) I810(0): xf86BindGARTMemory: bind key 1 at 0x0fffb000 (pgoffset 65531)
(II) I810(0): xf86BindGARTMemory: bind key 3 at 0x0ffea000 (pgoffset 65514)
(II) I810(0): xf86BindGARTMemory: bind key 2 at 0x0fffa000 (pgoffset 65530)
(II) I810(0): xf86BindGARTMemory: bind key 4 at 0x0ffe2000 (pgoffset 65506)
(WW) I810(0): PGTBL_ER is 0xffffffff
(WW) I810(0): PRB0_CTL (0xffffffff) indicates ring buffer enabled
(WW) I810(0): PRB0_HEAD (0xffffffff) and PRB0_TAIL (0xffffffff) indicate ring buffer not flushed
(II) I810(0): Display plane A is enabled and connected to Pipe B.
(II) I810(0): Display plane B is enabled and connected to Pipe B.
(II) I810(0): Enabling plane B.
(II) I810(0): Display plane A is now disabled and connected to Pipe B.
(II) I810(0): Display plane B is now enabled and connected to Pipe B.
(II) I810(0): PIPEACONF is 0xffffffff
(II) I810(0): PIPEBCONF is 0xffffffff
(WW) I810(0): Correcting plane B stride (1073741823 -> 1280)
(II) I810(0): Mode bandwidth is 61 Mpixel/s
(II) I810(0): maxBandwidth is 1088 Mbyte/s, pipe bandwidths are 96 Mbyte/s, 0 Mbyte/s
(II) I810(0): Using XFree86 Acceleration Architecture (XAA)
Screen to screen bit blits
Solid filled rectangles
8x8 mono pattern filled rectangles
Indirect CPU to Screen color expansion
Solid Horizontal and Vertical Lines
Offscreen Pixmaps
Setting up tile and stipple cache:
20 128x128 slots
(==) I810(0): Backing store disabled
(==) I810(0): Silken mouse enabled
(II) I810(0): Initializing HW Cursor
(WW) I810(0): Disabling XVideo output because Pipe B is in double-wide mode.
(II) I810(0): X context handle = 0x1
(II) I810(0): [drm] installed DRM signal handler
(II) I810(0): [DRI] installation complete
(II) I810(0): direct rendering: Enabled

*** If unresolved symbols were reported above, they m

wfellow의 이미지

헉쓰,... 에러내용을 적은 부분이 너무 길어요,.. 파일로 첨부를 하시지.
왜 그랬어요~ 전엔 안 그러셨잖아요~..

-----[꼬릿말 절취선 시작]-----
삽질전에 먼저 구글신께 기도하자.
-----[꼬릿말 절취선 끝]-----

kspil의 이미지

그런데, 글을 어떻게 지워야 할지 모르겠어요~

ㅡ.ㅡ;;;; (먼산) =3

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.