startx + .xinitrc

kerasi

Well-Known Member
guten Abend zusammen

jetzt wo ich weiß das ich per Displayport keine X zum starten bekomme wollte ich wissen wie denn meine .xinitrc ausshen muss damit ich mit startx die richtige Auflösung von 1920x1200 bekomme.

ich hatte unter archlinux diese .xinitrc wie müßte sie denn unter OpenBSD aussehen?

Code:
#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

#virtual desktop:
#xrandr --output LVDS1 --auto --output DP2 --auto --right-of LVDS1

#when not docked:
#xrandr --output LVDS1 --auto --output DP2 --off

#docked with NEC:
xrandr --output DP2 --auto --output LVDS1 --off

#when not docked:
#xrandr --output LVDS1 --auto --DP2 --off

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice

xcompmgr -c &
exec openbox-session

es sollten die 3 Möglichkeiten da sein einmal wenn ich das Laptop mitnehme und ich kein externen Monitor anschließe und dann wenn ich daheim bin und meinem 24 Zoll NEC anschließe, und als letztes wenn ich einen großen Virtuellen Bildschirm möchte.

Im moment ist ja fvwm installiertwie würde die .xinitrc aussehen?

ich werde vielleicht openbox oder mal wi3 probieren desktop envirenment möchte ich nicht haben
 
Modifizierst Du die .xinitrc je nach dem, was Du gerade angeschlossen hast? Das klingt für mich in jedem Fall "falsch". Also ich hab in /etc/X11/xorg.conf einfach mehrere Layouts, welche ich mittels startx starte, je nach dem, was ich gerade haben möchte. Weiß nicht, was Dein if-Zweig dort tut, da ich das Verzeichnis/Daemon unter FreeBSD nicht besitze, aber im Kern steht bei mir nichts weiter als "exec openbox" in meiner .xinitrc.
 
Zuletzt bearbeitet:
@wasp: doch, genau dafuer ist das xrandr eingefuehrt worden.
ich weiss nicht ob xrandr auch unter openbsd seinen dienst tut, aber auf meinem arbeits linux habe ich das benutzt um die reihenfolge der monitore zu vertausen. (weil ich DAEMLICHERWEISE keine schreibrechte auf die xorg.conf bekommen darf :grumble:)

@kerasi: ich hab das gerade ergoogelt, aber noch nicht gelesen. vielleicht hilft es dir ja!
http://www.thinkwiki.org/wiki/Xorg_RandR_1.2
 
Soweit ich weiß, wurde xrandr eingeführt, um das dynamisch ändern zu können, nicht um dann jedes mal in der .xinitrc rumzukritzeln. ;)
 
@wasp

ich habe kein freebsd ich habe openbsd

wie sollte meine /etc/X11/xorg.conf aussehen?

ich würde es auch gerne so haben nicht immer die .xinitrc ändern zu müssen

ps:ich habe jetzt meinen NEC Monitor per DVI angeschlossen bis vieleleicht mal Displayport funktioniert
 
so jetzt habe ich was gefunden genauso würde ich es haben wollen

wenn der externe monitor angeschlossen ist und das laptop display auch offen ist ---> dann extended
wenn der externe monitor angeschlossen ist und das laptop display zu ist > anzeige nur der externe
wenn der externe monitor nicht angeschlossen ist > dann nur laptop monitor

wie müsste da die .xinitrc aussehen oder gäbe es da einen anderen weg?

so sieht meine xrandr aus mit angeschlossenem externen Monitor

Code:
Screen 0: minimum 320 x 200, current 1600 x 900, maximum 4096 x 4096
VGA disconnected (normal left inverted right x axis y axis)
LVDS connected 1600x900+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1600x900       60.0*+   40.0  
HDMI-3 disconnected (normal left inverted right x axis y axis)
HDMI-4 disconnected (normal left inverted right x axis y axis)
HDMI-5 connected 1440x900+0+0 (normal left inverted right x axis y axis) 518mm x 324mm
   1920x1200      60.0 +
   1600x1200      60.0  
   1680x1050      59.9  
   1400x1050      59.9  
   1280x1024      75.0     60.0  
   1440x900       59.9* 
   1366x768       59.8  
   1152x864       75.0  
   1280x720       60.0  
   1024x768       75.0     70.1     60.0  
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   640x480        75.0     72.8     66.7     59.9  
   720x400        70.1

ich habe dieses script gefunden wie müsste ich es denn anpassen damit es bei mir geht?
hier steht wie man es benutzen sollte

http://betabug.ch/blogs/bsdcow/46

Code:
#!/bin/sh

# TODO: handle HDMI-3 / 4 / 5

case "$1" in
"mirror")
    xrandr --output VGA --same-as LVDS
    ;;
"external")
    xrandr --output LVDS --off --output VGA --auto
    ;;
"off")
    # external monitor is off, internal on
    xrandr --output LVDS --auto --output VGA --off
    ;;
"right")
    xrandr --output VGA --auto --right-of LVDS
    ;;
"left")
    xrandr --output VGA --auto --left-of LVDS
    ;;
*)
    # default fall through ...
    # external monitor is off, internal on
    xrandr --output LVDS --auto --output VGA --off
    ;;
esac

ps: die specs des Monitors

Horizontalfrequenz [kHz] 31,5 - 93,8 und 118,4 (analog); 31,5 - 91,1 und 118,4 (digital)
Bildfrequenz [Hz] 50 - 85
Optimale Auflösung 1920 x 1200 bei 60 Hz
 
Zuletzt bearbeitet:
diese sachen helfen leider nicht...
poste doch nochmal bitte die ausgabe von der dmesg, dein /var/log/Xorg.0.log , und die xorg.conf.new die er anlegt wenn du X -configure startest.

deine .xinitrc ruft wie schon erwaehnt, die xrandr geschichten auf, damit kenne ich mich persoenlich auch ueberhaupt nicht aus.
les dich doch bitte mal darueber schlau, dann wirst du dem naechsten auch helfen koennen.

meine .xinitrc sieht uebrigens so aus:
Code:
#!/bin/bash
export LANG=C

Esetroot -scale background.jpg
gkrellm -g +0+0 &
oclock -geometry +0-0 &
xrandr --output DVI0 --right-of VGA0
exec bash -i -c icewm

in meiner /var/log/Xorg.0.log steht zum beispiel auch die zeile:
Code:
[    64.398] (--) NV(0): Trying load detection on VGA0 ... found one!
und
Code:
[    64.463] (II) NV(0): Output DVI0 connected
 
so hier meine

dmesg
Code:
OpenBSD 5.3 (GENERIC) #49: Fri Mar  1 09:06:56 MST 2013
    deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC
