On Sat, 11 Aug 2012, Alexis de BRUYN wrote: > On 02.08.2012 22:31, Alexis de BRUYN wrote: > > On 02.08.2012 21:48, Matthieu Herrb wrote: > >> > >> This is the xorg.conf I use to test wsudl: > >> > >> Section "Devicë > >> Identifier "Card0" > >> Driver "wsudl" > >> Option "Devicë "/dev/ttyD0" > >> EndSection > >> > >> (Yes that's it. Modern X can figure out everything else). > > Thanks for your help Matthieu, but I still have the issue (with OpenBSD > > snapshot amd64) : > > > > [ 22191.865] (II) LoadModule: "wsudl" > > [ 22191.865] (II) Loading /usr/X11R6/lib/modules/drivers/wsudl_drv.so > > [ 22191.865] (II) Module wsudl: vendor="X.Org Foundation" > > [ 22191.865] compiled for 1.12.2, module version = 0.2.1 > > [ 22191.865] ABI class: X.Org Video Driver, version 12.0 > > [ 22191.865] (II) wsudl: driver for: DisplayLink > > [ 22191.865] (WW) Falling back to old probe method for wsudl > > [ 22191.865] (II) wsudl(0): using /dev/ttyD0 > > [ 22191.865] (EE) wsudl(0): We are not attached to the udl driver > > [ 22191.865] (II) UnloadModule: "wsudl" > > [ 22191.865] (EE) Screen(s) found, but none have a usable configuration. > > [ 22191.865] > > Fatal server error: > > [ 22191.865] no screens found > > > Hi Everybody, > > I have restarted my tests, and found that /dev/ttyDO was missing, so I > did a sh MAKEDEV ttyD0 in /dev and now I can launch X. Thanks Matthieu. > > I am trying now to add a second usb display : > > udl0 at uhub6 port 2 "DisplayLink CONV-USB2DVI" rev 2.00/0.03 addr 4 > no data for est. mode 832x768x74 > no data for est. mode 640x480x67 > no data for est. mode 720x400x70 > max_dotclock according to supported modes: 162000 > wsdisplay1 at udl0 mux 1 > wsdisplay1: screen 0 added (std, vt100 emulation) > udl1 at uhub6 port 3 "DisplayLink CONV-USB2DVI" rev 2.00/0.03 addr 5 > no data for est. mode 832x768x74 > no data for est. mode 640x480x67 > no data for est. mode 720x400x70 > max_dotclock according to supported modes: 162000 > wsdisplay2 at udl1 mux 1 > wsdisplay2: screen 0 added (std, vt100 emulation) > > So I did sh MAKEDEV ttyD1, and modify my xorg.conf like,
Where did you get ttyD1 from? Try to add ttyE0. -mojx > Section "ServerLayout" > Identifier "Server Layout" > Screen 0 "Screen1" 0 0 > Screen 1 "Screen2" RightOf "Screen1" > Option "Xinerama" "On" > EndSection > > Section "Screen" > Identifier "Screen1" > Device "Card1" > EndSection > > Section "Screen" > Identifier "Screen2" > Device "Card2" > EndSection > > Section "Device" > Identifier "Card1" > Driver "wsudl" > Option "Device" "/dev/ttyD0" > EndSection > > Section "Device" > Identifier "Card2" > Driver "wsudl" > Option "Device" "/dev/ttyD1" > EndSection > > I have just one display working and the following error (complete log > after) : > [377893.438] (EE) wsudl(1): We are not attached to the udl driver > > Is my xorg.conf right? > Do I need to be more specific with BusID? > Can I use more than one ttyD* device? > > Thanks again for your help.