real mem = 17056788480 (16266MB)
avail mem = 16580284416 (15812MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.6 @ 0xdae9c000 (67 entries)
bios0: vendor LENOVO version "83ET69WW (1.39 )" date 03/26/2012
bios0: LENOVO 4180MBU
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SLIC SSDT SSDT SSDT HPET APIC MCFG ECDT ASF! TCPA SSDT SSDT UEFI UEFI UEFI
acpi0: wakeup devices LID_(S3) SLPB(S3) IGBE(S4) EXP4(S4) EHC1(S3) EHC2(S3) HDEF(S4)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2591.91 MHz
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: apic clock running at 99MHz
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63
acpiec0 at acpi0
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (PEG_)
acpiprt2 at acpi0: bus 2 (EXP1)
acpiprt3 at acpi0: bus 3 (EXP2)
acpiprt4 at acpi0: bus 5 (EXP4)
acpiprt5 at acpi0: bus 13 (EXP5)
acpicpu0 at acpi0: C3, C1, PSS
acpipwrres0 at acpi0: PUBS
acpitz0 at acpi0: critical temperature is 98 degC
acpibtn0 at acpi0: LID_
acpibtn1 at acpi0: SLPB
acpibat0 at acpi0: BAT0 not present
acpibat1 at acpi0: BAT1 not present
acpiac0 at acpi0: AC unit online
acpithinkpad0 at acpi0
cpu0: Enhanced SpeedStep 2591 MHz: speeds: 2601, 2600, 2400, 2200, 2000, 1800, 1600, 1400, 1200, 1000, 800 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 2G Host" rev 0x09
vga1 at pci0 dev 2 function 0 "Intel HD Graphics 3000" rev 0x09
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
intagp0 at vga1
agp0 at intagp0: aperture at 0xe0000000, size 0x10000000
inteldrm0 at vga1: apic 2 int 16
drm0 at inteldrm0
"Intel 6 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 6 Series KT" rev 0x04: ports: 1 com
com2 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com2: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address 00:21:cc:49:fc:72
ehci0 at pci0 dev 26 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 16
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 6 Series HD Audio" rev 0x04: msi
azalia0: codecs: Conexant/0x506e, Conexant/0x2c06, Intel/0x2805, using Conexant/0x506e
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 6 Series PCIE" rev 0xb4: msi
pci1 at ppb0 bus 2
ppb1 at pci0 dev 28 function 1 "Intel 6 Series PCIE" rev 0xb4: msi
pci2 at ppb1 bus 3
iwn0 at pci2 dev 0 function 0 "Intel Centrino Advanced-N 6205" rev 0x34: msi, MIMO 2T2R, MoW, address a0:88:b4:06:ab:78
ppb2 at pci0 dev 28 function 3 "Intel 6 Series PCIE" rev 0xb4: msi
pci3 at ppb2 bus 5
ppb3 at pci0 dev 28 function 4 "Intel 6 Series PCIE" rev 0xb4: msi
pci4 at ppb3 bus 13
sdhc0 at pci4 dev 0 function 0 "Ricoh 5U823 SD/MMC" rev 0x05: apic 2 int 16
sdmmc0 at sdhc0
ehci1 at pci0 dev 29 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 23
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM67 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 6 Series AHCI" rev 0x04: msi, AHCI 1.3
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: <ATA, HITACHI HTS72503, PC3Z> SCSI3 0/direct fixed naa.5000cca645db645d
sd0: 305245MB, 512 bytes/sector, 625142448 sectors
cd0 at scsibus0 targ 1 lun 0: <HL-DT-ST, DVDRAM GT33N, LT20> ATAPI 5/cdrom removable
ichiic0 at pci0 dev 31 function 3 "Intel 6 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x50: 8GB DDR3 SDRAM PC3-10600 SO-DIMM
spdmem1 at iic0 addr 0x51: 8GB DDR3 SDRAM PC3-10600 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
wsmouse1 at pms0 mux 0
pms0: Synaptics touchpad, firmware 7.2
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
aps0 at isa0 port 0x1600/31
mtrr: Pentium Pro MTRR support
uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhidev0 at uhub2 port 2 configuration 1 interface 0 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 variable keys, 6 key codes
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub2 port 2 configuration 1 interface 1 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev1: iclass 3/0, 3 report ids
uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0
uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0
uhid2 at uhidev1 reportid 3: input=0, output=8, feature=0
uhidev2 at uhub2 port 2 configuration 1 interface 2 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev2: iclass 3/1
ums0 at uhidev2: 5 buttons, Z dir
wsmouse2 at ums0 mux 0
ugen0 at uhub2 port 3 "UPEK Biometric Coprocessor" rev 1.01/0.02 addr 4
ugen1 at uhub2 port 4 "Broadcom Corp Broadcom Bluetooth Device" rev 2.00/7.48 addr 5
uhub3 at uhub2 port 5 "Lenovo product 0x100a" rev 2.00/0.00 addr 6
uvideo0 at uhub2 port 6 configuration 1 interface 0 "Chicony Electronics Co., Ltd. Integrated Camera" rev 2.00/7.51 addr 7
video0 at uvideo0
uhub4 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhidev3 at uhub4 port 2 configuration 1 interface 0 "Logitech USB-PS/2 Optical Mouse" rev 2.00/22.00 addr 3
uhidev3: iclass 3/1
ums1 at uhidev3: 8 buttons, Z dir
wsmouse3 at ums1 mux 0
vscsi0 at root
scsibus1 at vscsi0: 256 targets
softraid0 at root
scsibus2 at softraid0: 256 targets
root on sd0a (78c178379ddc8220.a) swap on sd0b dump on sd0b
WARNING: / was not properly unmounted
umass0 at uhub2 port 1 configuration 1 interface 0 "Generic Flash Disk" rev 2.00/1.00 addr 8
umass0: using SCSI over Bulk-Only
scsibus3 at umass0: 2 targets, initiator 0
sd1 at scsibus3 targ 1 lun 0: <Generic, Flash Disk, 5.00> SCSI2 0/direct removable serial.1e3d2095360200762504
sd1: 8036MB, 512 bytes/sector, 16457728 sectors

Xorg.0.log
Code:
[   583.819] 
X.Org X Server 1.12.3
Release Date: 2012-07-09
[   583.820] X Protocol Version 11, Revision 0
[   583.820] Build Operating System: OpenBSD 5.3 amd64 
[   583.820] Current Operating System: OpenBSD puffy.my.domain 5.3 GENERIC#49 amd64
[   583.820] Build Date: 27 February 2013  04:27:07PM
[   583.820]  
[   583.820] Current version of pixman: 0.28.0
[   583.820] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   583.820] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   583.820] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Mar 18 12:07:33 2013
[   583.820] (II) Loader magic: 0x1671c42b53e0
[   583.820] (II) Module ABI versions:
[   583.820] 	X.Org ANSI C Emulation: 0.4
[   583.820] 	X.Org Video Driver: 12.0
[   583.820] 	X.Org XInput driver : 16.0
[   583.820] 	X.Org Server Extension : 6.0
[   583.828] (--) checkDevMem: using aperture driver /dev/xf86
[   583.828] (--) PCI:*(0:0:2:0) 8086:0126:17aa:21ce rev 9, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64
[   583.828] List of video drivers:
[   583.828] 	apm
[   583.828] 	ark
[   583.828] 	ati
[   583.828] 	chips
[   583.828] 	cirrus
[   583.828] 	dummy
[   583.829] 	glint
[   583.829] 	i128
[   583.829] 	intel
[   583.829] 	mach64
[   583.829] 	mga
[   583.829] 	neomagic
[   583.829] 	nv
[   583.829] 	openchrome
[   583.829] 	r128
[   583.829] 	radeon
[   583.829] 	rendition
[   583.829] 	s3
[   583.829] 	s3virge
[   583.829] 	savage
[   583.829] 	siliconmotion
[   583.829] 	sis
[   583.829] 	tdfx
[   583.829] 	trident
[   583.829] 	tseng
[   583.829] 	wsudl
[   583.829] 	wsudl
[   583.829] 	vmware
[   583.829] 	vesa
[   583.829] (II) LoadModule: "apm"
[   583.829] (II) Loading /usr/X11R6/lib/modules/drivers/apm_drv.so
[   583.829] (II) Module apm: vendor="X.Org Foundation"
[   583.829] 	compiled for 1.12.3, module version = 1.2.5
[   583.829] 	Module class: X.Org Video Driver
[   583.829] 	ABI class: X.Org Video Driver, version 12.0
[   583.829] (II) LoadModule: "ark"
[   583.829] (II) Loading /usr/X11R6/lib/modules/drivers/ark_drv.so
[   583.829] (II) Module ark: vendor="X.Org Foundation"
[   583.829] 	compiled for 1.12.3, module version = 0.7.5
[   583.829] 	Module class: X.Org Video Driver
[   583.829] 	ABI class: X.Org Video Driver, version 12.0
[   583.829] (II) LoadModule: "ati"
[   583.829] (II) Loading /usr/X11R6/lib/modules/drivers/ati_drv.so
[   583.830] (II) Module ati: vendor="X.Org Foundation"
[   583.830] 	compiled for 1.12.3, module version = 6.14.6
[   583.830] 	Module class: X.Org Video Driver
[   583.830] 	ABI class: X.Org Video Driver, version 12.0
[   583.830] (II) LoadModule: "chips"
[   583.830] (II) Loading /usr/X11R6/lib/modules/drivers/chips_drv.so
[   583.830] (II) Module chips: vendor="X.Org Foundation"
[   583.830] 	compiled for 1.12.3, module version = 1.2.5
[   583.830] 	Module class: X.Org Video Driver
[   583.830] 	ABI class: X.Org Video Driver, version 12.0
[   583.830] (II) LoadModule: "cirrus"
[   583.830] (II) Loading /usr/X11R6/lib/modules/drivers/cirrus_drv.so
[   583.830] (II) Module cirrus: vendor="X.Org Foundation"
[   583.830] 	compiled for 1.12.3, module version = 1.5.1
[   583.830] 	Module class: X.Org Video Driver
[   583.830] 	ABI class: X.Org Video Driver, version 12.0
[   583.830] (II) LoadModule: "dummy"
[   583.830] (II) Loading /usr/X11R6/lib/modules/drivers/dummy_drv.so
[   583.830] (II) Module dummy: vendor="X.Org Foundation"
[   583.830] 	compiled for 1.12.3, module version = 0.3.6
[   583.830] 	Module class: X.Org Video Driver
[   583.830] 	ABI class: X.Org Video Driver, version 12.0
[   583.830] (II) LoadModule: "glint"
[   583.830] (II) Loading /usr/X11R6/lib/modules/drivers/glint_drv.so
[   583.831] (II) Module glint: vendor="X.Org Foundation"
[   583.831] 	compiled for 1.12.3, module version = 1.2.8
[   583.831] 	Module class: X.Org Video Driver
[   583.831] 	ABI class: X.Org Video Driver, version 12.0
[   583.831] (II) LoadModule: "i128"
[   583.831] (II) Loading /usr/X11R6/lib/modules/drivers/i128_drv.so
[   583.831] (II) Module i128: vendor="X.Org Foundation"
[   583.831] 	compiled for 1.12.3, module version = 1.3.6
[   583.831] 	Module class: X.Org Video Driver
[   583.831] 	ABI class: X.Org Video Driver, version 12.0
[   583.831] (II) LoadModule: "intel"
[   583.831] (II) Loading /usr/X11R6/lib/modules/drivers/intel_drv.so
[   583.832] (II) Module intel: vendor="X.Org Foundation"
[   583.832] 	compiled for 1.12.3, module version = 2.12.0
[   583.832] 	Module class: X.Org Video Driver
[   583.832] 	ABI class: X.Org Video Driver, version 12.0
[   583.832] (II) LoadModule: "mach64"
[   583.832] (II) Loading /usr/X11R6/lib/modules/drivers/mach64_drv.so
[   583.832] (II) Module mach64: vendor="X.Org Foundation"
[   583.832] 	compiled for 1.12.3, module version = 6.9.4
[   583.832] 	Module class: X.Org Video Driver
[   583.832] 	ABI class: X.Org Video Driver, version 12.0
[   583.832] (II) LoadModule: "mga"
[   583.832] (II) Loading /usr/X11R6/lib/modules/drivers/mga_drv.so
[   583.833] (II) Module mga: vendor="X.Org Foundation"
[   583.833] 	compiled for 1.12.3, module version = 1.6.2
[   583.833] 	Module class: X.Org Video Driver
[   583.833] 	ABI class: X.Org Video Driver, version 12.0
[   583.833] (II) LoadModule: "neomagic"
[   583.833] (II) Loading /usr/X11R6/lib/modules/drivers/neomagic_drv.so
[   583.833] (II) Module neomagic: vendor="X.Org Foundation"
[   583.833] 	compiled for 1.12.3, module version = 1.2.7
[   583.833] 	Module class: X.Org Video Driver
[   583.833] 	ABI class: X.Org Video Driver, version 12.0
[   583.833] (II) LoadModule: "nv"
[   583.833] (II) Loading /usr/X11R6/lib/modules/drivers/nv_drv.so
[   583.833] (II) Module nv: vendor="X.Org Foundation"
[   583.833] 	compiled for 1.12.3, module version = 2.1.20
[   583.833] 	Module class: X.Org Video Driver
[   583.833] 	ABI class: X.Org Video Driver, version 12.0
[   583.833] (II) LoadModule: "openchrome"
[   583.833] (II) Loading /usr/X11R6/lib/modules/drivers/openchrome_drv.so
[   583.834] (II) Module openchrome: vendor="http://openchrome.org/"
[   583.834] 	compiled for 1.12.3, module version = 0.2.906
[   583.834] 	Module class: X.Org Video Driver
[   583.834] 	ABI class: X.Org Video Driver, version 12.0
[   583.834] (II) LoadModule: "r128"
[   583.834] (II) Loading /usr/X11R6/lib/modules/drivers/r128_drv.so
[   583.834] (II) Module r128: vendor="X.Org Foundation"
[   583.834] 	compiled for 1.12.3, module version = 6.9.1
[   583.834] 	Module class: X.Org Video Driver
[   583.834] 	ABI class: X.Org Video Driver, version 12.0
[   583.834] (II) LoadModule: "radeon"
[   583.834] (II) Loading /usr/X11R6/lib/modules/drivers/radeon_drv.so
[   583.834] (II) Module radeon: vendor="X.Org Foundation"
[   583.834] 	compiled for 1.12.3, module version = 6.14.6
[   583.834] 	Module class: X.Org Video Driver
[   583.834] 	ABI class: X.Org Video Driver, version 12.0
[   583.834] (II) LoadModule: "rendition"
[   583.835] (II) Loading /usr/X11R6/lib/modules/drivers/rendition_drv.so
[   583.835] (II) Module rendition: vendor="X.Org Foundation"
[   583.835] 	compiled for 1.12.3, module version = 4.2.5
[   583.835] 	Module class: X.Org Video Driver
[   583.835] 	ABI class: X.Org Video Driver, version 12.0
[   583.835] (II) LoadModule: "s3"
[   583.835] (II) Loading /usr/X11R6/lib/modules/drivers/s3_drv.so
[   583.835] (II) Module s3: vendor="X.Org Foundation"
[   583.835] 	compiled for 1.12.3, module version = 0.6.5
[   583.835] 	Module class: X.Org Video Driver
[   583.835] 	ABI class: X.Org Video Driver, version 12.0
[   583.835] (II) LoadModule: "s3virge"
[   583.835] (II) Loading /usr/X11R6/lib/modules/drivers/s3virge_drv.so
[   583.835] (II) Module s3virge: vendor="X.Org Foundation"
[   583.835] 	compiled for 1.12.3, module version = 1.10.6
[   583.835] 	Module class: X.Org Video Driver
[   583.835] 	ABI class: X.Org Video Driver, version 12.0
[   583.835] (II) LoadModule: "savage"
[   583.836] (II) Loading /usr/X11R6/lib/modules/drivers/savage_drv.so
[   583.836] (II) Module savage: vendor="X.Org Foundation"
[   583.836] 	compiled for 1.12.3, module version = 2.3.6
[   583.836] 	Module class: X.Org Video Driver
[   583.836] 	ABI class: X.Org Video Driver, version 12.0
[   583.836] (II) LoadModule: "siliconmotion"
[   583.836] (II) Loading /usr/X11R6/lib/modules/drivers/siliconmotion_drv.so
[   583.836] (II) Module siliconmotion: vendor="X.Org Foundation"
[   583.836] 	compiled for 1.12.3, module version = 1.7.7
[   583.836] 	Module class: X.Org Video Driver
[   583.836] 	ABI class: X.Org Video Driver, version 12.0
[   583.836] (II) LoadModule: "sis"
[   583.837] (II) Loading /usr/X11R6/lib/modules/drivers/sis_drv.so
[   583.837] (II) Module sis: vendor="X.Org Foundation"
[   583.837] 	compiled for 1.12.3, module version = 0.10.7
[   583.837] 	Module class: X.Org Video Driver
[   583.837] 	ABI class: X.Org Video Driver, version 12.0
[   583.837] (II) LoadModule: "tdfx"
[   583.837] (II) Loading /usr/X11R6/lib/modules/drivers/tdfx_drv.so
[   583.837] (II) Module tdfx: vendor="X.Org Foundation"
[   583.837] 	compiled for 1.12.3, module version = 1.4.5
[   583.837] 	Module class: X.Org Video Driver
[   583.837] 	ABI class: X.Org Video Driver, version 12.0
[   583.837] (II) LoadModule: "trident"
[   583.837] (II) Loading /usr/X11R6/lib/modules/drivers/trident_drv.so
[   583.838] (II) Module trident: vendor="X.Org Foundation"
[   583.838] 	compiled for 1.12.3, module version = 1.3.6
[   583.838] 	Module class: X.Org Video Driver
[   583.838] 	ABI class: X.Org Video Driver, version 12.0
[   583.838] (II) LoadModule: "tseng"
[   583.838] (II) Loading /usr/X11R6/lib/modules/drivers/tseng_drv.so
[   583.838] (II) Module tseng: vendor="X.Org Foundation"
[   583.838] 	compiled for 1.12.3, module version = 1.1.0
[   583.838] 	Module class: X.Org Video Driver
[   583.838] 	ABI class: X.Org Video Driver, version 12.0
[   583.838] (II) LoadModule: "wsudl"
[   583.838] (II) Loading /usr/X11R6/lib/modules/drivers/wsudl_drv.so
[   583.838] (II) Module wsudl: vendor="X.Org Foundation"
[   583.838] 	compiled for 1.12.3, module version = 0.2.2
[   583.838] 	ABI class: X.Org Video Driver, version 12.0
[   583.838] (II) LoadModule: "wsudl"
[   583.839] (II) Loading /usr/X11R6/lib/modules/drivers/wsudl_drv.so
[   583.839] (II) Module wsudl: vendor="X.Org Foundation"
[   583.839] 	compiled for 1.12.3, module version = 0.2.2
[   583.839] 	ABI class: X.Org Video Driver, version 12.0
[   583.839] (II) UnloadModule: "wsudl"
[   583.839] (II) Unloading wsudl
[   583.839] (II) Failed to load module "wsudl" (already loaded, 5984)
[   583.839] (II) LoadModule: "vmware"
[   583.839] (II) Loading /usr/X11R6/lib/modules/drivers/vmware_drv.so
[   583.839] (II) Module vmware: vendor="X.Org Foundation"
[   583.839] 	compiled for 1.12.3, module version = 12.0.99
[   583.839] 	Module class: X.Org Video Driver
[   583.839] 	ABI class: X.Org Video Driver, version 12.0
[   583.839] (II) LoadModule: "vesa"
[   583.840] (II) Loading /usr/X11R6/lib/modules/drivers/vesa_drv.so
[   583.840] (II) Module vesa: vendor="X.Org Foundation"
[   583.840] 	compiled for 1.12.3, module version = 2.3.2
[   583.840] 	Module class: X.Org Video Driver
[   583.840] 	ABI class: X.Org Video Driver, version 12.0
[   583.840] (WW) Falling back to old probe method for apm
[   583.840] (WW) Falling back to old probe method for ark
[   583.840] (WW) Falling back to old probe method for cirrus
[   583.840] (II) Loading sub module "cirrus_laguna"
[   583.840] (II) LoadModule: "cirrus_laguna"
[   583.840] (II) Loading /usr/X11R6/lib/modules/drivers/cirrus_laguna.so
[   583.840] (II) Module cirrus_laguna: vendor="X.Org Foundation"
[   583.840] 	compiled for 1.12.3, module version = 1.0.0
[   583.840] 	ABI class: X.Org Video Driver, version 12.0
[   583.840] (II) Loading sub module "cirrus_alpine"
[   583.840] (II) LoadModule: "cirrus_alpine"
[   583.840] (II) Loading /usr/X11R6/lib/modules/drivers/cirrus_alpine.so
[   583.840] (II) Module cirrus_alpine: vendor="X.Org Foundation"
[   583.840] 	compiled for 1.12.3, module version = 1.0.0
[   583.840] 	ABI class: X.Org Video Driver, version 12.0
[   583.840] (WW) Falling back to old probe method for dummy
[   583.840] (WW) Falling back to old probe method for glint
[   583.840] (WW) Falling back to old probe method for i128
[   583.840] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2),
	Ivybridge Server (GT1), Ivybridge Server (GT2)
[   583.841] (WW) Falling back to old probe method for neomagic
[   583.841] (WW) Falling back to old probe method for s3
[   583.841] (WW) Falling back to old probe method for s3virge
[   583.841] (WW) Falling back to old probe method for siliconmotion
[   583.841] (WW) Falling back to old probe method for sis
[   583.841] (WW) Falling back to old probe method for trident
[   583.841] (WW) Falling back to old probe method for tseng
[   583.841] (WW) Falling back to old probe method for wsudl
[   583.841] (II) VESA: driver for VESA chipsets: vesa
[   584.358] (EE) Unable to locate/open config file: "/root/xorg.conf.new"
[   584.358] (==) Using system config directory "/usr/X11R6/share/X11/xorg.conf.d"
[   584.358] (==) No Layout section.  Using the first Screen section.
[   584.358] (==) No screen section available. Using defaults.
[   584.358] (**) |-->Screen "Default Screen Section" (0)
[   584.358] (**) |   |-->Monitor "<default monitor>"
[   584.358] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   584.359] (==) Disabling SIGIO handlers for input devices
[   584.359] (==) Automatically adding devices
[   584.359] (==) Automatically enabling devices
[   584.359] (==) FontPath set to:
	/usr/X11R6/lib/X11/fonts/misc/,
	/usr/X11R6/lib/X11/fonts/TTF/,
	/usr/X11R6/lib/X11/fonts/OTF/,
	/usr/X11R6/lib/X11/fonts/Type1/,
	/usr/X11R6/lib/X11/fonts/100dpi/,
	/usr/X11R6/lib/X11/fonts/75dpi/
[   584.359] (==) ModulePath set to "/usr/X11R6/lib/modules"
[   584.359] (II) The server relies on wscons to provide the list of input devices.
	If no devices become available, reconfigure wscons or disable AutoAddDevices.
[   584.359] Segmentation fault at address 0x28
[   584.359] 
Fatal server error:
[   584.359] Caught signal 11 (Segmentation fault). Server aborting
[   584.359] 
[   584.359] 
Please consult the The X.Org Foundation support 
	 at http://wiki.x.org
 for help. 
[   584.359] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   584.359] 
[   584.360] Server terminated with error (1). Closing log file.

xorg.conf_new

Code:
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/X11R6/lib/modules"
	FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
	FontPath     "/usr/X11R6/lib/X11/fonts/TTF/"
	FontPath     "/usr/X11R6/lib/X11/fonts/OTF/"
	FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
	FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
	FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection

Section "Module"
	Load  "dbe"
	Load  "dri"
	Load  "dri2"
	Load  "extmod"
	Load  "glx"
	Load  "record"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "wsmouse"
	Option	    "Device" "/dev/wsmouse"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "DRI"                	# [<bool>]
        #Option     "ColorKey"           	# <i>
        #Option     "VideoKey"           	# <i>
        #Option     "ModeDebug"          	# [<bool>]
        #Option     "FallbackDebug"      	# [<bool>]
        #Option     "LVDS24Bit"          	# [<bool>]
        #Option     "FramebufferCompression" 	# [<bool>]
        #Option     "Tiling"             	# [<bool>]
        #Option     "LinearFramebuffer"  	# [<bool>]
        #Option     "Shadow"             	# [<bool>]
        #Option     "SwapbuffersWait"    	# [<bool>]
        #Option     "LVDSFixedMode"      	# [<bool>]
        #Option     "ForceEnablePipeA"   	# [<bool>]
        #Option     "XvMC"               	# [<bool>]
        #Option     "XvPreferOverlay"    	# [<bool>]
        #Option     "DebugFlushBatches"  	# [<bool>]
        #Option     "DebugFlushCaches"   	# [<bool>]
        #Option     "DebugWait"          	# [<bool>]
	Identifier  "Card0"
	Driver      "intel"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "DefaultRefresh"     	# [<bool>]
        #Option     "ModeSetClearScreen" 	# [<bool>]
	Identifier  "Card1"
	Driver      "vesa"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

X -configure startet mit einer Fehlermeldung

aber wenn ich startx eingebe startet fvwm aber halt in der Laptop Auflösung
 
Du kannst für jeden Monitor eigene Modi definieren und in der Device-Section mit der "Monitor-" Option jede Monitor-Section einem Ausgang zuordnen. Also LVDS, VGA etc.
 
und wie würden dann die 3 Modi aussehen

nur externer NEC
extended Monitor
nur Laptop

wie müsste dann die config aussehen?
 
Zuletzt bearbeitet:
oeff...?

Code:
[   584.359] Segmentation fault at address 0x28
[   584.359] 
Fatal server error:
[   584.359] Caught signal 11 (Segmentation fault). Server aborting

ich weurde mich erstmal darum kuemmern.
 
ja wäre cool Kamikaze

@dettus ich habe das hier gefunden wegen dem Fehler

If I uninstall the intel video driver, X server is able to start with default
driver, so the problem isn't a dependency of X server but of the intel driver.

oder was sollte ich dagegen machen?
 
Hi dettus

habe in der xorg.conf.new

nv und dann vesa eingetragen und X -config /root/xorg.conf.new gemacht aber immer wieder kommt dieser signal Fehler

ich bin exht so traurig das es nicht geht ich hoffe es liegt nicht an der Grafikkarte

komisch finde ich wieso unter xrandr -q HDMI-5 connected angezeigt wird ich habe kein HDMI sondern 1 DVI Anschluss an der Dockingstation 2 Anschlüsse am Monitor und je 1 Displayport an der Docking am Laptop und am Monitor

ich hoffe wir bekommen es hin denn ich lese jeden Tag bei der Arbeit über OpenBSD und ich finde immer besser :-)

ps:startx wenn nur das Laptop alleine ist ohne dock oder externer Monitor geschlossen funktioniert in der richtigen Auflösung echt komisch
 
Man munkelt, dass in Current ein KMS Intel Treiber Einzug gehalten hat, evtl. ist der weniger verbuggt.

Significantly increase the wordlist for ddb hangman,
and update our device independent DRM code and the Intel DRM code
to be mostly in sync with Linux 3.8.3. Among other things this
brings support for kernel modesetting and enables use of
the rings on gen6+ Intel hardware.

Based on some earlier work from matthieu@ with some hints from FreeBSD
and with lots of help from kettenis@ (including a beautiful accelerated
wscons framebuffer console!)

Thanks to M:Tier and the OpenBSD Foundation for sponsoring this work.
 
Hi

ich habe das neueste snapshot drauf von 20.03.2013 aber leider kommt bei X -configure wieder der gleiche Fehler.

was bedeutet denn in Xorg.0.log das hier?

Code:
584.358] (EE) Unable to locate/open config file: "/root/xorg.conf.new"

wieso findet er diese xorg.xonf.new nicht? Sie wurde doch erstellt und befindet sich im home Verzeichnis von root muss ich da was noch ändern?

und wenn ein neues snapshot herauskommt muss ich dann einfach neu von cd booten und dann upgrade auswählen und alle Dateisets auswählen und das wars dann?
 
habe mir mal die Xorg.0.log von meiner Archlinux installation angesehen und da wird mein externer Monitor erkannt aber unter OpenBSD nicht also müsste es am Treiber liegen.

hier die Xorg.0.log von archlinux
Code:
[    81.298] 
X.Org X Server 1.12.4
Release Date: 2012-08-27
[    81.298] X Protocol Version 11, Revision 0
[    81.298] Build Operating System: Linux 3.4.8-1-ARCH x86_64 
[    81.298] Current Operating System: Linux bullitt 3.5.4-1-ARCH #1 SMP PREEMPT Sat Sep 15 08:12:04 CEST 2012 x86_64
[    81.298] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=7b8780ba-278c-4d61-a1ec-ba2a6f96c6ba ro quiet
[    81.299] Build Date: 27 August 2012  08:04:39AM
[    81.299]  
[    81.299] Current version of pixman: 0.26.2
[    81.299] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    81.299] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    81.306] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct  7 16:33:34 2012
[    81.307] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    81.308] (==) No Layout section.  Using the first Screen section.
[    81.308] (==) No screen section available. Using defaults.
[    81.308] (**) |-->Screen "Default Screen Section" (0)
[    81.308] (**) |   |-->Monitor "<default monitor>"
[    81.308] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    81.308] (==) Automatically adding devices
[    81.308] (==) Automatically enabling devices
[    81.308] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[    81.308] 	Entry deleted from font path.
[    81.308] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[    81.308] 	Entry deleted from font path.
[    81.308] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    81.308] 	Entry deleted from font path.
[    81.308] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    81.308] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    81.308] 	Entry deleted from font path.
[    81.308] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[    81.308] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/
[    81.308] (==) ModulePath set to "/usr/lib/xorg/modules"
[    81.308] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    81.308] (II) Loader magic: 0x7c8b00
[    81.308] (II) Module ABI versions:
[    81.308] 	X.Org ANSI C Emulation: 0.4
[    81.308] 	X.Org Video Driver: 12.1
[    81.308] 	X.Org XInput driver : 16.0
[    81.308] 	X.Org Server Extension : 6.0
[    81.308] (--) PCI:*(0:0:2:0) 8086:0126:17aa:21ce rev 9, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00005000/64
[    81.308] (II) Open ACPI successful (/var/run/acpid.socket)
[    81.308] (II) LoadModule: "extmod"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    81.309] (II) Module extmod: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.0.0
[    81.309] 	Module class: X.Org Server Extension
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (II) Loading extension MIT-SCREEN-SAVER
[    81.309] (II) Loading extension XFree86-VidModeExtension
[    81.309] (II) Loading extension XFree86-DGA
[    81.309] (II) Loading extension DPMS
[    81.309] (II) Loading extension XVideo
[    81.309] (II) Loading extension XVideo-MotionCompensation
[    81.309] (II) Loading extension X-Resource
[    81.309] (II) LoadModule: "dbe"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    81.309] (II) Module dbe: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.0.0
[    81.309] 	Module class: X.Org Server Extension
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (II) Loading extension DOUBLE-BUFFER
[    81.309] (II) LoadModule: "glx"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    81.309] (II) Module glx: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.0.0
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (==) AIGLX enabled
[    81.309] (II) Loading extension GLX
[    81.309] (II) LoadModule: "record"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    81.309] (II) Module record: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.13.0
[    81.309] 	Module class: X.Org Server Extension
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (II) Loading extension RECORD
[    81.309] (II) LoadModule: "dri"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    81.309] (II) Module dri: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.0.0
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (II) Loading extension XFree86-DRI
[    81.309] (II) LoadModule: "dri2"
[    81.309] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    81.309] (II) Module dri2: vendor="X.Org Foundation"
[    81.309] 	compiled for 1.12.4, module version = 1.2.0
[    81.309] 	ABI class: X.Org Server Extension, version 6.0
[    81.309] (II) Loading extension DRI2
[    81.309] (==) Matched intel as autoconfigured driver 0
[    81.309] (==) Matched vesa as autoconfigured driver 1
[    81.309] (==) Matched fbdev as autoconfigured driver 2
[    81.309] (==) Assigned the driver to the xf86ConfigLayout
[    81.309] (II) LoadModule: "intel"
[    81.310] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    81.310] (II) Module intel: vendor="X.Org Foundation"
[    81.310] 	compiled for 1.12.4, module version = 2.20.9
[    81.310] 	Module class: X.Org Video Driver
[    81.310] 	ABI class: X.Org Video Driver, version 12.1
[    81.310] (II) LoadModule: "vesa"
[    81.310] (WW) Warning, couldn't open module vesa
[    81.310] (II) UnloadModule: "vesa"
[    81.310] (II) Unloading vesa
[    81.310] (EE) Failed to load module "vesa" (module does not exist, 0)
[    81.310] (II) LoadModule: "fbdev"
[    81.310] (WW) Warning, couldn't open module fbdev
[    81.310] (II) UnloadModule: "fbdev"
[    81.310] (II) Unloading fbdev
[    81.310] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    81.310] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
	i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
	E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
	965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
	4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
	Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
	Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
	Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
	Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
	Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
	Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
	Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
	Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
	Haswell Server (GT2+), Haswell SDV Desktop (GT1),
	Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
	Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
	Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
	Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
	Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
	Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
	Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
	Haswell ULT Server (GT1), Haswell ULT Server (GT2),
	Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
	Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
	Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
	Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
	Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
	ValleyView PO board
[    81.310] (--) using VT number 7

[    81.313] drmOpenDevice: node name is /dev/dri/card0
[    81.314] drmOpenDevice: open result is 8, (OK)
[    81.314] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    81.314] drmOpenDevice: node name is /dev/dri/card0
[    81.314] drmOpenDevice: open result is 8, (OK)
[    81.314] drmOpenByBusid: drmOpenMinor returns 8
[    81.314] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    81.314] drmOpenDevice: node name is /dev/dri/card0
[    81.314] drmOpenDevice: open result is 9, (OK)
[    81.314] drmOpenByBusid: Searching for BusID pci:0000:00:02.0
[    81.314] drmOpenDevice: node name is /dev/dri/card0
[    81.314] drmOpenDevice: open result is 9, (OK)
[    81.314] drmOpenByBusid: drmOpenMinor returns 9
[    81.314] drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
[    81.314] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    81.314] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    81.314] (==) intel(0): RGB weight 888
[    81.314] (==) intel(0): Default visual is TrueColor
[    81.314] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT2+)
[    81.314] (**) intel(0): Relaxed fencing enabled
[    81.314] (**) intel(0): Wait on SwapBuffers? enabled
[    81.314] (**) intel(0): Triple buffering? enabled
[    81.314] (**) intel(0): Framebuffer tiled
[    81.315] (**) intel(0): Pixmaps tiled
[    81.315] (**) intel(0): 3D buffers tiled
[    81.315] (**) intel(0): SwapBuffers wait enabled
[    81.315] (==) intel(0): video overlay key set to 0x101fe
[    81.315] (II) intel(0): Output LVDS1 has no monitor section
[    81.315] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
[    81.315] (II) intel(0): Output VGA1 has no monitor section
[    81.340] (II) intel(0): Output HDMI1 has no monitor section
[    81.380] (II) intel(0): Output DP1 has no monitor section
[    81.393] (II) intel(0): Output HDMI2 has no monitor section
[    81.406] (II) intel(0): Output HDMI3 has no monitor section
[    81.464] (II) intel(0): Output DP2 has no monitor section
[    81.506] (II) intel(0): Output DP3 has no monitor section
[    81.507] (II) intel(0): EDID for output LVDS1
[    81.507] (II) intel(0): Manufacturer: AUO  Model: 213e  Serial#: 0
[    81.507] (II) intel(0): Year: 2010  Week: 33
[    81.507] (II) intel(0): EDID Version: 1.4
[    81.507] (II) intel(0): Digital Display Input
[    81.507] (II) intel(0): 6 bits per channel
[    81.507] (II) intel(0): Digital interface is undefined
[    81.507] (II) intel(0): Max Image Size [cm]: horiz.: 31  vert.: 17
[    81.507] (II) intel(0): Gamma: 2.20
[    81.507] (II) intel(0): No DPMS capabilities specified
[    81.507] (II) intel(0): Supported color encodings: RGB 4:4:4 
[    81.507] (II) intel(0): First detailed timing is preferred mode
[    81.507] (II) intel(0): Preferred mode is native pixel format and refresh rate
[    81.507] (II) intel(0): redX: 0.610 redY: 0.350   greenX: 0.320 greenY: 0.560
[    81.507] (II) intel(0): blueX: 0.150 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
[    81.507] (II) intel(0): Manufacturer's mask: 0
[    81.507] (II) intel(0): Supported detailed timing:
[    81.507] (II) intel(0): clock: 110.0 MHz   Image Size:  309 x 174 mm
[    81.507] (II) intel(0): h_active: 1600  h_sync: 1664  h_sync_end 1706 h_blank_end 2010 h_border: 0
[    81.507] (II) intel(0): v_active: 900  v_sync: 903  v_sync_end 906 v_blanking: 912 v_border: 0
[    81.507] (II) intel(0): Supported detailed timing:
[    81.507] (II) intel(0): clock: 73.3 MHz   Image Size:  309 x 174 mm
[    81.507] (II) intel(0): h_active: 1600  h_sync: 1664  h_sync_end 1706 h_blank_end 2010 h_border: 0
[    81.507] (II) intel(0): v_active: 900  v_sync: 903  v_sync_end 906 v_blanking: 912 v_border: 0
[    81.507] (II) intel(0):  AUO
[    81.507] (II) intel(0):  B140RW02 V1
[    81.507] (II) intel(0): EDID (in hex):
[    81.507] (II) intel(0): 	00ffffffffffff0006af3e2100000000
[    81.507] (II) intel(0): 	21140104901f11780261959c59528f26
[    81.507] (II) intel(0): 	21505400000001010101010101010101
[    81.507] (II) intel(0): 	010101010101f82a409a61840c30402a
[    81.507] (II) intel(0): 	330035ae10000018a51c409a61840c30
[    81.507] (II) intel(0): 	402a330035ae10000018000000fe0041
[    81.507] (II) intel(0): 	554f0a202020202020202020000000fe
[    81.507] (II) intel(0): 	004231343052573032205631200a00d0
[    81.507] (II) intel(0): EDID vendor "AUO", prod id 8510
[    81.507] (II) intel(0): Printing DDC gathered Modelines:
[    81.508] (II) intel(0): Modeline "1600x900"x0.0  110.00  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (54.7 kHz eP)
[    81.508] (II) intel(0): Modeline "1600x900"x0.0   73.33  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (36.5 kHz e)
[    81.508] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
[    81.508] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
[    81.508] (II) intel(0): Printing probed modes for output LVDS1
[    81.508] (II) intel(0): Modeline "1600x900"x60.0  110.00  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (54.7 kHz eP)
[    81.508] (II) intel(0): Modeline "1600x900"x40.0   73.33  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (36.5 kHz e)
[    81.508] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    81.508] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    81.508] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    81.508] (II) intel(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    81.508] (II) intel(0): EDID for output VGA1
[    81.533] (II) intel(0): EDID for output HDMI1
[    81.573] (II) intel(0): EDID for output DP1
[    81.586] (II) intel(0): EDID for output HDMI2
[    81.600] (II) intel(0): EDID for output HDMI3
[    81.657] (II) intel(0): EDID for output DP2
[    81.657] (II) intel(0): Manufacturer: NEC  Model: 67d1  Serial#: 0
[    81.657] (II) intel(0): Year: 2011  Week: 33
[    81.657] (II) intel(0): EDID Version: 1.4
[    81.657] (II) intel(0): Digital Display Input
[    81.657] (II) intel(0): 10 bits per channel
[    81.657] (II) intel(0): Digital interface is DisplayPort
[    81.657] (II) intel(0): Max Image Size [cm]: horiz.: 52  vert.: 32
[    81.657] (II) intel(0): Gamma: 2.20
[    81.657] (II) intel(0): DPMS capabilities: StandBy Suspend Off
[    81.657] (II) intel(0): Supported color encodings: RGB 4:4:4 
[    81.657] (II) intel(0): First detailed timing is preferred mode
[    81.657] (II) intel(0): Preferred mode is native pixel format and refresh rate
[    81.657] (II) intel(0): redX: 0.679 redY: 0.310   greenX: 0.210 greenY: 0.686
[    81.657] (II) intel(0): blueX: 0.149 blueY: 0.047   whiteX: 0.313 whiteY: 0.329
[    81.657] (II) intel(0): Supported established timings:
[    81.657] (II) intel(0): 720x400@70Hz
[    81.657] (II) intel(0): 640x480@60Hz
[    81.657] (II) intel(0): 640x480@67Hz
[    81.657] (II) intel(0): 640x480@72Hz
[    81.657] (II) intel(0): 640x480@75Hz
[    81.657] (II) intel(0): 800x600@56Hz
[    81.657] (II) intel(0): 800x600@60Hz
[    81.657] (II) intel(0): 800x600@72Hz
[    81.657] (II) intel(0): 800x600@75Hz
[    81.657] (II) intel(0): 832x624@75Hz
[    81.657] (II) intel(0): 1024x768@60Hz
[    81.657] (II) intel(0): 1024x768@70Hz
[    81.657] (II) intel(0): 1024x768@75Hz
[    81.657] (II) intel(0): 1280x1024@75Hz
[    81.657] (II) intel(0): 1152x864@75Hz
[    81.657] (II) intel(0): Manufacturer's mask: 0
[    81.657] (II) intel(0): Supported standard timings:
[    81.657] (II) intel(0): #0: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    81.657] (II) intel(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    81.657] (II) intel(0): #2: hsize: 1400  vsize 1050  refresh: 60  vid: 16528
[    81.657] (II) intel(0): #3: hsize: 1360  vsize 765  refresh: 60  vid: 49291
[    81.657] (II) intel(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    81.657] (II) intel(0): #5: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    81.657] (II) intel(0): #6: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    81.657] (II) intel(0): #7: hsize: 1920  vsize 1200  refresh: 60  vid: 209
[    81.657] (II) intel(0): Supported detailed timing:
[    81.657] (II) intel(0): clock: 154.0 MHz   Image Size:  518 x 324 mm
[    81.657] (II) intel(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    81.657] (II) intel(0): v_active: 1200  v_sync: 1203  v_sync_end 1209 v_blanking: 1235 v_border: 0
[    81.657] (II) intel(0): Ranges: V min: 50 V max: 85 Hz, H min: 31 H max: 92 kHz, PixClock max 165 MHz
[    81.657] (II) intel(0): Monitor name: PA241W
[    81.657] (II) intel(0): Serial No: 18107120UB
[    81.657] (II) intel(0): EDID (in hex):
[    81.657] (II) intel(0): 	00ffffffffffff0038a3d16700000000
[    81.657] (II) intel(0): 	21150104b5342078e2de45ad4f35af26
[    81.657] (II) intel(0): 	0c5054bfef8081c0818090408bc09500
[    81.657] (II) intel(0): 	a940b300d100283c80a070b023403020
[    81.657] (II) intel(0): 	360006442100001a000000fd0032551f
[    81.657] (II) intel(0): 	5c10000a202020202020000000fc0050
[    81.657] (II) intel(0): 	41323431570a202020202020000000ff
[    81.657] (II) intel(0): 	00313831303731323055420a2020004b
[    81.657] (II) intel(0): Printing probed modes for output DP2
[    81.657] (II) intel(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
[    81.657] (II) intel(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    81.657] (II) intel(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    81.657] (II) intel(0): Modeline "1680x945"x60.0  131.48  1680 1784 1960 2240  945 946 949 978 -hsync +vsync (58.7 kHz)
[    81.657] (II) intel(0): Modeline "1400x1050"x74.9  156.00  1400 1504 1648 1896  1050 1053 1057 1099 -hsync +vsync (82.3 kHz e)
[    81.657] (II) intel(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
[    81.657] (II) intel(0): Modeline "1600x900"x60.0  118.96  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz)
[    81.657] (II) intel(0): Modeline "1280x1024"x85.0  157.50  1280 1344 1504 1728  1024 1025 1028 1072 +hsync +vsync (91.1 kHz e)
[    81.657] (II) intel(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    81.657] (II) intel(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    81.657] (II) intel(0): Modeline "1440x900"x84.8  157.00  1440 1544 1696 1952  900 903 909 948 -hsync +vsync (80.4 kHz e)
[    81.657] (II) intel(0): Modeline "1440x900"x75.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz e)
[    81.657] (II) intel(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    81.657] (II) intel(0): Modeline "1280x960"x85.0  148.50  1280 1344 1504 1728  960 961 964 1011 +hsync +vsync (85.9 kHz e)
[    81.657] (II) intel(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    81.657] (II) intel(0): Modeline "1360x768"x59.8   84.75  1366 1431 1567 1776  768 771 781 798 -hsync +vsync (47.7 kHz)
[    81.657] (II) intel(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[    81.657] (II) intel(0): Modeline "1280x800"x84.9  122.50  1280 1360 1496 1712  800 803 809 843 -hsync +vsync (71.6 kHz e)
[    81.657] (II) intel(0): Modeline "1280x800"x74.9  106.50  1280 1360 1488 1696  800 803 809 838 -hsync +vsync (62.8 kHz e)
[    81.657] (II) intel(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    81.657] (II) intel(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    81.657] (II) intel(0): Modeline "1280x768"x84.8  117.50  1280 1360 1496 1712  768 771 778 809 -hsync +vsync (68.6 kHz e)
[    81.657] (II) intel(0): Modeline "1280x768"x74.9  102.25  1280 1360 1488 1696  768 771 778 805 +hsync -vsync (60.3 kHz e)
[    81.657] (II) intel(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[    81.657] (II) intel(0): Modeline "1280x720"x60.0   74.44  1280 1336 1472 1664  720 721 724 746 -hsync +vsync (44.7 kHz)
[    81.658] (II) intel(0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz e)
[    81.658] (II) intel(0): Modeline "1024x768"x75.1   78.80  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.1 kHz e)
[    81.658] (II) intel(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    81.658] (II) intel(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    81.658] (II) intel(0): Modeline "1024x576"x60.0   46.97  1024 1064 1168 1312  576 577 580 597 -hsync +vsync (35.8 kHz)
[    81.658] (II) intel(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    81.658] (II) intel(0): Modeline "800x600"x85.1   56.25  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz e)
[    81.658] (II) intel(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    81.658] (II) intel(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    81.658] (II) intel(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    81.658] (II) intel(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    81.658] (II) intel(0): Modeline "848x480"x60.0   33.75  848 864 976 1088  480 486 494 517 +hsync +vsync (31.0 kHz e)
[    81.658] (II) intel(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz e)
[    81.658] (II) intel(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 491 520 -hsync -vsync (37.9 kHz e)
[    81.658] (II) intel(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    81.658] (II) intel(0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    81.658] (II) intel(0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    81.658] (II) intel(0): Modeline "720x400"x85.0   35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz e)
[    81.658] (II) intel(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    81.658] (II) intel(0): Modeline "640x400"x85.1   31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz e)
[    81.658] (II) intel(0): Modeline "640x350"x85.1   31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz e)
[    81.700] (II) intel(0): EDID for output DP3
[    81.700] (II) intel(0): Output LVDS1 connected
[    81.700] (II) intel(0): Output VGA1 disconnected
[    81.700] (II) intel(0): Output HDMI1 disconnected
[    81.700] (II) intel(0): Output DP1 disconnected
[    81.700] (II) intel(0): Output HDMI2 disconnected
[    81.700] (II) intel(0): Output HDMI3 disconnected
[    81.700] (II) intel(0): Output DP2 connected
[    81.700] (II) intel(0): Output DP3 disconnected
[    81.700] (II) intel(0): Using exact sizes for initial modes
[    81.700] (II) intel(0): Output LVDS1 using initial mode 1600x900
[    81.700] (II) intel(0): Output DP2 using initial mode 1600x900
[    81.700] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    81.700] (II) intel(0): Kernel page flipping support detected, enabling
[    81.700] (**) intel(0): Display dimensions: (310, 170) mm
[    81.700] (**) intel(0): DPI set to (131, 134)
[    81.700] (II) Loading sub module "fb"
[    81.700] (II) LoadModule: "fb"
[    81.701] (II) Loading /usr/lib/xorg/modules/libfb.so
[    81.701] (II) Module fb: vendor="X.Org Foundation"
[    81.701] 	compiled for 1.12.4, module version = 1.0.0
[    81.701] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    81.701] (II) Loading sub module "dri2"
[    81.701] (II) LoadModule: "dri2"
[    81.701] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    81.701] (II) Module dri2: vendor="X.Org Foundation"
[    81.701] 	compiled for 1.12.4, module version = 1.2.0
[    81.701] 	ABI class: X.Org Server Extension, version 6.0
[    81.701] (==) Depth 24 pixmap format is 32 bpp
[    81.702] (II) intel(0): [DRI2] Setup complete
[    81.702] (II) intel(0): [DRI2]   DRI driver: i965
[    81.702] (II) intel(0): Allocated new frame buffer 1600x900 stride 6656, tiled
[    81.704] (II) UXA(0): Driver registered support for the following operations:
[    81.704] (II)         solid
[    81.704] (II)         copy
[    81.704] (II)         composite (RENDER acceleration)
[    81.704] (II)         put_image
[    81.704] (II)         get_image
[    81.704] (==) intel(0): Backing store disabled
[    81.704] (==) intel(0): Silken mouse enabled
[    81.704] (II) intel(0): Initializing HW Cursor
[    81.704] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    81.707] (==) intel(0): DPMS enabled
[    81.707] (==) intel(0): Intel XvMC decoder enabled
[    81.707] (II) intel(0): Set up textured video
[    81.707] (II) intel(0): [XvMC] xvmc_vld driver initialized.
[    81.707] (II) intel(0): direct rendering: DRI2 Enabled
[    81.707] (==) intel(0): hotplug detection: "enabled"
[    82.106] (--) RandR disabled
[    82.107] (II) Initializing built-in extension Generic Event Extension
[    82.107] (II) Initializing built-in extension SHAPE
[    82.107] (II) Initializing built-in extension MIT-SHM
[    82.107] (II) Initializing built-in extension XInputExtension
[    82.107] (II) Initializing built-in extension XTEST
[    82.107] (II) Initializing built-in extension BIG-REQUESTS
[    82.107] (II) Initializing built-in extension SYNC
[    82.107] (II) Initializing built-in extension XKEYBOARD
[    82.107] (II) Initializing built-in extension XC-MISC
[    82.107] (II) Initializing built-in extension SECURITY
[    82.107] (II) Initializing built-in extension XINERAMA
[    82.107] (II) Initializing built-in extension XFIXES
[    82.107] (II) Initializing built-in extension RENDER
[    82.107] (II) Initializing built-in extension RANDR
[    82.107] (II) Initializing built-in extension COMPOSITE
[    82.107] (II) Initializing built-in extension DAMAGE
[    82.119] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    82.119] (II) AIGLX: enabled GLX_INTEL_swap_event
[    82.119] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    82.119] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    82.119] (II) AIGLX: Loaded and initialized i965
[    82.119] (II) GLX: Initialized DRI2 GL provider for screen 0
[    82.119] (II) intel(0): Setting screen physical size to 423 x 238
[    82.158] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    82.158] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    82.158] (II) LoadModule: "evdev"
[    82.159] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    82.159] (II) Module evdev: vendor="X.Org Foundation"
[    82.159] 	compiled for 1.12.3.901, module version = 2.7.3
[    82.159] 	Module class: X.Org XInput Driver
[    82.159] 	ABI class: X.Org XInput driver, version 16.0
[    82.159] (II) Using input driver 'evdev' for 'Power Button'
[    82.159] (**) Power Button: always reports core events
[    82.159] (**) evdev: Power Button: Device: "/dev/input/event4"
[    82.159] (--) evdev: Power Button: Vendor 0 Product 0x1
[    82.159] (--) evdev: Power Button: Found keys
[    82.159] (II) evdev: Power Button: Configuring as keyboard
[    82.159] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
[    82.160] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    82.160] (**) Option "xkb_rules" "evdev"
[    82.160] (**) Option "xkb_model" "evdev"
[    82.160] (**) Option "xkb_layout" "de"
[    82.160] (**) Option "xkb_variant" "nodeadkeys"
[    82.193] (II) config/udev: Adding input device Video Bus (/dev/input/event12)
[    82.193] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    82.193] (II) Using input driver 'evdev' for 'Video Bus'
[    82.193] (**) Video Bus: always reports core events
[    82.193] (**) evdev: Video Bus: Device: "/dev/input/event12"
[    82.193] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    82.193] (--) evdev: Video Bus: Found keys
[    82.193] (II) evdev: Video Bus: Configuring as keyboard
[    82.193] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input12/event12"
[    82.193] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    82.193] (**) Option "xkb_rules" "evdev"
[    82.193] (**) Option "xkb_model" "evdev"
[    82.193] (**) Option "xkb_layout" "de"
[    82.193] (**) Option "xkb_variant" "nodeadkeys"
[    82.195] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[    82.195] (II) No input driver specified, ignoring this device.
[    82.195] (II) This device may have been added with another device file.
[    82.195] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
[    82.195] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    82.195] (II) Using input driver 'evdev' for 'Sleep Button'
[    82.195] (**) Sleep Button: always reports core events
[    82.195] (**) evdev: Sleep Button: Device: "/dev/input/event3"
[    82.195] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    82.195] (--) evdev: Sleep Button: Found keys
[    82.195] (II) evdev: Sleep Button: Configuring as keyboard
[    82.195] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3"
[    82.195] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    82.195] (**) Option "xkb_rules" "evdev"
[    82.196] (**) Option "xkb_model" "evdev"
[    82.196] (**) Option "xkb_layout" "de"
[    82.196] (**) Option "xkb_variant" "nodeadkeys"
[    82.197] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event1)
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[    82.197] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[    82.197] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event1"
[    82.197] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc01e
[    82.197] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
[    82.197] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[    82.197] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes
[    82.197] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[    82.197] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[    82.197] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
[    82.197] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[    82.197] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    82.197] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input1/event1"
[    82.197] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 9)
[    82.197] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
[    82.197] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
[    82.197] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[    82.197] (II) No input driver specified, ignoring this device.
[    82.197] (II) This device may have been added with another device file.
[    82.197] (II) config/udev: Adding input device Integrated Camera (/dev/input/event10)
[    82.197] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
[    82.197] (II) Using input driver 'evdev' for 'Integrated Camera'
[    82.197] (**) Integrated Camera: always reports core events
[    82.197] (**) evdev: Integrated Camera: Device: "/dev/input/event10"
[    82.197] (--) evdev: Integrated Camera: Vendor 0x4f2 Product 0xb221
[    82.197] (--) evdev: Integrated Camera: Found keys
[    82.197] (II) evdev: Integrated Camera: Configuring as keyboard
[    82.197] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input10/event10"
[    82.197] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 10)
[    82.197] (**) Option "xkb_rules" "evdev"
[    82.197] (**) Option "xkb_model" "evdev"
[    82.197] (**) Option "xkb_layout" "de"
[    82.197] (**) Option "xkb_variant" "nodeadkeys"
[    82.198] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event13)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event14)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event15)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event16)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event17)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event18)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event19)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.198] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event20)
[    82.198] (II) No input driver specified, ignoring this device.
[    82.198] (II) This device may have been added with another device file.
[    82.199] (II) config/udev: Adding input device HID 046a:0101 (/dev/input/event5)
[    82.199] (**) HID 046a:0101: Applying InputClass "evdev keyboard catchall"
[    82.199] (II) Using input driver 'evdev' for 'HID 046a:0101'
[    82.199] (**) HID 046a:0101: always reports core events
[    82.199] (**) evdev: HID 046a:0101: Device: "/dev/input/event5"
[    82.199] (--) evdev: HID 046a:0101: Vendor 0x46a Product 0x101
[    82.199] (--) evdev: HID 046a:0101: Found keys
[    82.199] (II) evdev: HID 046a:0101: Configuring as keyboard
[    82.199] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/input/input5/event5"
[    82.199] (II) XINPUT: Adding extended input device "HID 046a:0101" (type: KEYBOARD, id 11)
[    82.199] (**) Option "xkb_rules" "evdev"
[    82.199] (**) Option "xkb_model" "evdev"
[    82.199] (**) Option "xkb_layout" "de"
[    82.199] (**) Option "xkb_variant" "nodeadkeys"
[    82.199] (II) config/udev: Adding input device HID 046a:0101 (/dev/input/event7)
[    82.199] (**) HID 046a:0101: Applying InputClass "evdev keyboard catchall"
[    82.199] (II) Using input driver 'evdev' for 'HID 046a:0101'
[    82.199] (**) HID 046a:0101: always reports core events
[    82.199] (**) evdev: HID 046a:0101: Device: "/dev/input/event7"
[    82.199] (--) evdev: HID 046a:0101: Vendor 0x46a Product 0x101
[    82.199] (--) evdev: HID 046a:0101: Found 1 mouse buttons
[    82.199] (--) evdev: HID 046a:0101: Found scroll wheel(s)
[    82.199] (--) evdev: HID 046a:0101: Found relative axes
[    82.199] (II) evdev: HID 046a:0101: Forcing relative x/y axes to exist.
[    82.199] (--) evdev: HID 046a:0101: Found absolute axes
[    82.199] (II) evdev: HID 046a:0101: Forcing absolute x/y axes to exist.
[    82.199] (--) evdev: HID 046a:0101: Found keys
[    82.199] (II) evdev: HID 046a:0101: Configuring as mouse
[    82.199] (II) evdev: HID 046a:0101: Configuring as keyboard
[    82.199] (II) evdev: HID 046a:0101: Adding scrollwheel support
[    82.199] (**) evdev: HID 046a:0101: YAxisMapping: buttons 4 and 5
[    82.199] (**) evdev: HID 046a:0101: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    82.199] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/input/input7/event7"
[    82.199] (II) XINPUT: Adding extended input device "HID 046a:0101" (type: KEYBOARD, id 12)
[    82.199] (**) Option "xkb_rules" "evdev"
[    82.199] (**) Option "xkb_model" "evdev"
[    82.199] (**) Option "xkb_layout" "de"
[    82.199] (**) Option "xkb_variant" "nodeadkeys"
[    82.199] (II) evdev: HID 046a:0101: initialized for relative axes.
[    82.199] (WW) evdev: HID 046a:0101: ignoring absolute axes.
[    82.199] (**) HID 046a:0101: (accel) keeping acceleration scheme 1
[    82.199] (**) HID 046a:0101: (accel) acceleration profile 0
[    82.199] (**) HID 046a:0101: (accel) acceleration factor: 2.000
[    82.199] (**) HID 046a:0101: (accel) acceleration threshold: 4
[    82.200] (II) config/udev: Adding input device HID 046a:0101 (/dev/input/event8)
[    82.200] (**) HID 046a:0101: Applying InputClass "evdev pointer catchall"
[    82.200] (II) Using input driver 'evdev' for 'HID 046a:0101'
[    82.200] (**) HID 046a:0101: always reports core events
[    82.200] (**) evdev: HID 046a:0101: Device: "/dev/input/event8"
[    82.200] (--) evdev: HID 046a:0101: Vendor 0x46a Product 0x101
[    82.200] (--) evdev: HID 046a:0101: Found 9 mouse buttons
[    82.200] (--) evdev: HID 046a:0101: Found scroll wheel(s)
[    82.200] (--) evdev: HID 046a:0101: Found relative axes
[    82.200] (--) evdev: HID 046a:0101: Found x and y relative axes
[    82.200] (II) evdev: HID 046a:0101: Configuring as mouse
[    82.200] (II) evdev: HID 046a:0101: Adding scrollwheel support
[    82.200] (**) evdev: HID 046a:0101: YAxisMapping: buttons 4 and 5
[    82.200] (**) evdev: HID 046a:0101: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    82.200] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/input/input8/event8"
[    82.200] (II) XINPUT: Adding extended input device "HID 046a:0101" (type: MOUSE, id 13)
[    82.200] (II) evdev: HID 046a:0101: initialized for relative axes.
[    82.200] (**) HID 046a:0101: (accel) keeping acceleration scheme 1
[    82.200] (**) HID 046a:0101: (accel) acceleration profile 0
[    82.200] (**) HID 046a:0101: (accel) acceleration factor: 2.000
[    82.200] (**) HID 046a:0101: (accel) acceleration threshold: 4
[    82.200] (II) config/udev: Adding input device HID 046a:0101 (/dev/input/mouse1)
[    82.200] (II) No input driver specified, ignoring this device.
[    82.200] (II) This device may have been added with another device file.
[    82.200] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    82.200] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    82.200] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    82.200] (**) AT Translated Set 2 keyboard: always reports core events
[    82.200] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    82.200] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    82.200] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    82.200] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    82.200] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    82.200] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[    82.200] (**) Option "xkb_rules" "evdev"
[    82.200] (**) Option "xkb_model" "evdev"
[    82.200] (**) Option "xkb_layout" "de"
[    82.200] (**) Option "xkb_variant" "nodeadkeys"
[    82.201] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
[    82.201] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    82.201] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    82.201] (II) LoadModule: "synaptics"
[    82.201] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    82.201] (II) Module synaptics: vendor="X.Org Foundation"
[    82.201] 	compiled for 1.12.2, module version = 1.6.2
[    82.201] 	Module class: X.Org XInput Driver
[    82.201] 	ABI class: X.Org XInput driver, version 16.0
[    82.201] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    82.201] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    82.201] (**) Option "Device" "/dev/input/event11"
[    82.203] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5888
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4820
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    82.203] (**) Option "TapButton1" "1"
[    82.203] (**) Option "TapButton2" "2"
[    82.203] (**) Option "TapButton3" "3"
[    82.203] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    82.203] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    82.204] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input11/event11"
[    82.204] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 15)
[    82.204] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    82.204] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.75
[    82.204] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.036
[    82.204] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    82.204] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    82.204] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    82.204] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    82.204] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    82.204] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse2)
[    82.204] (II) No input driver specified, ignoring this device.
[    82.204] (II) This device may have been added with another device file.
[    82.204] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event21)
[    82.204] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
[    82.204] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
[    82.204] (**) TPPS/2 IBM TrackPoint: always reports core events
[    82.204] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event21"
[    82.204] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
[    82.204] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
[    82.204] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
[    82.204] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
[    82.204] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
[    82.204] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
[    82.204] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    82.204] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input21/event21"
[    82.204] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 16)
[    82.205] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
[    82.205] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
[    82.205] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
[    82.205] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    82.205] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    82.205] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
[    82.205] (II) No input driver specified, ignoring this device.
[    82.205] (II) This device may have been added with another device file.
[    82.205] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    82.205] (II) No input driver specified, ignoring this device.
[    82.205] (II) This device may have been added with another device file.
[    82.205] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event9)
[    82.205] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
[    82.205] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
[    82.205] (**) ThinkPad Extra Buttons: always reports core events
[    82.205] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event9"
[    82.205] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
[    82.205] (--) evdev: ThinkPad Extra Buttons: Found keys
[    82.205] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
[    82.205] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input9/event9"
[    82.205] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 17)
[    82.205] (**) Option "xkb_rules" "evdev"
[    82.205] (**) Option "xkb_model" "evdev"
[    82.205] (**) Option "xkb_layout" "de"
[    82.205] (**) Option "xkb_variant" "nodeadkeys"
[    82.222] (II) intel(0): EDID vendor "AUO", prod id 8510
[    82.222] (II) intel(0): Printing DDC gathered Modelines:
[    82.222] (II) intel(0): Modeline "1600x900"x0.0  110.00  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (54.7 kHz eP)
[    82.222] (II) intel(0): Modeline "1600x900"x0.0   73.33  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (36.5 kHz e)
[    82.415] (II) intel(0): Allocated new frame buffer 1920x1200 stride 7680, tiled
[   106.807] (II) AIGLX: Suspending AIGLX clients for VT switch
[   117.740] (II) Open ACPI successful (/var/run/acpid.socket)
[   117.740] (II) AIGLX: Resuming AIGLX clients after VT switch
[   117.767] (II) intel(0): EDID vendor "AUO", prod id 8510
[   117.767] (II) intel(0): Printing DDC gathered Modelines:
[   117.767] (II) intel(0): Modeline "1600x900"x0.0  110.00  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (54.7 kHz eP)
[   117.767] (II) intel(0): Modeline "1600x900"x0.0   73.33  1600 1664 1706 2010  900 903 906 912 -hsync -vsync (36.5 kHz e)
[   117.959] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
 
update:

ich habe das snapshot vom 24.03.2013 installiert und beim booten wechselt die Schrift auf die richtige Auflösung 1920x1200 aber mit der größe des Ausschnitts vom Laptop Display ist aber auch bei den anderen distris so gewesen.

ich habe dann unter root X -configure eingegeben aber es kommt wieder die gleiche Fehlermeldung

die neue xrandr

Code:
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
LVDS1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1600x900       60.0 +   40.0  
   1024x768       60.0* 
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 connected 1024x768+0+0 (normal left inverted right x axis y axis) 518mm x 324mm
   1920x1200      60.0 +
   1600x1200      60.0  
   1680x1050      60.0  
   1400x1050      60.0  
   1280x1024      75.0     60.0  
   1440x900       59.9  
   1360x768       59.8  
   1152x864       75.0  
   1280x720       60.0  
   1024x768       75.1     70.1     60.0* 
   832x624        74.6  
   800x600        72.2     75.0     60.3     56.2  
   640x480        72.8     66.7     60.0  
   720x400        70.1  
DP3 disconnected (normal left inverted right x axis y axis)

wie man sieht wird der Displayport als DP erkannt :D und mein Laptop Display als LVDS1

Code:
xrandr --output LVDS1 --auto --output DP2 --auto --right-of LVDS1

funktioniert ich habe einen Virtuellen Desktop nur leider bewegen sich die Fenster sehr langsam

Code:
xrandr --output DP2 --auto --output LVDS1 --off

schaltet das Laptop Display aus und der Monitor wechselt in 1920x1200 aber leider wieder nicht in Vollbild sondern im Ausschnitt des Laptop Monitors und alles ist so langsam nicht flüssig. Nur wenn ich auf dem Laptop Display alles bewege ist alles sehr flüssig. Vielleicht müssen die ja noch was mit dem Treiber machen?

aber auf jedenfall geht ja mal schon was.

soll ich noch warten oder muss ich die xorg.conf.neu einrichten? vielleicht kann mir ja einer dabei helfen ich habe ja alle Daten meines Monitors und Frequenzen

die neue xdpyinfo
Code:
name of display:    :0
version number:    11.0
vendor string:    The X.Org Foundation
vendor release number:    11203000
X.Org version: 1.12.3
maximum request size:  16777212 bytes
motion buffer size:  256
bitmap unit, bit order, padding:    32, LSBFirst, 32
image byte order:    LSBFirst
number of supported pixmap formats:    7
supported pixmap formats:
    depth 1, bits_per_pixel 1, scanline_pad 32
    depth 4, bits_per_pixel 8, scanline_pad 32
    depth 8, bits_per_pixel 8, scanline_pad 32
    depth 15, bits_per_pixel 16, scanline_pad 32
    depth 16, bits_per_pixel 16, scanline_pad 32
    depth 24, bits_per_pixel 32, scanline_pad 32
    depth 32, bits_per_pixel 32, scanline_pad 32
keycode range:    minimum 8, maximum 255
focus:  window 0xa0000d, revert to Parent
number of extensions:    28
    BIG-REQUESTS
    Composite
    DAMAGE
    DOUBLE-BUFFER
    DPMS
    DRI2
    GLX
    Generic Event Extension
    MIT-SCREEN-SAVER
    MIT-SHM
    RANDR
    RECORD
    RENDER
    SECURITY
    SGI-GLX
    SHAPE
    SYNC
    X-Resource
    XC-MISC
    XFIXES
    XFree86-DGA
    XFree86-VidModeExtension
    XINERAMA
    XInputExtension
    XKEYBOARD
    XTEST
    XVideo
    XVideo-MotionCompensation
default screen number:    0
number of screens:    1

screen #0:
  dimensions:    1024x768 pixels (270x203 millimeters)
  resolution:    96x96 dots per inch
  depths (7):    24, 1, 4, 8, 15, 16, 32
  root window id:    0xc4
  depth of root window:    24 planes
  number of colormaps:    minimum 1, maximum 1
  default colormap:    0x20
  default number of colormap cells:    256
  preallocated pixels:    black 0, white 16777215
  options:    backing-store NO, save-unders NO
  largest cursor:    64x64
  current input event mask:    0x58003d
    KeyPressMask             ButtonPressMask          ButtonReleaseMask        
    EnterWindowMask          LeaveWindowMask          SubstructureNotifyMask   
    SubstructureRedirectMask PropertyChangeMask       
  number of visuals:    32
  default visual id:  0x21
  visual:
    visual id:    0x21
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x22
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xa6
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xa7
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xa8
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xa9
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xaa
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xab
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xac
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xad
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xae
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xaf
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb0
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb1
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb2
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb3
    class:    TrueColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb4
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb5
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb6
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb7
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb8
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xb9
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xba
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xbb
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xbc
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xbd
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xbe
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xbf
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xc0
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xc1
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0xc2
    class:    DirectColor
    depth:    24 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits
  visual:
    visual id:    0x75
    class:    TrueColor
    depth:    32 planes
    available colormap entries:    256 per subfield
    red, green, blue masks:    0xff0000, 0xff00, 0xff
    significant bits in color specification:    8 bits

und die neue dmesg
Code:
OpenBSD 5.3-current (RAMDISK_CD) #72: Sun Mar 24 13:21:07 MDT 2013
    deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/RAMDISK_CD
real mem = 17041059840 (16251MB)
avail mem = 16582643712 (15814MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.6 @ 0xdae9c000 (67 entries)
bios0: vendor LENOVO version "83ET69WW (1.39 )" date 03/26/2012
bios0: LENOVO 4180MBU
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SLIC SSDT SSDT SSDT HPET APIC MCFG ECDT ASF! TCPA SSDT SSDT UEFI UEFI UEFI
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2591.92 MHz
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: apic clock running at 99MHz
cpu at mainbus0: not configured
cpu at mainbus0: not configured
cpu at mainbus0: not configured
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpi0: WARNING EC not initialized
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (PEG_)
acpiprt2 at acpi0: bus 2 (EXP1)
acpiprt3 at acpi0: bus 3 (EXP2)
acpiprt4 at acpi0: bus 5 (EXP4)
acpiprt5 at acpi0: bus 13 (EXP5)
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 2G Host" rev 0x09
vga1 at pci0 dev 2 function 0 "Intel HD Graphics 3000" rev 0x09
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
"Intel 6 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
"Intel 6 Series KT" rev 0x04 at pci0 dev 22 function 3 not configured
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address 00:21:cc:49:fc:72
ehci0 at pci0 dev 26 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 16
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
"Intel 6 Series HD Audio" rev 0x04 at pci0 dev 27 function 0 not configured
ppb0 at pci0 dev 28 function 0 "Intel 6 Series PCIE" rev 0xb4: msi
pci1 at ppb0 bus 2
ppb1 at pci0 dev 28 function 1 "Intel 6 Series PCIE" rev 0xb4: msi
pci2 at ppb1 bus 3
iwn0 at pci2 dev 0 function 0 "Intel Centrino Advanced-N 6205" rev 0x34: msi, MIMO 2T2R, MoW, address a0:88:b4:06:ab:78
ppb2 at pci0 dev 28 function 3 "Intel 6 Series PCIE" rev 0xb4: msi
pci3 at ppb2 bus 5
ppb3 at pci0 dev 28 function 4 "Intel 6 Series PCIE" rev 0xb4: msi
pci4 at ppb3 bus 13
"Ricoh 5U822 SD/MMC" rev 0x08 at pci4 dev 0 function 0 not configured
ehci1 at pci0 dev 29 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 23
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
"Intel QM67 LPC" rev 0x04 at pci0 dev 31 function 0 not configured
ahci0 at pci0 dev 31 function 2 "Intel 6 Series AHCI" rev 0x04: msi, AHCI 1.3
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: <ATA, HITACHI HTS72503, PC3Z> SCSI3 0/direct fixed naa.5000cca645db645d
sd0: 305245MB, 512 bytes/sector, 625142448 sectors
cd0 at scsibus0 targ 1 lun 0: <HL-DT-ST, DVDRAM GT33N, LT20> ATAPI 5/cdrom removable
"Intel 6 Series SMBus" rev 0x04 at pci0 dev 31 function 3 not configured
isa0 at mainbus0
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
uhub2 at uhub0 port 1 "vendor 0x8087 product 0x0024" rev 2.00/0.00 addr 2
uhidev0 at uhub2 port 2 configuration 1 interface 0 "vendor 0x046a product 0x0101" rev 2.00/0.07 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub2 port 2 configuration 1 interface 1 "vendor 0x046a product 0x0101" rev 2.00/0.07 addr 3
uhidev1: iclass 3/0, 3 report ids
uhid at uhidev1 reportid 1 not configured
uhid at uhidev1 reportid 2 not configured
uhid at uhidev1 reportid 3 not configured
uhidev2 at uhub2 port 2 configuration 1 interface 2 "vendor 0x046a product 0x0101" rev 2.00/0.07 addr 3
uhidev2: iclass 3/1
uhid at uhidev2 not configured
"UPEK Biometric Coprocessor" rev 1.01/0.02 addr 4 at uhub2 port 3 not configured
"Broadcom Corp Broadcom Bluetooth Device" rev 2.00/7.48 addr 5 at uhub2 port 4 not configured
uhub3 at uhub2 port 5 "vendor 0x17ef product 0x100a" rev 2.00/0.00 addr 6
"Chicony Electronics Co., Ltd. Integrated Camera" rev 2.00/7.51 addr 7 at uhub2 port 6 not configured
uhub4 at uhub1 port 1 "vendor 0x8087 product 0x0024" rev 2.00/0.00 addr 2
uhidev3 at uhub4 port 2 configuration 1 interface 0 "Logitech USB-PS/2 Optical Mouse" rev 2.00/22.00 addr 3
uhidev3: iclass 3/1
uhid at uhidev3 not configured
softraid0 at root
scsibus1 at softraid0: 256 targets
root on rd0a swap on rd0b dump on rd0b
syncing disks... done
rebooting...
OpenBSD 5.3-current (GENERIC.MP) #33: Sun Mar 24 13:15:26 MDT 2013
    deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
real mem = 17041059840 (16251MB)
avail mem = 16579727360 (15811MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.6 @ 0xdae9c000 (67 entries)
bios0: vendor LENOVO version "83ET69WW (1.39 )" date 03/26/2012
bios0: LENOVO 4180MBU
acpi0 at bios0: rev 2
acpi0: sleep states S0 S3 S4 S5
acpi0: tables DSDT FACP SLIC SSDT SSDT SSDT HPET APIC MCFG ECDT ASF! TCPA SSDT SSDT UEFI UEFI UEFI
acpi0: wakeup devices LID_(S3) SLPB(S3) IGBE(S4) EXP4(S4) EHC1(S3) EHC2(S3) HDEF(S4)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2592.01 MHz
cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu0: 256KB 64b/line 8-way L2 cache
cpu0: apic clock running at 99MHz
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2591.59 MHz
cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu1: 256KB 64b/line 8-way L2 cache
cpu2 at mainbus0: apid 2 (application processor)
cpu2: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2591.59 MHz
cpu2: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu2: 256KB 64b/line 8-way L2 cache
cpu3 at mainbus0: apid 3 (application processor)
cpu3: Intel(R) Core(TM) i5-2540M CPU @ 2.60GHz, 2591.59 MHz
cpu3: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,NXE,LONG,LAHF,PERF,ITSC
cpu3: 256KB 64b/line 8-way L2 cache
ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins
acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63
acpiec0 at acpi0
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus -1 (PEG_)
acpiprt2 at acpi0: bus 2 (EXP1)
acpiprt3 at acpi0: bus 3 (EXP2)
acpiprt4 at acpi0: bus 5 (EXP4)
acpiprt5 at acpi0: bus 13 (EXP5)
acpicpu0 at acpi0: C3, C1, PSS
acpicpu1 at acpi0: C3, C1, PSS
acpicpu2 at acpi0: C3, C1, PSS
acpicpu3 at acpi0: C3, C1, PSS
acpipwrres0 at acpi0: PUBS
acpitz0 at acpi0: critical temperature is 98 degC
acpibtn0 at acpi0: LID_
acpibtn1 at acpi0: SLPB
acpibat0 at acpi0: BAT0 not present
acpibat1 at acpi0: BAT1 not present
acpiac0 at acpi0: AC unit online
acpithinkpad0 at acpi0
cpu0: Enhanced SpeedStep 2592 MHz: speeds: 2601, 2600, 2400, 2200, 2000, 1800, 1600, 1400, 1200, 1000, 800 MHz
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel Core 2G Host" rev 0x09
vga1 at pci0 dev 2 function 0 "Intel HD Graphics 3000" rev 0x09
intagp0 at vga1
agp0 at intagp0: aperture at 0xe0000000, size 0x10000000
inteldrm0 at vga1
drm0 at inteldrm0
inteldrm0: apic 2 int 16
wsdisplay0 at vga1 mux 1: console (std, vt100 emulation)
wsdisplay0: screen 1-5 added (std, vt100 emulation)
"Intel 6 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured
puc0 at pci0 dev 22 function 3 "Intel 6 Series KT" rev 0x04: ports: 1 com
com2 at puc0 port 0 apic 2 int 19: ns16550a, 16 byte fifo
com2: probed fifo depth: 0 bytes
em0 at pci0 dev 25 function 0 "Intel 82579LM" rev 0x04: msi, address 00:21:cc:49:fc:72
ehci0 at pci0 dev 26 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 16
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 6 Series HD Audio" rev 0x04: msi
azalia0: codecs: Conexant/0x506e, Conexant/0x2c06, Intel/0x2805, using Conexant/0x506e
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 6 Series PCIE" rev 0xb4: msi
pci1 at ppb0 bus 2
ppb1 at pci0 dev 28 function 1 "Intel 6 Series PCIE" rev 0xb4: msi
pci2 at ppb1 bus 3
iwn0 at pci2 dev 0 function 0 "Intel Centrino Advanced-N 6205" rev 0x34: msi, MIMO 2T2R, MoW, address a0:88:b4:06:ab:78
ppb2 at pci0 dev 28 function 3 "Intel 6 Series PCIE" rev 0xb4: msi
pci3 at ppb2 bus 5
ppb3 at pci0 dev 28 function 4 "Intel 6 Series PCIE" rev 0xb4: msi
pci4 at ppb3 bus 13
sdhc0 at pci4 dev 0 function 0 "Ricoh 5U822 SD/MMC" rev 0x08: apic 2 int 16
sdmmc0 at sdhc0
ehci1 at pci0 dev 29 function 0 "Intel 6 Series USB" rev 0x04: apic 2 int 23
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
pcib0 at pci0 dev 31 function 0 "Intel QM67 LPC" rev 0x04
ahci0 at pci0 dev 31 function 2 "Intel 6 Series AHCI" rev 0x04: msi, AHCI 1.3
scsibus0 at ahci0: 32 targets
sd0 at scsibus0 targ 0 lun 0: <ATA, HITACHI HTS72503, PC3Z> SCSI3 0/direct fixed naa.5000cca645db645d
sd0: 305245MB, 512 bytes/sector, 625142448 sectors
cd0 at scsibus0 targ 1 lun 0: <HL-DT-ST, DVDRAM GT33N, LT20> ATAPI 5/cdrom removable
ichiic0 at pci0 dev 31 function 3 "Intel 6 Series SMBus" rev 0x04: apic 2 int 18
iic0 at ichiic0
spdmem0 at iic0 addr 0x50: 8GB DDR3 SDRAM PC3-10600 SO-DIMM
spdmem1 at iic0 addr 0x51: 8GB DDR3 SDRAM PC3-10600 SO-DIMM
isa0 at pcib0
isadma0 at isa0
pckbc0 at isa0 port 0x60/5
pckbd0 at pckbc0 (kbd slot)
pckbc0: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard, using wsdisplay0
pms0 at pckbc0 (aux slot)
pckbc0: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
wsmouse1 at pms0 mux 0
pms0: Synaptics touchpad, firmware 7.2
pcppi0 at isa0 port 0x61
spkr0 at pcppi0
aps0 at isa0 port 0x1600/31
mtrr: Pentium Pro MTRR support
uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhidev0 at uhub2 port 2 configuration 1 interface 0 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev0: iclass 3/1
ukbd0 at uhidev0: 8 variable keys, 6 key codes
wskbd1 at ukbd0 mux 1
wskbd1: connecting to wsdisplay0
uhidev1 at uhub2 port 2 configuration 1 interface 1 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev1: iclass 3/0, 3 report ids
uhid0 at uhidev1 reportid 1: input=2, output=0, feature=0
uhid1 at uhidev1 reportid 2: input=1, output=0, feature=0
uhid2 at uhidev1 reportid 3: input=0, output=8, feature=0
uhidev2 at uhub2 port 2 configuration 1 interface 2 "Cherry Mikroschalter product 0x0101" rev 2.00/0.07 addr 3
uhidev2: iclass 3/1
ums0 at uhidev2: 5 buttons, Z dir
wsmouse2 at ums0 mux 0
ugen0 at uhub2 port 3 "UPEK Biometric Coprocessor" rev 1.01/0.02 addr 4
ugen1 at uhub2 port 4 "Broadcom Corp Broadcom Bluetooth Device" rev 2.00/7.48 addr 5
uhub3 at uhub2 port 5 "Lenovo product 0x100a" rev 2.00/0.00 addr 6
uvideo0 at uhub2 port 6 configuration 1 interface 0 "Chicony Electronics Co., Ltd. Integrated Camera" rev 2.00/7.51 addr 7
video0 at uvideo0
uhub4 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2
uhidev3 at uhub4 port 2 configuration 1 interface 0 "Logitech USB-PS/2 Optical Mouse" rev 2.00/22.00 addr 3
uhidev3: iclass 3/1
ums1 at uhidev3: 8 buttons, Z dir
wsmouse3 at ums1 mux 0
vscsi0 at root
scsibus1 at vscsi0: 256 targets
softraid0 at root
scsibus2 at softraid0: 256 targets
root on sd0a (f394b3d1b51d48b6.a) swap on sd0b dump on sd0b
umass0 at uhub2 port 1 configuration 1 interface 0 "Generic Flash Disk" rev 2.00/1.00 addr 8
umass0: using SCSI over Bulk-Only
scsibus3 at umass0: 2 targets, initiator 0
sd1 at scsibus3 targ 1 lun 0: <Generic, Flash Disk, 5.00> SCSI2 0/direct removable serial.1e3d2095360200762504
sd1: 8036MB, 512 bytes/sector, 16457728 sectors
 
Zuletzt bearbeitet:
Zurück
Oben