From matt at chronos.org.uk Sun Feb 1 04:34:11 2009 From: matt at chronos.org.uk (Matt Dawson) Date: Sun Feb 1 04:34:25 2009 Subject: Unhappy Xorg upgrade In-Reply-To: References: <200901311153.58361.vehemens@verizon.net> Message-ID: <200902011233.57132.matt@chronos.org.uk> On Saturday 31 January 2009 21:25:21 Alex Goncharov wrote: > So, a *fundamental* (practically an OS component) port is brought in > -- and it disables my system. ?What is my way of action? ?Right -- > install the old packages, taken from an FTP site (is there a way to > get the previous "source", that is all the ports/*/*/Makefile files? > Csup can only go forward -- or can it go back?) Yes, it can. Read the man page for csup. You can set something like tag=. date=2008.12.20.12.00.00 in your supfile and get back to (within reason) any historic point in the tree. You can also tell portupgrade, if you use it, to hold off on certain upgrades (try pkg_info -r xorg-7.3_2 for a full list of packages to hold in portupgrade.conf, HOLD_PKGS define) if you want to stay current, although I can see a few ports failing with odd deps after they've been touched by the Xorg bump, so you'd probably be better off using the supfile's date method to preserve compatibility between ports. No idea what magical incantation to feed to portmaster or portsnap as I've never used them. That is not to say the new Xorg doesn't work. The only problems I've seen on Radeons needed a couple of options lines in xorg.conf due to the hald/dbus/xorg race and an fdi to make the keyboard layout match what I actually have rather than "us". Easily fixed for now and 7.4 brings some fixes to my systems that I have been awaiting for quite some time, most notably the horrendous XPress 200M chipset now works with DRI. Best regards, -- Matt Dawson MTD15-RIPE matt@chronos.org.uk From alex-goncharov at comcast.net Sun Feb 1 05:11:24 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Sun Feb 1 05:11:30 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <200902011233.57132.matt@chronos.org.uk> (message from Matt Dawson on Sun, 1 Feb 2009 12:33:56 +0000) References: <200901311153.58361.vehemens@verizon.net> <200902011233.57132.matt@chronos.org.uk> Message-ID: ,--- You/Matt (Sun, 1 Feb 2009 12:33:56 +0000) ----* | Yes, it can. Read the man page for csup. You can set something like | tag=. date=2008.12.20.12.00.00 in your supfile and get back to (within reason) | any historic point in the tree. That is wonderfully nice -- thank you. | You can also tell portupgrade, if you use it, to hold off on certain | upgrades (try pkg_info -r xorg-7.3_2 for a full list of packages to | hold in portupgrade.conf, HOLD_PKGS define) if you want to stay | current, although I can see a few ports failing with odd deps after | they've been touched by the Xorg bump, so you'd probably be better | off using the supfile's date method to preserve compatibility | between ports. OK, now the idea of how to keep a part of my port system old and the other part new is beginning to shape in my head... A bit of pain but should be doable. | That is not to say the new Xorg doesn't work. The only problems I've | seen on Radeons needed a couple of options lines in xorg.conf due to | the hald/dbus/xorg race and an fdi to make the keyboard layout match | what I actually have rather than "us". Easily fixed for now and 7.4 | brings some fixes to my systems that I have been awaiting for quite | some time, most notably the horrendous XPress 200M chipset now works | with DRI. Knowing about specific things now fixed for specific users is very encouraging. Thanks a lot! -- Alex -- alex-goncharov@comcast.net -- From matt at chronos.org.uk Sun Feb 1 06:17:26 2009 From: matt at chronos.org.uk (Matt Dawson) Date: Sun Feb 1 06:17:39 2009 Subject: Unhappy Xorg upgrade In-Reply-To: References: <200901311153.58361.vehemens@verizon.net> <200902011233.57132.matt@chronos.org.uk> Message-ID: <200902011417.18045.matt@chronos.org.uk> On Sunday 01 February 2009 13:11:21 Alex Goncharov wrote: > On Sun, 1 Feb 2009 12:33:56 +0000 I wrote: > | That is not to say the new Xorg doesn't work. The only problems I've > | seen on Radeons needed a couple of options lines in xorg.conf due to > | the hald/dbus/xorg race and an fdi to make the keyboard layout match > | what I actually have rather than "us". Easily fixed for now and 7.4 > | brings some fixes to my systems that I have been awaiting for quite > | some time, most notably the horrendous XPress 200M chipset now works > | with DRI. > > Knowing about specific things now fixed for specific users is very > encouraging. I had better post to the lists exactly what I did, having thrown that encouraging word out: Ensure the files section doesn't contain anything like RGBPath if you've upgraded, then add Option "AllowEmptyInput" "False" and Option "AutoAddDevices" "False" to the server layout section in xorg.conf. Then create a file ${LOCALBASE}/etc/hal/fdi/policy/x11-input.fdi with the following contents: gb Restart hald etc. This cleared up all issues of not playing nice with moused, missing keyboards and quotemarks on my @ key ;o) Obviously, you'll want to replace "gb" with whatever layout you require from ${LOCALBASE}/share/X11/xkb/symbols/. Note I have not tried hotplugging a USB mouse on this configuration. That's to come on the laptop, which works fine with its trackpad (although middle and right clicks have been redefined to three and two finger taps respectively - it was the other way around) with the updated xf86-input-synaptics driver. Which brings me to another little niggle: > Thanks a lot! You're very welcome. Best regards, -- Matt Dawson MTD15-RIPE matt@chronos.org.uk From alex-goncharov at comcast.net Sun Feb 1 06:37:35 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Sun Feb 1 06:37:47 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <200902011417.18045.matt@chronos.org.uk> (message from Matt Dawson on Sun, 1 Feb 2009 14:17:16 +0000) References: <200901311153.58361.vehemens@verizon.net> <200902011233.57132.matt@chronos.org.uk> <200902011417.18045.matt@chronos.org.uk> Message-ID: ,--- I/Alex (Sun, 01 Feb 2009 08:11:21 -0500) ----* | Knowing about specific things now fixed for specific users is very | encouraging. | | Thanks a lot! `-------------------------------------------------* ,--- You/Matt (Sun, 1 Feb 2009 14:17:16 +0000) ----* | I had better post to the lists exactly what I did, having thrown that | encouraging word out: I'll make a pass on your list, to compare notes etc. | Ensure the files section doesn't contain anything like RGBPath if | you've upgraded, then add Option "AllowEmptyInput" "False" and | Option "AutoAddDevices" "False" to the server layout section in | xorg.conf. I did that -- when I was using HAL. | Then create a file ${LOCALBASE}/etc/hal/fdi/policy/x11-input.fdi | with the following contents: | | | | | | gb | | | Not applicable to me, here in the USA. | Restart hald etc. Not applicable to me, running without HAL. | This cleared up all issues of not playing nice with moused, missing keyboards | and quotemarks on my @ key ;o) Obviously, you'll want to replace "gb" with | whatever layout you require from ${LOCALBASE}/share/X11/xkb/symbols/. Note I | have not tried hotplugging a USB mouse on this configuration. That's to come | on the laptop, which works fine with its trackpad (although middle and right | clicks have been redefined to three and two finger taps respectively - it was | the other way around) with the updated xf86-input-synaptics driver. This is an interesting bit... So, I have a lousy new X on a desktop, and had a fully disfunctional one on my Latitude notebook (due to "crazy" keyboard" events), the latter being reverted to xorg-server 1.4. The laptop has a touch pad, which is reasonable to assume to be "synaptics" -- but I don't use the pad (I've physically covered it, and use only the "pointing stick" in the middle of the keyboard); during one my experiments I also disabled the thing in BIOS. And: I have never used the xf86-input-synaptics driver. Is this something to think about -- what is the role of this driver? Can the lack of it bring the storm of bogus key events with wrong scan codes? | Which brings me to another little niggle: I can't comment on it -- but why to do it: why not to use the xkb extensions (Option "XkbLayout" "gb" -- or something of that sort)? -- Alex -- alex-goncharov@comcast.net -- From matt at chronos.org.uk Sun Feb 1 07:53:00 2009 From: matt at chronos.org.uk (Matt Dawson) Date: Sun Feb 1 07:53:06 2009 Subject: Unhappy Xorg upgrade In-Reply-To: References: <200901311153.58361.vehemens@verizon.net> <200902011417.18045.matt@chronos.org.uk> Message-ID: <200902011552.48414.matt@chronos.org.uk> On Sunday 01 February 2009 14:37:32 Alex Goncharov wrote: > he laptop has a touch pad, which is reasonable to assume to be > "synaptics" -- but I don't use the pad (I've physically covered it, > and use only the "pointing stick" in the middle of the keyboard); > during one my experiments I also disabled the thing in BIOS. > > And: I have never used the xf86-input-synaptics driver. > > Is this something to think about -- what is the role of this driver? > Can the lack of it bring the storm of bogus key events with wrong scan > codes? Just tried dropping the synaptics driver and option in loader.conf (it needs hw.psm.synaptics_support in /boot/loader.conf or it gets picked up as an Intellimouse) and it works as a standard mouse. The keyboard is still fine with no spurious events. The synaptics driver opens up a lot of features on the trackpad (right hand side becomes a scroll "wheel", the bottom edge becomes a horizontal scroll, it picks up multi-taps and you can tweak much of it in xorg.conf) but I don't think this is the cause of your issue. FYI, this laptop is an ECS 331, RS485 chipset with a Turion ML34 CPU running 7-STABLE amd64 from Jan 12th. If anyone's interested (on x11@), I did just plug a USB mouse in and it Just Worked [TM] without me having to mess with anything. > | Which brings me to another little niggle: > > I can't comment on it -- but why to do it: why not to use the xkb > extensions (Option "XkbLayout" "gb" -- or something of that sort)? This was a general question to stable@ since I use the console a lot on servers and this used to stop me putting things like securelevel_enable=@YES@ into rc.conf and rebooting without noticing what I'd done, then engaging in percussive maintenance because it refuses to boot ;o) -- Matt Dawson MTD15-RIPE matt@chronos.org.uk From rnoland at FreeBSD.org Sun Feb 1 08:41:28 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 1 08:41:34 2009 Subject: xf86-video-nouveau In-Reply-To: <863aeyhd7f.fsf@gmail.com> References: <863aeyhd7f.fsf@gmail.com> Message-ID: <1233506480.1534.38.camel@ferret.2hip.net> On Sun, 2009-02-01 at 09:40 +0300, swell.k@gmail.com wrote: > Can someone on the list tell if it's good idea to send a PR with > only DDX part of nouveau driver? It works on my system which is: > > FreeBSD 8-CURRENT amd64 with GeForce 9600 GT, no DRM module > Xorg.0.log - http://pastebin.com/f34b1ff30 > > There was even one report that this driver worked where xf86-video-nv > didn't. I think I looked into this briefly a little while back. Thanks for putting this together. Go ahead and send-pr and ask to assign it to me, or just send me the pr #. I can't test it, other than to verify the build, but I will consult the nouveau guys about the build issue. robert. > In the port's distfile there is ChangeLog file which is basically > `git log --stat'. Current revision in git doesn't work on my system > since commit 410788dc896d99b658508e3a7ebcb4940a039f35, that's why > the port is not about latest snapshot. > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090201/15350c40/attachment.pgp From gaijin.k at gmail.com Sun Feb 1 09:03:32 2009 From: gaijin.k at gmail.com (Alexandre "Sunny" Kovalenko) Date: Sun Feb 1 09:03:38 2009 Subject: Unhappy Xorg upgrade In-Reply-To: References: <200901311153.58361.vehemens@verizon.net> Message-ID: <1233507786.61410.9.camel@RabbitsDen> On Sat, 2009-01-31 at 16:25 -0500, Alex Goncharov wrote: > ,--- You/vehemens (Sat, 31 Jan 2009 11:53:58 -0800) ----* > | In general when upgrading, you take your chances. If a port upgrade > | fails, you should fall back to what worked. > > So, a *fundamental* (practically an OS component) port is brought in > -- and it disables my system. What is my way of action? Right -- > install the old packages, taken from an FTP site (is there a way to > get the previous "source", that is all the ports/*/*/Makefile files? > Csup can only go forward -- or can it go back?) > > When I install the old packages, I can no longer rebuild and install > new (say `csup'ed on 2009-03-01) port components, as one whole -- I > can only do it selectively, excluding from the upgrade most > X-dependent things. That sucks and will lead to a problem earlier or > later. Will combination of sysutils/portdowngrade and HOLD_PKGS variable in /usr/local/etc/pkgtools.conf accomplish what you are trying to accomplish? -- Alexandre "Sunny" Kovalenko From tundra at tundraware.com Sun Feb 1 10:18:11 2009 From: tundra at tundraware.com (Tim Daneliuk) Date: Sun Feb 1 10:18:18 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <1233507786.61410.9.camel@RabbitsDen> References: <200901311153.58361.vehemens@verizon.net> <1233507786.61410.9.camel@RabbitsDen> Message-ID: <4985E752.3080503@tundraware.com> Alexandre "Sunny" Kovalenko wrote: > On Sat, 2009-01-31 at 16:25 -0500, Alex Goncharov wrote: >> ,--- You/vehemens (Sat, 31 Jan 2009 11:53:58 -0800) ----* >> | In general when upgrading, you take your chances. If a port upgrade >> | fails, you should fall back to what worked. >> >> So, a *fundamental* (practically an OS component) port is brought in >> -- and it disables my system. What is my way of action? Right -- >> install the old packages, taken from an FTP site (is there a way to >> get the previous "source", that is all the ports/*/*/Makefile files? >> Csup can only go forward -- or can it go back?) >> >> When I install the old packages, I can no longer rebuild and install >> new (say `csup'ed on 2009-03-01) port components, as one whole -- I >> can only do it selectively, excluding from the upgrade most >> X-dependent things. That sucks and will lead to a problem earlier or >> later. > Will combination of sysutils/portdowngrade and HOLD_PKGS variable > in /usr/local/etc/pkgtools.conf accomplish what you are trying to > accomplish? > I spend a fair amount of time doing data center consulting professionally, and the idea of incremental upgrade/ regressions terrifies IT operations people. New production systems are first tested in a non-production mode, and then staged to production. In light of these kinds of issues, some time ago, I came up with a scheme to do "snapshots" of running FreeBSD (or Linux, for that matter) systems. This makes easy to (re)image a given server with a known good production configuration. It is built around an almost trivial backup shell script I did a long time ago: http://www.tundraware.com/Software/tbku/ Specific FreeBSD imaging info using 'tbku' is there as well: http://www.tundraware.com/Software/tbku/Imaging-FreeBSD-With-tbku.html This general approach has saved my on a number of occasions, and I regularly shoot system snapshots of my stable server configurations "just in case"... ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From tundra at tundraware.com Sun Feb 1 10:32:08 2009 From: tundra at tundraware.com (Tim Daneliuk) Date: Sun Feb 1 10:32:15 2009 Subject: Can These Drivers Be Forcibly Removed From As Xorg Dependencies? Message-ID: <4985EA97.5040208@tundraware.com> I have mostly managed to get xorg updated, at least up to a point. portupgrade --batch -a -n reports: ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) - x11-drivers/xf86-video-vga (marked as IGNORE) - x11-drivers/xf86-video-via (marked as IGNORE) * x11-drivers/xorg-drivers (xorg-drivers-7.3_3) * x11/xorg (xorg-7.3_2) Can I safely do a forced removal of the vga and via drivers, and then a pkgdb -FLa to rebuild dependencies, thereby (hopefully) allowing the rest of the xorg update to be portupgraded successfully? TIA, -- ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ From patfbsd at davenulle.org Sun Feb 1 11:03:37 2009 From: patfbsd at davenulle.org (Patrick =?ISO-8859-15?Q?Lamaizi=E8re?=) Date: Sun Feb 1 11:03:44 2009 Subject: Xorg7.4 with hal: no keyboard. Message-ID: <20090201194754.13ecae25@baby-jane.lamaiziere.net> Hello, With Xorg 7.4 and hal my keyboard does not work. It is the internal keyboard of a Macbook pro. (without hal the keyboard works but I've got the mouse problem "X hangs until mouse is moved") Any idea? Thanks. (II) config/hal: Adding input device Apple Internal Keyboard / Trackpad (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) Apple Internal Keyboard / Trackpad: always reports core events (**) Option "Protocol" "standard" (**) Apple Internal Keyboard / Trackpad: Protocol: standard (**) Option "Device" "/dev/ukbd1" (EE) Apple Internal Keyboard / Trackpad: cannot open "/dev/ukbd1" (EE) PreInit failed for input device "Apple Internal Keyboard / Trackpad" (II) UnloadModule: "kbd" (EE) config/hal: NewInputDeviceRequest failed ~$ dmesg | grep ukbd ukbd0: on uhub0 kbd1 at ukbd0 kbd1: ukbd0, generic (0), config:0x0, flags:0x3d0000 ukbd1: on uhub5 kbd2 at ukbd1 kbd2: ukbd1, generic (0), config:0x0, flags:0x3d0000 Don't know why there are two ukbd here... Regards. From alex-goncharov at comcast.net Sun Feb 1 11:11:11 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Sun Feb 1 11:11:18 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <1233507786.61410.9.camel@RabbitsDen> (gaijin.k@gmail.com) References: <200901311153.58361.vehemens@verizon.net> <1233507786.61410.9.camel@RabbitsDen> Message-ID: ,--- Alexandre \ (Sun, 01 Feb 2009 12:03:06 -0500) ----* | > When I install the old packages, I can no longer rebuild and install | > new (say `csup'ed on 2009-03-01) port components, as one whole -- I | > can only do it selectively, excluding from the upgrade most | > X-dependent things. That sucks and will lead to a problem earlier or | > later. | Will combination of sysutils/portdowngrade and HOLD_PKGS variable | in /usr/local/etc/pkgtools.conf accomplish what you are trying to | accomplish? `------------------------------------------------------* I'll try something of that nature (not today) with your and other people's advice. Thank you! -- Alex -- alex-goncharov@comcast.net -- From rnoland at FreeBSD.org Sun Feb 1 11:37:18 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 1 11:37:25 2009 Subject: Can These Drivers Be Forcibly Removed From As Xorg Dependencies? In-Reply-To: <4985EA97.5040208@tundraware.com> References: <4985EA97.5040208@tundraware.com> Message-ID: <1233517001.1534.51.camel@ferret.2hip.net> On Sun, 2009-02-01 at 12:31 -0600, Tim Daneliuk wrote: > I have mostly managed to get xorg updated, at least up to a point. > portupgrade --batch -a -n reports: > > ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) > - x11-drivers/xf86-video-vga (marked as IGNORE) > - x11-drivers/xf86-video-via (marked as IGNORE) > * x11-drivers/xorg-drivers (xorg-drivers-7.3_3) > * x11/xorg (xorg-7.3_2) > > Can I safely do a forced removal of the vga and via drivers, > and then a pkgdb -FLa to rebuild dependencies, thereby (hopefully) > allowing the rest of the xorg update to be portupgraded successfully? Yes, in fact, I recommend it. robert. > TIA, -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090201/f2261ac7/attachment.pgp From amarat at ksu.ru Sun Feb 1 11:55:56 2009 From: amarat at ksu.ru (Marat N.Afanasyev) Date: Sun Feb 1 11:56:04 2009 Subject: gmplayer trouble In-Reply-To: <200901311434.34193.dmk@ncf.ca> References: <200901311434.34193.dmk@ncf.ca> Message-ID: <4985F74E.20303@ksu.ru> Dwayne MacKinnon wrote: > Hi all, > > I'm having the exact same problem as Marat when trying to run gmplayer. > mplayer works fine. > > MPlayer 1.0rc2-4.2.1 (C) 2000-2007 MPlayer Team > CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ (Family: 15, Model: > 107, Stepping: 2) > CPUflags: MMX: 1 MMX2: 1 3DNow: 1 3DNow2: 1 SSE: 1 SSE2: 1 > Compiled for x86 CPU with extensions: MMX MMX2 3DNow 3DNowEx SSE > SSE2 > [ws] Error in display. > [ws] Error code: 10 ( BadAccess (attempt to access private resource denied) ) > [ws] Request code: 148 > [ws] Minor code: 1 > [ws] Modules: (NULL) > > I'm running 7.1-RELEASE i386 with a nVidia GeForce 7330 card, running Xorg > 7.4 (compiled from ports) and the nvidia-driver port. > > I'll also mentioned that I recompiled and reinstalled the mplayer port. Didn't > help. > > Cheers, > DMK > we're discussing this in [1], but still without any solution [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=130966 -- SY, Marat From alex-goncharov at comcast.net Sun Feb 1 13:02:18 2009 From: alex-goncharov at comcast.net (Alex Goncharov) Date: Sun Feb 1 13:02:35 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <20090201204815.GL65672@over-yonder.net> (fullermd@over-yonder.net) References: <200901311153.58361.vehemens@verizon.net> <20090201204815.GL65672@over-yonder.net> Message-ID: ,--- You/Matthew (Sun, 1 Feb 2009 14:48:15 -0600) ----* | On Sat, Jan 31, 2009 at 04:25:21PM -0500 I heard the voice of | Alex Goncharov, and lo! it spake thus: | > Csup can only go forward -- or can it go back?) | | You can specify a date in a supfile since, like, ever. `-----------------------------------------------------* Yes, other people have already pointed this out and I just got the code as of 2009.01.23.12.00.00 -- four hours before the first submission of the new X. Now I just need to think through my next steps :-) Thank you! -- Alex -- alex-goncharov@comcast.net -- From fullermd at over-yonder.net Sun Feb 1 13:05:51 2009 From: fullermd at over-yonder.net (Matthew D. Fuller) Date: Sun Feb 1 13:05:57 2009 Subject: Unhappy Xorg upgrade In-Reply-To: References: <200901311153.58361.vehemens@verizon.net> Message-ID: <20090201204815.GL65672@over-yonder.net> On Sat, Jan 31, 2009 at 04:25:21PM -0500 I heard the voice of Alex Goncharov, and lo! it spake thus: > > Csup can only go forward -- or can it go back?) You can specify a date in a supfile since, like, ever. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From linimon at FreeBSD.org Sun Feb 1 14:30:16 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 1 14:30:26 2009 Subject: ports/131192: x11/xorg: Bad message after an update... Message-ID: <200902012230.n11MUEeq063932@freefall.freebsd.org> Old Synopsis: x11: Bad message after an update... New Synopsis: x11/xorg: Bad message after an update... Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 1 22:29:45 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131192 From rnoland at FreeBSD.org Sun Feb 1 17:32:32 2009 From: rnoland at FreeBSD.org (rnoland@FreeBSD.org) Date: Sun Feb 1 17:32:38 2009 Subject: ports/131192: x11/xorg: Bad message after an update... Message-ID: <200902020132.n121WV7q010127@freefall.freebsd.org> Synopsis: x11/xorg: Bad message after an update... State-Changed-From-To: open->closed State-Changed-By: rnoland State-Changed-When: Mon Feb 2 01:32:30 UTC 2009 State-Changed-Why: This message is harmless http://www.freebsd.org/cgi/query-pr.cgi?pr=131192 From rnoland at FreeBSD.org Sun Feb 1 17:40:08 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 1 17:40:14 2009 Subject: ports/131192: x11/xorg: Bad message after an update... Message-ID: <200902020140.n121e7fQ011406@freefall.freebsd.org> The following reply was made to PR ports/131192; it has been noted by GNATS. From: Robert Noland To: bug-followup@FreeBSD.org, eric.douzet@laposte.net Cc: Subject: Re: ports/131192: x11/xorg: Bad message after an update... Date: Sun, 01 Feb 2009 20:31:22 -0500 --=-elN9DxQZYVc86YcQhiQK Content-Type: text/plain Content-Transfer-Encoding: quoted-printable This message is harmless. It indicates that libXext has support for XGE, (X Generic Events) but the server does not yet have support for them. Server 1.6 will support them. robert. --=20 Robert Noland FreeBSD --=-elN9DxQZYVc86YcQhiQK Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEABECAAYFAkmGTOoACgkQM4TrQ4qfROMKbgCfRT4IJbXqROqesaFl0M5vnKrf FnoAn3445ft9N2P4XRT/QcxGZuLvgBRi =kxw8 -----END PGP SIGNATURE----- --=-elN9DxQZYVc86YcQhiQK-- From chat95 at mac.com Sun Feb 1 20:16:06 2009 From: chat95 at mac.com (Maho NAKATA) Date: Sun Feb 1 20:16:12 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <1232928822.40891.24.camel@hood.oook.cz> References: <1232790471.16190.2.camel@hood.oook.cz> <20090126.090941.71165646.chat95@mac.com> <1232928822.40891.24.camel@hood.oook.cz> Message-ID: <20090202.131528.241925472.chat95@mac.com> Hi Shaun (Cc: Florent and Pav) Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". Consequently, my port graphics/f90gl has been broken. You can also remove files/Makefile as it is not referenced. Thanks Florent for your tough work for Xorg 7.4. I was bit busy at that time. [1] --- ports/graphics/libglut/Makefile 2009-01-25 06:45:05.000000000 +0900 +++ ports/graphics/libglut/Makefile 2009-02-02 13:01:40.000000000 +0900 @@ -7,6 +7,7 @@ PORTNAME= libglut PORTVERSION= ${MESAVERSION} +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= shaun@FreeBSD.org @@ -18,6 +19,9 @@ do-install: cd ${WRKSRC}/src/glut/glx; ${GMAKE} install + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ + ${WRKSRC}/include/GL/glutf90.h \ + ${PREFIX}/include/GL .include "${.CURDIR}/../../graphics/libGL/bsd.mesalib.mk" .include --- ports/graphics/libglut/pkg-plist 2009-01-24 01:27:38.000000000 +0900 +++ ports/graphics/libglut/pkg-plist 2009-02-02 12:54:31.000000000 +0900 @@ -1,4 +1,5 @@ include/GL/glut.h +include/GL/glutf90.h lib/libglut.so lib/libglut.so.3 libdata/pkgconfig/glut.pc ------------------------------------ Best regards, -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ From swell.k at gmail.com Sun Feb 1 21:43:29 2009 From: swell.k at gmail.com (swell.k@gmail.com) Date: Sun Feb 1 21:43:35 2009 Subject: xf86-video-nouveau References: <863aeyhd7f.fsf@gmail.com> <1233506480.1534.38.camel@ferret.2hip.net> Message-ID: <86wsc9pf5w.fsf@gmail.com> Robert Noland writes: > On Sun, 2009-02-01 at 09:40 +0300, swell.k@gmail.com wrote: >> Can someone on the list tell if it's good idea to send a PR with >> only DDX part of nouveau driver? It works on my system which is: >> >> FreeBSD 8-CURRENT amd64 with GeForce 9600 GT, no DRM module >> Xorg.0.log - http://pastebin.com/f34b1ff30 >> >> There was even one report that this driver worked where xf86-video-nv >> didn't. As reporter says this was on integrated C51PV [GeForce 6150] and AL2051W. > > I think I looked into this briefly a little while back. Thanks for > putting this together. Go ahead and send-pr and ask to assign it to me, > or just send me the pr #. Well, I was surprised that it worked without modifications, too. The PR number is `ports/131276'. There is one known issue in it: switching from Xserver to syscons and back to Xserver causes the latter to crash. > > I can't test it, other than to verify the build, but I will consult the > nouveau guys about the build issue. > > robert. > >> In the port's distfile there is ChangeLog file which is basically >> `git log --stat'. Current revision in git doesn't work on my system >> since commit 410788dc896d99b658508e3a7ebcb4940a039f35, that's why >> the port is not about latest snapshot. From rnoland at FreeBSD.org Sun Feb 1 21:58:41 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 1 21:58:48 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <20090202.131528.241925472.chat95@mac.com> References: <1232790471.16190.2.camel@hood.oook.cz> <20090126.090941.71165646.chat95@mac.com> <1232928822.40891.24.camel@hood.oook.cz> <20090202.131528.241925472.chat95@mac.com> Message-ID: <1233554312.1492.1.camel@ferret.2hip.net> On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: > Hi Shaun > (Cc: Florent and Pav) > > Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? > > Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". > Consequently, my port graphics/f90gl has been broken. You can also remove > files/Makefile as it is not referenced. I can commit this, someone just give me the word. robert. > Thanks Florent for your tough work for Xorg 7.4. I was bit busy at that time. > > [1] > --- ports/graphics/libglut/Makefile 2009-01-25 06:45:05.000000000 +0900 > +++ ports/graphics/libglut/Makefile 2009-02-02 13:01:40.000000000 +0900 > @@ -7,6 +7,7 @@ > > PORTNAME= libglut > PORTVERSION= ${MESAVERSION} > +PORTREVISION= 1 > CATEGORIES= graphics > > MAINTAINER= shaun@FreeBSD.org > @@ -18,6 +19,9 @@ > > do-install: > cd ${WRKSRC}/src/glut/glx; ${GMAKE} install > + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \ > + ${WRKSRC}/include/GL/glutf90.h \ > + ${PREFIX}/include/GL > > .include "${.CURDIR}/../../graphics/libGL/bsd.mesalib.mk" > .include > > --- ports/graphics/libglut/pkg-plist 2009-01-24 01:27:38.000000000 +0900 > +++ ports/graphics/libglut/pkg-plist 2009-02-02 12:54:31.000000000 +0900 > @@ -1,4 +1,5 @@ > include/GL/glut.h > +include/GL/glutf90.h > lib/libglut.so > lib/libglut.so.3 > libdata/pkgconfig/glut.pc > > ------------------------------------ > > Best regards, > -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/62e1450a/attachment.pgp From chat95 at mac.com Sun Feb 1 22:02:46 2009 From: chat95 at mac.com (Maho NAKATA) Date: Sun Feb 1 22:02:53 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <1233554312.1492.1.camel@ferret.2hip.net> References: <1232928822.40891.24.camel@hood.oook.cz> <20090202.131528.241925472.chat95@mac.com> <1233554312.1492.1.camel@ferret.2hip.net> Message-ID: <20090202.150208.123997353.chat95@mac.com> From: Robert Noland Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] Date: Mon, 02 Feb 2009 00:58:32 -0500 > On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: >> Hi Shaun >> (Cc: Florent and Pav) >> >> Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? >> >> Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". >> Consequently, my port graphics/f90gl has been broken. You can also remove >> files/Makefile as it is not referenced. > > I can commit this, someone just give me the word. yes, me too, if Shaun approves, he or I can commit immediately :) Best, -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ From drl at bsd.my Sun Feb 1 22:57:46 2009 From: drl at bsd.my (Darryl Yeoh) Date: Sun Feb 1 22:57:53 2009 Subject: Unhappy Xorg upgrade Message-ID: <20090202145741.7fe1a387.drl@bsd.my> Hi Matt, > Just tried dropping the synaptics driver and option in loader.conf (it needs > hw.psm.synaptics_support in /boot/loader.conf or it gets picked up as an Intellimouse) and it works > as a standard mouse. The keyboard is still fine with no spurious events. The synaptics driver opens > up a lot of features on the trackpad (right hand side becomes a scroll "wheel", the bottom edge > becomes a horizontal scroll, it picks up multi-taps and you can tweak much of it in xorg.conf) but > I don't think this is the cause of your issue. Did you manage to fully test out the synaptics driver ? I've had horrible experience with it. If you allow hald to manage input devices (mouse/keyboard) on your laptop, the touchpad barely works. (no scrolling, no tapping, slow acceleration). I've had to run Xorg without hald managing those devices. Even configuring /usr/local/etc/hal/fdi/policy/x11-synaptics.fdi doesn't seem to do much. I've also went ahead and tried recompiling Xorg without hal support and on reboot my laptop freezes the minute it see's the console login screen. Looks like the hal option is mandatory. > FYI, this laptop is an ECS 331, RS485 chipset with a Turion ML34 CPU running 7-STABLE amd64 from > Jan 12th. Same chipset here, except I have a Turion ML-50 running 7-STABLE i386 from Jan 30th. > If anyone's interested (on x11@), I did just plug a USB mouse in and it Just Worked [TM] without me > having to mess with anything. Works on mine as well. Darryl Please reply/CC to me as I'm not subscribe to the mailinglists. From drl at bsd.my Sun Feb 1 23:22:50 2009 From: drl at bsd.my (Darryl Yeoh) Date: Sun Feb 1 23:22:56 2009 Subject: Xorg7.4 with hal: no keyboard. Message-ID: <20090202152246.73c802e4.drl@bsd.my> Hi Patrick, > With Xorg 7.4 and hal my keyboard does not work. It is the internal keyboard of a Macbook pro. > (without hal the keyboard works but I've got the mouse problem "X hangs until mouse is moved") I don't have a Mac, but you could try this if you haven't. Add this options somewhere at the top of your previously working xorg.conf: Section "ServerFlags" Option "AllowEmptyInput" "off" Option "AutoAddDevices" "off" EndSection Restart X. Darryl From chat95 at mac.com Mon Feb 2 00:08:49 2009 From: chat95 at mac.com (Maho NAKATA) Date: Mon Feb 2 00:08:56 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <1233561638.26576.0.camel@pav.hide.vol.cz> References: <1233554312.1492.1.camel@ferret.2hip.net> <20090202.150208.123997353.chat95@mac.com> <1233561638.26576.0.camel@pav.hide.vol.cz> Message-ID: <20090202.170812.183054355.chat95@mac.com> From: Pav Lucistnik Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] Date: Mon, 02 Feb 2009 09:00:38 +0100 > Maho NAKATA p?e v po 02. 02. 2009 v 15:02 +0900: >> From: Robert Noland >> Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] >> Date: Mon, 02 Feb 2009 00:58:32 -0500 >> >> > On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: >> >> Hi Shaun >> >> (Cc: Florent and Pav) >> >> >> >> Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? >> >> >> >> Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". >> >> Consequently, my port graphics/f90gl has been broken. You can also remove >> >> files/Makefile as it is not referenced. >> > >> > I can commit this, someone just give me the word. >> >> yes, me too, if Shaun approves, he or I can commit immediately :) > > As shaun has been inactive lately (last commit Nov 2008), I'd say > someone with x11 hat can commit it (flz or rnoland). Understand :) Thanks for explanation! -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ From pav at FreeBSD.org Mon Feb 2 00:21:02 2009 From: pav at FreeBSD.org (Pav Lucistnik) Date: Mon Feb 2 00:21:33 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <20090202.150208.123997353.chat95@mac.com> References: <1232928822.40891.24.camel@hood.oook.cz> <20090202.131528.241925472.chat95@mac.com> <1233554312.1492.1.camel@ferret.2hip.net> <20090202.150208.123997353.chat95@mac.com> Message-ID: <1233561638.26576.0.camel@pav.hide.vol.cz> Maho NAKATA p??e v po 02. 02. 2009 v 15:02 +0900: > From: Robert Noland > Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] > Date: Mon, 02 Feb 2009 00:58:32 -0500 > > > On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: > >> Hi Shaun > >> (Cc: Florent and Pav) > >> > >> Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? > >> > >> Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". > >> Consequently, my port graphics/f90gl has been broken. You can also remove > >> files/Makefile as it is not referenced. > > > > I can commit this, someone just give me the word. > > yes, me too, if Shaun approves, he or I can commit immediately :) As shaun has been inactive lately (last commit Nov 2008), I'd say someone with x11 hat can commit it (flz or rnoland). -- Pav Lucistnik Orfax's hip flask contained Old Janx Spirit, a mixture of potions of stupidity, paralysis, naivery, ruination, lose memories, confusion, and slime mold juice, with a twist of lemon. - from a post on Angband Community Forum -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/26ac932a/attachment.pgp From chat95 at mac.com Mon Feb 2 00:46:46 2009 From: chat95 at mac.com (Maho NAKATA) Date: Mon Feb 2 00:46:53 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <20090202083923.GA36635@charon.picobyte.net> References: <1233554312.1492.1.camel@ferret.2hip.net> <20090202.150208.123997353.chat95@mac.com> <20090202083923.GA36635@charon.picobyte.net> Message-ID: <20090202.174544.59695918.chat95@mac.com> Hi Shaun, and * Done. Thank you very much! Best regards, Nakata Maho From: Shaun Amott Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] Date: Mon, 02 Feb 2009 08:39:24 +0000 > On Mon, Feb 02, 2009 at 03:02:08PM +0900, Maho NAKATA wrote: >> >> From: Robert Noland >> Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] >> Date: Mon, 02 Feb 2009 00:58:32 -0500 >> >> > On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: >> >> Hi Shaun >> >> (Cc: Florent and Pav) >> >> >> >> Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? >> >> >> >> Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". >> >> Consequently, my port graphics/f90gl has been broken. You can also remove >> >> files/Makefile as it is not referenced. >> > >> > I can commit this, someone just give me the word. >> >> yes, me too, if Shaun approves, he or I can commit immediately :) >> > > Approved. > > You can also reset to ports@ or take over while you're there - not sure > why I've even got this port. > > Shaun > > -- > Shaun Amott // PGP: 0x6B387A9A > "A foolish consistency is the hobgoblin > of little minds." - Ralph Waldo Emerson > From shaun at FreeBSD.org Mon Feb 2 01:07:58 2009 From: shaun at FreeBSD.org (Shaun Amott) Date: Mon Feb 2 01:08:05 2009 Subject: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] In-Reply-To: <20090202.150208.123997353.chat95@mac.com> References: <1232928822.40891.24.camel@hood.oook.cz> <20090202.131528.241925472.chat95@mac.com> <1233554312.1492.1.camel@ferret.2hip.net> <20090202.150208.123997353.chat95@mac.com> Message-ID: <20090202083923.GA36635@charon.picobyte.net> On Mon, Feb 02, 2009 at 03:02:08PM +0900, Maho NAKATA wrote: > > From: Robert Noland > Subject: Re: A patch lib Re: [Fwd: f90gl-1.2.13_3 failed on amd64 6] > Date: Mon, 02 Feb 2009 00:58:32 -0500 > > > On Mon, 2009-02-02 at 13:15 +0900, Maho NAKATA wrote: > >> Hi Shaun > >> (Cc: Florent and Pav) > >> > >> Shaun, could you please approve following patch [1] to unbreak graphics/f90gl? > >> > >> Since Xorg has been updated to 7.4, we no longer installes "glutf90.h". > >> Consequently, my port graphics/f90gl has been broken. You can also remove > >> files/Makefile as it is not referenced. > > > > I can commit this, someone just give me the word. > > yes, me too, if Shaun approves, he or I can commit immediately :) > Approved. You can also reset to ports@ or take over while you're there - not sure why I've even got this port. Shaun -- Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson From trhodes at FreeBSD.org Mon Feb 2 01:50:04 2009 From: trhodes at FreeBSD.org (Tom Rhodes) Date: Mon Feb 2 01:50:11 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Message-ID: <200902020950.n129o3Dw027376@freefall.freebsd.org> The following reply was made to PR ports/131016; it has been noted by GNATS. From: Tom Rhodes To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Date: Mon, 2 Feb 2009 04:45:44 -0500 Hi, I'd like to verify this - my mouse locks up dead. I've used the information in UPDATING, stopped and killed moused, started hal and dbus, nothing. Also, it appears a fresh install of ports (removing all of my old ones and killing /usr/local/*/* hasn't helped either. Thanks, -- Tom Rhodes From pascal.vizeli at informaticon.ch Mon Feb 2 02:40:09 2009 From: pascal.vizeli at informaticon.ch (Vizeli Pascal) Date: Mon Feb 2 02:40:16 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902021040.n12Ae8tZ072832@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Vizeli Pascal To: "bug-followup@FreeBSD.org" , "xelah-freebsd-pr@xelah.com" Cc: Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Mon, 2 Feb 2009 11:10:36 +0100 --_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable I have the same problem with my i915 intel graphic card. I had testet with video-intel and with video-vesa. Both x11 drivers have the same problem. Also the GL doesn't work. When I activate this option, the screen was blank= und hang up. I found this patch: http://people.freebsd.org/~rnoland/xserver-1.6rc.patch Can this help me? This mouse hang up problem is very shit for me. --_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

I have the same problem with my i91= 5 intel graphic card.

I had testet with video-intel and w= ith video-vesa. Both x11 drivers have

the same problem.=

 

Also the GL doesn’t work. Whe= n I activate this option, the screen was blank und

hang up.

 

I found this patch:

http://peop= le.freebsd.org/~rnoland/xserver-1.6rc.patch

 

Can this help me? This mouse hang u= p problem is very shit for me.

--_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_-- From bugmaster at FreeBSD.org Mon Feb 2 03:07:06 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 2 03:09:41 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200902021107.n12B74aW094623@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/131238 x11 [PATCH] x11/luit: luit can't find locale.alias, fix it o ports/131124 x11 x11/xorg - New xorg 7.4 hangs until mouse is moved whe f ports/131120 x11 x11/libxcb - xauth failes when using libX11/libxcb o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! o ports/130815 x11 x11/xorg: Default Xorg (from install CD) @ 7.1-RELEASE s ports/129748 x11 x11-servers/xorg-server: XAA Offscreen Pixmaps never w o ports/129189 x11 x11/xorg: xorg config -testmode - horizontal sync synt o ports/128831 x11 x11-drivers/xf86-video-intel - X server is broken on I o ports/127436 x11 x11/xorg: xorg randomly uses 100% CPU with Intel + KDE f ports/126904 x11 x11/xorg startx fails on driver loading for nVidia GeF o ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts o ports/125661 x11 x11/xorg: startx fails after a couple of attempts o ports/124861 x11 Keyboard problems with xorg o ports/124220 x11 x11-servers/xorg-server - X.org server runs in infinit o ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122924 x11 XCreateImage fails in most recent x11/XOrg o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() o ports/121360 x11 x11/xorg - Change default of ~/.xsession-errors to off o ports/121230 x11 [patch] ports/x11/xkeyboard-config WITHOUT_NLS support o ports/119037 x11 x11: Can't type _ (Underscore) under X (gnome) o ports/118950 x11 x11-drivers/xf86-video-nv - xorg xf86 nv (nvidia) driv o ports/118645 x11 Xorg need realtime priority for mouse work nice o ports/118547 x11 [patch] x11/xdm fails with pam_krb5 f ports/118217 x11 xorg doesnt find usb mouse when initiated with devd, w f ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/117766 x11 x11-servers/xorg-server (7.3) crashes under heavy load o ports/117195 x11 ix11/Xorg 7.3 dumps core at exit (sig 11) f ports/116603 x11 x11/xorg server 7.3 hangs up o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke o ports/116359 x11 x11/xorg - screen blinks with PCI-E nvidia card and ve o ports/115020 x11 New port: graphics/osmesa - Mesa's off-screen renderin f ports/114827 x11 Xorg server crashes when starting astro/google-earth o ports/113106 x11 x11/xorg - Xorg 7.2 + Mach64 + dri produces error mess f ports/106370 x11 Screen corruption when using Direct Rendering on a PCI 35 problems total. From linimon at FreeBSD.org Mon Feb 2 03:35:45 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 2 03:35:57 2009 Subject: ports/131289: x11/xorg: xorg 7.4 exiting the server leads to instantaneous reboot (crash) Message-ID: <200902021135.n12BZijr024432@freefall.freebsd.org> Old Synopsis: X11 xorg 7.4 exiting the server leads to instantaneous reboot (crash) New Synopsis: x11/xorg: xorg 7.4 exiting the server leads to instantaneous reboot (crash) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 2 11:35:27 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131289 From subscr1024 at mail.ru Mon Feb 2 03:57:28 2009 From: subscr1024 at mail.ru (Subscriber) Date: Mon Feb 2 03:57:35 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200901292140.n0TLe5xf076339@freefall.freebsd.org> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> Message-ID: <4986D31B.7020802@mail.ru> Last driver works the same way - it looks like left button permanently pressed. I use built in touchpad in my notebook with xf86-input-driver. Bad workaround is to tap touchpad several (random) times, then 'virtual left button' released. Hardware left button on touchpad works the same way. Robert Noland ?????: > The following reply was made to PR ports/131124; it has been noted by GNATS. > > From: Robert Noland > To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com > Cc: > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is > moved when AllowEmptyInput turned off > Date: Thu, 29 Jan 2009 16:37:09 -0500 > > --=-WAPTMZWlWocFpdINRNGV > Content-Type: text/plain > Content-Transfer-Encoding: quoted-printable > > Please try with the latest xf86-input-mouse 1.4.0_1. > > robert. > > > --=-WAPTMZWlWocFpdINRNGV > Content-Type: application/pgp-signature; name="signature.asc" > Content-Description: This is a digitally signed message part > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.10 (FreeBSD) > > iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 > 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp > =6OBQ > -----END PGP SIGNATURE----- > > --=-WAPTMZWlWocFpdINRNGV-- > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > > From rnoland at FreeBSD.org Mon Feb 2 09:53:27 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 09:53:33 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <4986D31B.7020802@mail.ru> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> Message-ID: <1233597196.1492.6.camel@ferret.2hip.net> On Mon, 2009-02-02 at 14:03 +0300, Subscriber wrote: > Last driver works the same way - it looks like left button permanently > pressed. I use built in touchpad in my notebook with xf86-input-driver. Bad > workaround is to tap touchpad several (random) times, then 'virtual left > button' released. Hardware left button on touchpad works the same way. Ok, is this a button problem, or is X hanging on ttyin? If it is the button problem, I have an idea.... I have seen on some of my touchpads that tapping for example won't work until a hardware left clck occurs. I think that it may be somehow related to the 3rd button detection. Also for examply when using the touchpad, then inserting and removing a usb mouse, buttons can become confused for a minute. I've found that clicking both touchpad buttons (paste) would get it all acting right again. robert. > > Robert Noland ?????: > > The following reply was made to PR ports/131124; it has been noted by GNATS. > > > > From: Robert Noland > > To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com > > Cc: > > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is > > moved when AllowEmptyInput turned off > > Date: Thu, 29 Jan 2009 16:37:09 -0500 > > > > --=-WAPTMZWlWocFpdINRNGV > > Content-Type: text/plain > > Content-Transfer-Encoding: quoted-printable > > > > Please try with the latest xf86-input-mouse 1.4.0_1. > > > > robert. > > > > > > --=-WAPTMZWlWocFpdINRNGV > > Content-Type: application/pgp-signature; name="signature.asc" > > Content-Description: This is a digitally signed message part > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2.0.10 (FreeBSD) > > > > iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 > > 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp > > =6OBQ > > -----END PGP SIGNATURE----- > > > > --=-WAPTMZWlWocFpdINRNGV-- > > > > _______________________________________________ > > freebsd-x11@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > > > > > -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/3b22e0b9/attachment.pgp From aryeh.friedman at gmail.com Mon Feb 2 09:55:55 2009 From: aryeh.friedman at gmail.com (Aryeh M. Friedman) Date: Mon Feb 2 09:56:02 2009 Subject: is xorg 7.4 ready for prime time Message-ID: <49872C8E.7050605@gmail.com> I installed it earlier and it went so badly I used it as an excuse to reinstall the entire OS (downgrade from -current to 7.1) and then used cvs to get a ports snapshot from before the 7.4 committ (1/22/09) and want to know when it is safe to update the ports to current and run portmaster -a on them? From linimon at FreeBSD.org Mon Feb 2 10:30:43 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 2 10:30:49 2009 Subject: ports/131304: x11/xorg: Xorg/Xfree/X11R6 startx problem with 'hexdump -e' option Message-ID: <200902021830.n12IUgOS036855@freefall.freebsd.org> Old Synopsis: Xorg/Xfree/X11R6 startx problem with 'hexdump -e' option New Synopsis: x11/xorg: Xorg/Xfree/X11R6 startx problem with 'hexdump -e' option Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 2 18:30:22 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131304 From rnoland at FreeBSD.org Mon Feb 2 10:34:35 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 10:34:41 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <20090202145741.7fe1a387.drl@bsd.my> References: <20090202145741.7fe1a387.drl@bsd.my> Message-ID: <1233599635.1492.15.camel@ferret.2hip.net> On Mon, 2009-02-02 at 14:57 +0800, Darryl Yeoh wrote: > Hi Matt, > > > Just tried dropping the synaptics driver and option in loader.conf (it needs > > hw.psm.synaptics_support in /boot/loader.conf or it gets picked up as an Intellimouse) and it works > > as a standard mouse. The keyboard is still fine with no spurious events. The synaptics driver opens > > up a lot of features on the trackpad (right hand side becomes a scroll "wheel", the bottom edge > > becomes a horizontal scroll, it picks up multi-taps and you can tweak much of it in xorg.conf) but > > I don't think this is the cause of your issue. > > Did you manage to fully test out the synaptics driver ? I've had horrible experience with it. If > you allow hald to manage input devices (mouse/keyboard) on your laptop, the touchpad barely works. > (no scrolling, no tapping, slow acceleration). I've had to run Xorg without hald managing > those devices. Even configuring /usr/local/etc/hal/fdi/policy/x11-synaptics.fdi doesn't seem to do > much. If you want to use synaptics, the instructions in the port are still correct I think. Everything that I have right now is GlidePoint, but... Essentially, you want to disable moused_enable="NO" (the default) set the loader.conf tuneable and statically configure the touchpad in xorg.conf to use /dev/psm0 and driver "synaptics" . This wil not be ignored by X, as it only ignores devices using kbd,mouse, or vmmouse drivers. Additional mice can be added either via config or hald depending on your settings for AllowEmptyInput and/or AutoAddDevices. robert. > I've also went ahead and tried recompiling Xorg without hal support and on reboot my laptop freezes > the minute it see's the console login screen. Looks like the hal option is mandatory. > > > FYI, this laptop is an ECS 331, RS485 chipset with a Turion ML34 CPU running 7-STABLE amd64 from > > Jan 12th. > > Same chipset here, except I have a Turion ML-50 running 7-STABLE i386 from Jan 30th. > > > If anyone's interested (on x11@), I did just plug a USB mouse in and it Just Worked [TM] without me > > having to mess with anything. > > Works on mine as well. > > Darryl > > Please reply/CC to me as I'm not subscribe to the mailinglists. > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/35d7156b/attachment.pgp From rnoland at FreeBSD.org Mon Feb 2 10:44:58 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 10:45:04 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! In-Reply-To: <200902020950.n129o3Dw027376@freefall.freebsd.org> References: <200902020950.n129o3Dw027376@freefall.freebsd.org> Message-ID: <1233600288.1492.17.camel@ferret.2hip.net> On Mon, 2009-02-02 at 09:50 +0000, Tom Rhodes wrote: > The following reply was made to PR ports/131016; it has been noted by GNATS. > > From: Tom Rhodes > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: ports/131016: x11/xorg - xorg-7.4 renders system unusable! > Date: Mon, 2 Feb 2009 04:45:44 -0500 > > Hi, > > I'd like to verify this - my mouse locks up dead. I've used the > information in UPDATING, stopped and killed moused, started hal and > dbus, nothing. Also, it appears a fresh install of ports (removing > all of my old ones and killing /usr/local/*/* hasn't helped either. I will need to see any settings in rc.conf related to moused and your xorg.conf. An xorg.log wouldn't be a bad idea either. robert. > Thanks, > > -- > Tom Rhodes > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/cb4dd5e6/attachment.pgp From rnoland at FreeBSD.org Mon Feb 2 10:52:29 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 10:52:35 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902021040.n12Ae8tZ072832@freefall.freebsd.org> References: <200902021040.n12Ae8tZ072832@freefall.freebsd.org> Message-ID: <1233600740.1492.20.camel@ferret.2hip.net> On Mon, 2009-02-02 at 10:40 +0000, Vizeli Pascal wrote: > The following reply was made to PR ports/131124; it has been noted by GNATS. > > From: Vizeli Pascal > To: "bug-followup@FreeBSD.org" , > "xelah-freebsd-pr@xelah.com" > Cc: > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is > moved when AllowEmptyInput turned off > Date: Mon, 2 Feb 2009 11:10:36 +0100 > > --_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_ > Content-Type: text/plain; charset="us-ascii" > Content-Transfer-Encoding: quoted-printable > > I have the same problem with my i915 intel graphic card. > I had testet with video-intel and with video-vesa. Both x11 drivers have > the same problem. > > Also the GL doesn't work. When I activate this option, the screen was blank= > und > hang up. I was doing some testing on a 915gm yesterday and it seemed to be ok with server 1.6 and intel 2.6.1. You might want to go ahead and give it a try. Also, look for any warning / errors in xorg.log relating to drm/dri. I had to reduce my screen virtual for the 915 to use drm. robert. > I found this patch: > http://people.freebsd.org/~rnoland/xserver-1.6rc.patch > > Can this help me? This mouse hang up problem is very shit for me. > > --_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_ > Content-Type: text/html; charset="us-ascii" > Content-Transfer-Encoding: quoted-printable > > osoft-com:office:office" xmlns:w=3D"urn:schemas-microsoft-com:office:word" = > xmlns:m=3D"http://schemas.microsoft.com/office/2004/12/omml" xmlns=3D"http:= > //www.w3.org/TR/REC-html40"> > > > > > > > > > > >
> >

I have the same problem with my i91= > 5 intel > graphic card.

> >

I had testet with video-intel and w= > ith > video-vesa. Both x11 drivers have

> >

the same problem.= >

> >

 

> >

Also the GL doesn’t work. Whe= > n I > activate this option, the screen was blank und

> >

hang up.

> >

 

> >

I found this patch: n>

> >

href=3D"http://people.freebsd.org/~rnoland/xserver-1.6rc.patch">http://peop= > le.freebsd.org/~rnoland/xserver-1.6rc.patch

> >

 

> >

Can this help me? This mouse hang u= > p > problem is very shit for me.

> >
> > > > > > --_000_5F82E1428DB39A42B49F7DD8BC69585B8F7985D3TSRVDBinformati_-- > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/a0ecf880/attachment.pgp From matt at chronos.org.uk Mon Feb 2 13:01:34 2009 From: matt at chronos.org.uk (Matt Dawson) Date: Mon Feb 2 13:01:40 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <1233599635.1492.15.camel@ferret.2hip.net> References: <20090202145741.7fe1a387.drl@bsd.my> <1233599635.1492.15.camel@ferret.2hip.net> Message-ID: <200902022100.33922.matt@chronos.org.uk> On Monday 02 February 2009 18:33:55 Robert Noland wrote: > On Mon, 2009-02-02 at 14:57 +0800, Darryl Yeoh wrote: > > Hi Matt, > > > > > Just tried dropping the synaptics driver and option in loader.conf (it > > > needs hw.psm.synaptics_support in /boot/loader.conf or it gets picked > > > up as an Intellimouse) and it works as a standard mouse. The keyboard > > > is still fine with no spurious events. The synaptics driver opens up a > > > lot of features on the trackpad (right hand side becomes a scroll > > > "wheel", the bottom edge becomes a horizontal scroll, it picks up > > > multi-taps and you can tweak much of ?it in xorg.conf) but I don't > > > think this is the cause of your issue. > > > > Did you manage to fully test out the synaptics driver ? I've had horrible > > experience with it. If you allow hald to manage input devices > > (mouse/keyboard) on your laptop, the touchpad barely works. (no > > scrolling, no tapping, slow acceleration). I've had to run Xorg without > > hald managing those devices. Even configuring > > /usr/local/etc/hal/fdi/policy/x11-synaptics.fdi doesn't seem to do much. > > If you want to use synaptics, the instructions in the port are still > correct I think. ?Everything that I have right now is GlidePoint, but... > Essentially, you want to disable moused_enable="NO" (the default) set > the loader.conf tuneable and statically configure the touchpad in > xorg.conf to use /dev/psm0 and driver "synaptics" . ?This wil not be > ignored by X, as it only ignores devices using kbd,mouse, or vmmouse > drivers. > > Additional mice can be added either via config or hald depending on your > settings for AllowEmptyInput and/or AutoAddDevices. Exactly my setup and it works fine. It's rather pointless having moused running on this machine anyway since the console never restores on VT switch and remains pure white until reboot. $DEITY knows why, but I can live with it (this is pre-7.4 behaviour as well, so it's not a regression. In fact, this machine has always done this, and no amount of switching VTYs or closing and opening the lid makes any difference). Sorry about taking my time to reply, Darryl, but I was up to my armpits in i386->amd64 upgrade on the mail server today and I still can't get Munin to play nicely ;o) Best regards, -- Matt Dawson MTD15-RIPE matt@chronos.org.uk From subscr1024 at mail.ru Mon Feb 2 13:50:42 2009 From: subscr1024 at mail.ru (Subscriber) Date: Mon Feb 2 13:50:54 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <1233597196.1492.6.camel@ferret.2hip.net> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> <1233597196.1492.6.camel@ferret.2hip.net> Message-ID: <498769A9.1050808@mail.ru> Firstly, pardon me for my poor English. Let me try to explain what I see. As you recommended, I attached usb mouse (trivial scroll+2but) to my notebook. With external mouse pointing became more easy, but problem still present. I'll try to explain deeper: when I simply place finger on touchpad (for moving cursor) and then slowly move it, object under cursor catched (for explain, letter in thunderbird's list), holded about second and then released, as if I do 'tap-n-hold'. After it if I take finger from touchpad, cursor stop blinking and then blink just when I move finger again. Move finger - cursor blink once or twice, take finger away - cursor stoped. If I try to enter text at this moment (in xterm, Terminal, firefox address bar and so on), this text displayed only after touching touchpad again. With external usb mouse I see the same effect - while I move mouse, cursor blink and text entered as usual, but if mouse stoped, cursor stoped blinking too. After several clicking left and right buttons randomly or just several mouse moving (I can't discover regularity) cursor 'unfreeze' and text entering became independent of mouse moving until I clicking anywhere again. Excuse me for long post, I hope this help you understand source of problem. I am not programmer (not for PC, anyway) and can answer more detailed only if you tell me, what exactly need to do. Robert Noland ?????: > On Mon, 2009-02-02 at 14:03 +0300, Subscriber wrote: >> Last driver works the same way - it looks like left button permanently >> pressed. I use built in touchpad in my notebook with xf86-input-driver. Bad >> workaround is to tap touchpad several (random) times, then 'virtual left >> button' released. Hardware left button on touchpad works the same way. > > Ok, is this a button problem, or is X hanging on ttyin? If it is the > button problem, I have an idea.... I have seen on some of my touchpads > that tapping for example won't work until a hardware left clck occurs. > I think that it may be somehow related to the 3rd button detection. > Also for examply when using the touchpad, then inserting and removing a > usb mouse, buttons can become confused for a minute. I've found that > clicking both touchpad buttons (paste) would get it all acting right > again. > > robert. > >> Robert Noland ?????: >>> The following reply was made to PR ports/131124; it has been noted by GNATS. >>> >>> From: Robert Noland >>> To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com >>> Cc: >>> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is >>> moved when AllowEmptyInput turned off >>> Date: Thu, 29 Jan 2009 16:37:09 -0500 >>> >>> --=-WAPTMZWlWocFpdINRNGV >>> Content-Type: text/plain >>> Content-Transfer-Encoding: quoted-printable >>> >>> Please try with the latest xf86-input-mouse 1.4.0_1. >>> >>> robert. >>> >>> >>> --=-WAPTMZWlWocFpdINRNGV >>> Content-Type: application/pgp-signature; name="signature.asc" >>> Content-Description: This is a digitally signed message part >>> >>> -----BEGIN PGP SIGNATURE----- >>> Version: GnuPG v2.0.10 (FreeBSD) >>> >>> iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 >>> 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp >>> =6OBQ >>> -----END PGP SIGNATURE----- >>> >>> --=-WAPTMZWlWocFpdINRNGV-- >>> >>> _______________________________________________ >>> freebsd-x11@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 >>> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" >>> >>> From mvalery at gmail.com Mon Feb 2 14:33:14 2009 From: mvalery at gmail.com (Valery Matyukhin) Date: Mon Feb 2 14:33:21 2009 Subject: Can't upgrade from libXaw-1.0.4_1,1 to 1.0.5_1,1 due to libxcb-xlib.la absence. Message-ID: <47607d490902021401k7ffeb78fyf23466d7c4da1438@mail.gmail.com> Version: 6.2-RELEASE i386 Description: The commant "#portupgrade libXaw-1.0.4_1,1" fails with error message: . . . grep: /usr/local/lib/libxcb-xlib.la: No such file or directory sed: /usr/local/lib/libxcb-xlib.la: No such file or directory libtool: link: `/usr/local/lib/libxcb-xlib.la' is not a valid libtool archive *** Error code 1 . . . But according to changelog of libxcb: libxcb-xlib was removed (1.1.92) I had no idea how to overcome the issue. Thanks. Valery Matyukhin. From rnoland at FreeBSD.org Mon Feb 2 14:55:51 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 14:55:56 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <498769A9.1050808@mail.ru> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> <1233597196.1492.6.camel@ferret.2hip.net> <498769A9.1050808@mail.ru> Message-ID: <1233615341.1492.60.camel@ferret.2hip.net> On Tue, 2009-02-03 at 00:46 +0300, Subscriber wrote: > Firstly, pardon me for my poor English. Let me try to explain what I see. > > As you recommended, I attached usb mouse (trivial scroll+2but) to my notebook. > With external mouse pointing became more easy, but problem still present. I'll > try to explain deeper: when I simply place finger on touchpad (for moving > cursor) and then slowly move it, object under cursor catched (for explain, > letter in thunderbird's list), holded about second and then released, as if I > do 'tap-n-hold'. After it if I take finger from touchpad, cursor stop blinking > and then blink just when I move finger again. Move finger - cursor blink once > or twice, take finger away - cursor stoped. If I try to enter text at this > moment (in xterm, Terminal, firefox address bar and so on), this text > displayed only after touching touchpad again. > > With external usb mouse I see the same effect - while I move mouse, cursor > blink and text entered as usual, but if mouse stoped, cursor stoped blinking too. > > After several clicking left and right buttons randomly or just several mouse > moving (I can't discover regularity) cursor 'unfreeze' and text entering > became independent of mouse moving until I clicking anywhere again. Ok, this sounds like a problem that I have seen, normally only after unplugging an external usb mouse and the driver(s) try to recalculate the button mappings. I don't have a solution, but what seemed to work for me, was to click both of the touchpad buttons at once, emulating the 3rd button. After I did this, everything resumed it's expected behavior. robert. > > Excuse me for long post, I hope this help you understand source of problem. I > am not programmer (not for PC, anyway) and can answer more detailed only if > you tell me, what exactly need to do. > > > > Robert Noland ?????: > > On Mon, 2009-02-02 at 14:03 +0300, Subscriber wrote: > >> Last driver works the same way - it looks like left button permanently > >> pressed. I use built in touchpad in my notebook with xf86-input-driver. Bad > >> workaround is to tap touchpad several (random) times, then 'virtual left > >> button' released. Hardware left button on touchpad works the same way. > > > > Ok, is this a button problem, or is X hanging on ttyin? If it is the > > button problem, I have an idea.... I have seen on some of my touchpads > > that tapping for example won't work until a hardware left clck occurs. > > I think that it may be somehow related to the 3rd button detection. > > Also for examply when using the touchpad, then inserting and removing a > > usb mouse, buttons can become confused for a minute. I've found that > > clicking both touchpad buttons (paste) would get it all acting right > > again. > > > > robert. > > > >> Robert Noland ?????: > >>> The following reply was made to PR ports/131124; it has been noted by GNATS. > >>> > >>> From: Robert Noland > >>> To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com > >>> Cc: > >>> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is > >>> moved when AllowEmptyInput turned off > >>> Date: Thu, 29 Jan 2009 16:37:09 -0500 > >>> > >>> --=-WAPTMZWlWocFpdINRNGV > >>> Content-Type: text/plain > >>> Content-Transfer-Encoding: quoted-printable > >>> > >>> Please try with the latest xf86-input-mouse 1.4.0_1. > >>> > >>> robert. > >>> > >>> > >>> --=-WAPTMZWlWocFpdINRNGV > >>> Content-Type: application/pgp-signature; name="signature.asc" > >>> Content-Description: This is a digitally signed message part > >>> > >>> -----BEGIN PGP SIGNATURE----- > >>> Version: GnuPG v2.0.10 (FreeBSD) > >>> > >>> iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 > >>> 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp > >>> =6OBQ > >>> -----END PGP SIGNATURE----- > >>> > >>> --=-WAPTMZWlWocFpdINRNGV-- > >>> > >>> _______________________________________________ > >>> freebsd-x11@freebsd.org mailing list > >>> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > >>> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > >>> > >>> > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/7066401a/attachment.pgp From linimon at FreeBSD.org Mon Feb 2 15:16:03 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 2 15:16:10 2009 Subject: ports/131306: x11/xorg: xorg fails to upgrade due to xf86-video-via Message-ID: <200902022316.n12NG2E7050833@freefall.freebsd.org> Old Synopsis: Xorg fails to upgrade due to xf86-video-via New Synopsis: x11/xorg: xorg fails to upgrade due to xf86-video-via Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 2 23:15:45 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131306 From rnoland at FreeBSD.org Mon Feb 2 15:25:51 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 15:25:57 2009 Subject: ports/131306: x11/xorg: xorg fails to upgrade due to xf86-video-via In-Reply-To: <200902022316.n12NG2E7050833@freefall.freebsd.org> References: <200902022316.n12NG2E7050833@freefall.freebsd.org> Message-ID: <1233617143.1492.71.camel@ferret.2hip.net> On Mon, 2009-02-02 at 23:16 +0000, linimon@FreeBSD.org wrote: > Old Synopsis: Xorg fails to upgrade due to xf86-video-via > New Synopsis: x11/xorg: xorg fails to upgrade due to xf86-video-via > > Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 > Responsible-Changed-By: linimon > Responsible-Changed-When: Mon Feb 2 23:15:45 UTC 2009 > Responsible-Changed-Why: > Over to maintainer(s). xf86-video-via has been replace by xf86-vido-openchrome. xf86-video-via will not be fixed and will be removed shortly along with xf86-video-vga. robert. > http://www.freebsd.org/cgi/query-pr.cgi?pr=131306 > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090202/615926d1/attachment.pgp From rnoland at FreeBSD.org Mon Feb 2 15:26:44 2009 From: rnoland at FreeBSD.org (rnoland@FreeBSD.org) Date: Mon Feb 2 15:26:50 2009 Subject: ports/131306: x11/xorg: xorg fails to upgrade due to xf86-video-via Message-ID: <200902022326.n12NQfN0058064@freefall.freebsd.org> Synopsis: x11/xorg: xorg fails to upgrade due to xf86-video-via State-Changed-From-To: open->closed State-Changed-By: rnoland State-Changed-When: Mon Feb 2 23:26:41 UTC 2009 State-Changed-Why: Superceeded by xf86-video-openchrome http://www.freebsd.org/cgi/query-pr.cgi?pr=131306 From linimon at FreeBSD.org Mon Feb 2 15:28:34 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Mon Feb 2 15:28:46 2009 Subject: ports/131313: x11/xorg cannot find mouse and keyboard Message-ID: <200902022328.n12NSX3u058158@freefall.freebsd.org> Old Synopsis: xorg cannot find mouse and keyboard New Synopsis: x11/xorg cannot find mouse and keyboard Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 2 23:28:21 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131313 From subscr1024 at mail.ru Mon Feb 2 15:31:25 2009 From: subscr1024 at mail.ru (Subscriber) Date: Mon Feb 2 15:31:31 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <1233615341.1492.60.camel@ferret.2hip.net> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> <1233597196.1492.6.camel@ferret.2hip.net> <498769A9.1050808@mail.ru> <1233615341.1492.60.camel@ferret.2hip.net> Message-ID: <49878147.50901@mail.ru> No, it not worked for me. Everything changed back after next click. Robert Noland ?????: > Ok, this sounds like a problem that I have seen, normally only after > unplugging an external usb mouse and the driver(s) try to recalculate > the button mappings. I don't have a solution, but what seemed to work > for me, was to click both of the touchpad buttons at once, emulating the > 3rd button. After I did this, everything resumed it's expected > behavior. > > robert. From drl at bsd.my Mon Feb 2 21:10:02 2009 From: drl at bsd.my (Darryl Yeoh) Date: Mon Feb 2 21:10:08 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <1233599635.1492.15.camel@ferret.2hip.net> References: <20090202145741.7fe1a387.drl@bsd.my> <1233599635.1492.15.camel@ferret.2hip.net> Message-ID: <20090203130958.11bad450.drl@bsd.my> Hi Robert, On Mon, 02 Feb 2009 13:33:55 -0500 Robert Noland wrote: > If you want to use synaptics, the instructions in the port are still > correct I think. Everything that I have right now is GlidePoint, but... > Essentially, you want to disable moused_enable="NO" (the default) set > the loader.conf tuneable and statically configure the touchpad in > xorg.conf to use /dev/psm0 and driver "synaptics" . This wil not be > ignored by X, as it only ignores devices using kbd,mouse, or vmmouse > drivers. My touchpad works much better now. Dmesg picks it up as: psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model Synaptics Touchpad, device ID 0 /var/log/Xorg.0.log reports this: (II) Synaptics touchpad driver version 0.99.3 (**) Option "Device" "/dev/psm0" (**) Option "SHMConfig" "on" (**) Option "LeftEdge" "1700" (**) Option "RightEdge" "5300" (**) Option "TopEdge" "1700" (**) Option "BottomEdge" "4200" (**) Option "FingerLow" "25" (**) Option "FingerHigh" "30" (**) Option "MaxTapTime" "180" (**) Option "MaxTapMove" "220" (**) Option "MaxDoubleTapTime" "200" (**) Option "ClickTime" "0" (**) Option "FastTaps" "0" (**) Option "VertScrollDelta" "100" (**) Option "HorizScrollDelta" "100" (**) Option "HorizEdgeScroll" "0" (**) Option "EdgeMotionMinSpeed" "200" (**) Option "EdgeMotionMaxSpeed" "200" (**) Option "UpDownScrolling" "on" (**) Option "LeftRightScrolling" "on" (**) Option "ScrollButtonRepeat" "100" (**) Option "PalmDetect" "off" (--) Mouse0 synaptics touchpad found (--) Synaptics Touchpad, model: 0 (--) Firmware: 6.3 (--) Sensor: 1 (--) new absolute packet format (--) Touchpad has extended capability bits (--) -> multifinger detection (--) -> palm detection Acceleration is much better now. Touchpad options are statically configured in xorg.conf. > > Additional mice can be added either via config or hald depending on your > settings for AllowEmptyInput and/or AutoAddDevices. > I have these two options in xorg.conf: Section "ServerFlags" Option "AllowEmptyInput" "off" Option "AutoAddDevices" "off" EndSection One thing I notice is sometimes left-clicks become right-clicks. I have to press both buttons simultaneously for the left-click to work normally again. It happens randomly. Are you experiencing this behaviour ? Thanks for your time. Darryl From rnoland at FreeBSD.org Mon Feb 2 22:27:15 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 2 22:27:21 2009 Subject: Unhappy Xorg upgrade In-Reply-To: <20090203130958.11bad450.drl@bsd.my> References: <20090202145741.7fe1a387.drl@bsd.my> <1233599635.1492.15.camel@ferret.2hip.net> <20090203130958.11bad450.drl@bsd.my> Message-ID: <1233642401.1492.89.camel@ferret.2hip.net> On Tue, 2009-02-03 at 13:09 +0800, Darryl Yeoh wrote: > Hi Robert, > > On Mon, 02 Feb 2009 13:33:55 -0500 > Robert Noland wrote: > > > If you want to use synaptics, the instructions in the port are still > > correct I think. Everything that I have right now is GlidePoint, but... > > Essentially, you want to disable moused_enable="NO" (the default) set > > the loader.conf tuneable and statically configure the touchpad in > > xorg.conf to use /dev/psm0 and driver "synaptics" . This wil not be > > ignored by X, as it only ignores devices using kbd,mouse, or vmmouse > > drivers. > > My touchpad works much better now. Dmesg picks it up as: > > psm0: irq 12 on atkbdc0 > psm0: [GIANT-LOCKED] > psm0: [ITHREAD] > psm0: model Synaptics Touchpad, device ID 0 > > /var/log/Xorg.0.log reports this: > > (II) Synaptics touchpad driver version 0.99.3 > (**) Option "Device" "/dev/psm0" > (**) Option "SHMConfig" "on" > (**) Option "LeftEdge" "1700" > (**) Option "RightEdge" "5300" > (**) Option "TopEdge" "1700" > (**) Option "BottomEdge" "4200" > (**) Option "FingerLow" "25" > (**) Option "FingerHigh" "30" > (**) Option "MaxTapTime" "180" > (**) Option "MaxTapMove" "220" > (**) Option "MaxDoubleTapTime" "200" > (**) Option "ClickTime" "0" > (**) Option "FastTaps" "0" > (**) Option "VertScrollDelta" "100" > (**) Option "HorizScrollDelta" "100" > (**) Option "HorizEdgeScroll" "0" > (**) Option "EdgeMotionMinSpeed" "200" > (**) Option "EdgeMotionMaxSpeed" "200" > (**) Option "UpDownScrolling" "on" > (**) Option "LeftRightScrolling" "on" > (**) Option "ScrollButtonRepeat" "100" > (**) Option "PalmDetect" "off" > (--) Mouse0 synaptics touchpad found > (--) Synaptics Touchpad, model: 0 > (--) Firmware: 6.3 > (--) Sensor: 1 > (--) new absolute packet format > (--) Touchpad has extended capability bits > (--) -> multifinger detection > (--) -> palm detection > > Acceleration is much better now. Touchpad options are statically configured in xorg.conf. > > > > > Additional mice can be added either via config or hald depending on your > > settings for AllowEmptyInput and/or AutoAddDevices. > > > > I have these two options in xorg.conf: > > Section "ServerFlags" > Option "AllowEmptyInput" "off" > Option "AutoAddDevices" "off" > EndSection > > One thing I notice is sometimes left-clicks become right-clicks. I have to press both buttons > simultaneously for the left-click to work normally again. It happens randomly. Are you experiencing > this behaviour ? I have only seen this after plugging and unplugging a usb mouse in addition to the statically configured synaptics. I think that it has to do with the 3rd button detection. robert. > Thanks for your time. > > Darryl -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090203/8a25c22a/attachment.pgp From legatvs at gmail.com Tue Feb 3 02:20:09 2009 From: legatvs at gmail.com (Toni Gundogdu) Date: Tue Feb 3 02:20:18 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Message-ID: <200902031020.n13AK8Sr001250@freefall.freebsd.org> The following reply was made to PR ports/131016; it has been noted by GNATS. From: Toni Gundogdu To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de Cc: Subject: Re: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Date: Tue, 3 Feb 2009 11:43:49 +0200 Perhaps this is some help for those struggling with the Intel 82845M (845M GMCH) like systems. Note that I have an USB keyboard and mouse connected to this system. I did the: # portupgrade -rf libxcb /usr/ports/UPDATING: > Add Option "AllowEmptyInput" "off" to your ServerLayout section Did nothing for me except caused lockups. Not before or after the "20090124: AFFECTS: users of x11-servers/xorg-server, sysutils/hal" update. Pasting only the essentials: ... Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection # Had to add this after xorg 7.4 upgrade # USB devices (kb,mouse) would not be otherwise detected. Section "ServerFlags" Option "AutoAddDevices" "False" EndSection # This is left-over from 7.3, I haven't tried without it. Section "Extensions" Option "Composite" "Disable" EndSection Section "Module" Load "GLcore" Load "dbe" # Load "dri" Load "extmod" Load "glx" Load "freetype" EndSection Section "Device" Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device" BusID "PCI:0:2:0" # 7.3 left-overs, supposedly improved intel driver performance # Had something to do with XAA method if memory serves me right # Again, haven't tried without these three. Option "AccelMethod" "EXA" Option "ExaNoComposite" "false" Option "MigrationHeuristic" "greedy" # DRI has been erratic since the 7.4 upgrade Option "DRI" "false" EndSection Section "Screen" DefaultDepth 16 SubSection "Display" Viewport 0 0 Depth 16 EndSubSection EndSection ... Probably worth noting that I had to add the following lines to /boot/loader.conf: drm_load="YES" i915_load="YES" Otherwise drm would fail at startx. 7.3 and DRI worked fine without them. I have, however, disabled DRI for 7.4 since it turned out to be too erratic for my liking. From support at spectrum.ru Tue Feb 3 04:03:55 2009 From: support at spectrum.ru (Alexander Demin) Date: Tue Feb 3 04:04:04 2009 Subject: Error install port: x11/xdriinfo. Message-ID: <20090203144727.807dd36f.support@spectrum.ru> Hello. I have problem with installation of port x11/xdriinfo. uname -a FreeBSD test.spectrum.ru 7.1-STABLE FreeBSD 7.1-STABLE #0: Thu Jan 15 22:00:22 MSK 2009 root@test.spectrum.ru:/usr/obj/usr/src/sys/MYGENERIC i386 Ports tree up today. How to repeat: cd /usr/ports/x11/xdriinfo make install clean ===> Vulnerability check disabled, database not found ===> Extracting for xdriinfo-1.0.2 => MD5 Checksum OK for xorg/app/xdriinfo-1.0.2.tar.bz2. => SHA256 Checksum OK for xorg/app/xdriinfo-1.0.2.tar.bz2. ===> Patching for xdriinfo-1.0.2 ===> xdriinfo-1.0.2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - found ===> xdriinfo-1.0.2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> xdriinfo-1.0.2 depends on executable: pkg-config - found ===> xdriinfo-1.0.2 depends on shared library: GL.1 - found ===> Configuring for xdriinfo-1.0.2 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc3 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking return type of signal handlers... void checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for XDRIINFO... yes checking for library containing glXGetProcAddressARB... no configure: error: cannot find GL library - make sure Mesa or other OpenGL package is installed See `config.log' for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/tmp_potrs/usr/ports/x11/xdriinfo/work/xdriinfo-1.0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/x11/xdriinfo. Log file (config.log) attached. -- Demin Alexander / Network Administrator Group of companies Spectrum / tel. (+7 495) 995-8999 Russia, Moscow, 103009, Strastnoy blvr. 8 Web: http://www.spectrum.ru/ -------------- next part -------------- A non-text attachment was scrubbed... Name: config.log Type: application/octet-stream Size: 11925 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090203/32c41c62/config.obj From edwin at FreeBSD.org Tue Feb 3 04:50:39 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue Feb 3 04:50:46 2009 Subject: ports/131339: x11/oclock - repomove to x11-clocks/ Message-ID: <200902031250.n13Cod2M025163@freefall.freebsd.org> Synopsis: x11/oclock - repomove to x11-clocks/ Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 3 12:50:38 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=131339 From fhardy at noparking.net Tue Feb 3 04:58:02 2009 From: fhardy at noparking.net (Frederic Hardy) Date: Tue Feb 3 04:58:10 2009 Subject: Xlib: extension "Generic Event Extension" missing on display ":0.0". Message-ID: <49883907.5000402@noparking.net> Hello ! Since the last update of xorg-server, I have several warning "Xlib: extension "Generic Event Extension" missing on display ":0.0"." when I laungh gvim. Xorg server seems does not support XGE, but Xlib support it... portupgrade -rRf does not resolve the problem. I known that it's just a "warning", but I hope that you can resolve it. #Xorg -version X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-RELEASE-p1 i386 Current Operating System: FreeBSD diablo.local 7.1-RELEASE-p1 FreeBSD 7.1-RELEASE-p1 #6: Thu Jan 8 15:17:55 CET 2009 root@diablo.local:/usr/obj/usr/src/sys/DIABLO i386 Build Date: 03 February 2009 12:18:31PM Thanks in advance. Best regards, Fred -- ======================================================================== Fr?d?ric HARDY Responsable technique No parking Email : fhardy@noparking.net 10 rue Stappaert URL : http://www.noparking.net 59000 Lille Tel : +33 (0)3 20 06 51 26 France Fax : +33 (0)3 20 63 92 21 ======================================================================== From =?KOI8-R?Q?=F7=CC=C1=C4=C9=CD=C9=D2_=EE=CF=D7=CF=D3=C5=CC=D8=C3=C5?= Tue Feb 3 05:11:53 2009 From: =?KOI8-R?Q?=F7=CC=C1=C4=C9=CD=C9=D2_=EE=CF=D7=CF=D3=C5=CC=D8=C3=C5?= (=?KOI8-R?Q?=F7=CC=C1=C4=C9=CD=C9=D2_=EE=CF=D7=CF=D3=C5=CC=D8=C3=C5?=) Date: Tue Feb 3 05:12:00 2009 Subject: Xorg freezes on second start In-Reply-To: <1233084375.1981.21.camel@wombat.2hip.net> References: <497F02F7.1090808@tut.by> <1233084375.1981.21.camel@wombat.2hip.net> Message-ID: <49884248.40207@tut.by> Hi, Robert Noland ?????: > On Tue, 2009-01-27 at 14:49 +0200, ???????? ??????????? wrote: > >> Hi, >> I'm having the following problem: >> After recent xorg update, xorg-server started to freeze on second start, >> i.e. if X server started from console second time it completely freezes >> system. >> I've tried either radeon and radeonhd drivers, radeon from ports and >> from git, radeonhd from git. Then X started for the first time, I can >> switch to console and back with out problems. On second start it locks >> some where after mode-setting. >> >> System: FreeBSD/amd64 7.1p2, Gigabyte P35-S3 MB, CPU C2D E6550, RAM 6Gb, >> ATI Radeon HD3870 512Mb. >> > > Given that this is a 3870, it is not drm related. It is almost > certainly a radeon/radeonhd driver issue. Can you please report > upstream on http://bugs.freedesktop.org. You can add me to the watch > list, but I have a lot on my plate right now, so if I can get some of > the radeon folks to look at it that helps me a lot. > > robert. > There is another possibility: Both drivers (radeon, radeonhd) have been performing pretty much flawlessly with X server 1.4. From drivers point of view main change during update to x server 1.5 is migration from x server internal pci access library to external libpciaccess, so it's possible that this error is caused by difference in pci access libraries behavior. WBR, Vladimir Novoseltsev From rafan at FreeBSD.org Tue Feb 3 06:21:09 2009 From: rafan at FreeBSD.org (rafan@FreeBSD.org) Date: Tue Feb 3 06:21:17 2009 Subject: ports/131238: [PATCH] x11/luit: luit can't find locale.alias, fix it Message-ID: <200902031421.n13EL6ef094692@freefall.freebsd.org> Synopsis: [PATCH] x11/luit: luit can't find locale.alias, fix it State-Changed-From-To: open->closed State-Changed-By: rafan State-Changed-When: Tue Feb 3 14:21:06 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=131238 From dfilter at FreeBSD.ORG Tue Feb 3 06:30:09 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Tue Feb 3 06:30:16 2009 Subject: ports/131238: commit references a PR Message-ID: <200902031430.n13EU8KB095116@freefall.freebsd.org> The following reply was made to PR ports/131238; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/131238: commit references a PR Date: Tue, 3 Feb 2009 14:21:14 +0000 (UTC) rafan 2009-02-03 14:21:00 UTC FreeBSD ports repository Modified files: x11/luit Makefile Log: - Make luit can find locale.alias after X.Org 7.4 upgrade. Without this, luit is broken as it can't find the locale alias file. - Bump PORTREVISION as package content changed PR: ports/131238 Submitted by: rafan Approved by: x11@ (flz) Revision Changes Path 1.4 +3 -0 ports/x11/luit/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From rnoland at FreeBSD.org Tue Feb 3 07:51:16 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Feb 3 07:51:23 2009 Subject: Error install port: x11/xdriinfo. In-Reply-To: <20090203144727.807dd36f.support@spectrum.ru> References: <20090203144727.807dd36f.support@spectrum.ru> Message-ID: <1233676268.1492.105.camel@ferret.2hip.net> On Tue, 2009-02-03 at 14:47 +0300, Alexander Demin wrote: > Hello. > > I have problem with installation of port x11/xdriinfo. > uname -a > FreeBSD test.spectrum.ru 7.1-STABLE FreeBSD 7.1-STABLE #0: Thu Jan 15 22:00:22 MSK 2009 > root@test.spectrum.ru:/usr/obj/usr/src/sys/MYGENERIC i386 > Ports tree up today. > How to repeat: > cd /usr/ports/x11/xdriinfo > make install clean > ===> Vulnerability check disabled, database not found > ===> Extracting for xdriinfo-1.0.2 > => MD5 Checksum OK for xorg/app/xdriinfo-1.0.2.tar.bz2. > => SHA256 Checksum OK for xorg/app/xdriinfo-1.0.2.tar.bz2. > ===> Patching for xdriinfo-1.0.2 > ===> xdriinfo-1.0.2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - found > ===> xdriinfo-1.0.2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found > ===> xdriinfo-1.0.2 depends on executable: pkg-config - found > ===> xdriinfo-1.0.2 depends on shared library: GL.1 - found > ===> Configuring for xdriinfo-1.0.2 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking for gcc... cc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ISO C89... none needed > checking for style of include used by make... GNU > checking dependency style of cc... gcc3 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel > checking return type of signal handlers... void > checking for pkg-config... /usr/local/bin/pkg-config > checking pkg-config is at least version 0.9.0... yes > checking for XDRIINFO... yes > checking for library containing glXGetProcAddressARB... no > configure: error: cannot find GL library - make sure Mesa or other OpenGL package is installed > See `config.log' for more details. > ===> Script "configure" failed unexpectedly. > Please report the problem to x11@FreeBSD.org [maintainer] and attach the > "/usr/tmp_potrs/usr/ports/x11/xdriinfo/work/xdriinfo-1.0.2/config.log" > including the output of the failure of your make command. Also, it might be > a good idea to provide an overview of all packages installed on your system > (e.g. an `ls /var/db/pkg`). > *** Error code 1 Ensure that graphics/libGL is installed and up to date. robert. > Stop in /usr/ports/x11/xdriinfo. > > Log file (config.log) attached. > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090203/cf8aa888/attachment.pgp From rnoland at FreeBSD.org Tue Feb 3 07:54:35 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Feb 3 07:54:41 2009 Subject: Xlib: extension "Generic Event Extension" missing on display ":0.0". In-Reply-To: <49883907.5000402@noparking.net> References: <49883907.5000402@noparking.net> Message-ID: <1233676462.1492.108.camel@ferret.2hip.net> On Tue, 2009-02-03 at 13:31 +0100, Frederic Hardy wrote: > Hello ! > > Since the last update of xorg-server, I have several warning "Xlib: > extension "Generic Event Extension" missing on display ":0.0"." when I > laungh gvim. > Xorg server seems does not support XGE, but Xlib support it... > portupgrade -rRf does not resolve the problem. > I known that it's just a "warning", but I hope that you can resolve it. Server 1.6 has support for it. Coming soon. Patches to try out the rc release are posted in the thread "[HEADS UP/CFT] Xserver 1.6 + ..." robert. > #Xorg -version > X.Org X Server 1.5.3 > Release Date: 5 November 2008 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 7.1-RELEASE-p1 i386 > Current Operating System: FreeBSD diablo.local 7.1-RELEASE-p1 FreeBSD > 7.1-RELEASE-p1 #6: Thu Jan 8 15:17:55 CET 2009 > root@diablo.local:/usr/obj/usr/src/sys/DIABLO i386 > Build Date: 03 February 2009 12:18:31PM > > Thanks in advance. > > Best regards, > Fred -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090203/61dd3818/attachment.pgp From trhodes at FreeBSD.org Tue Feb 3 08:56:58 2009 From: trhodes at FreeBSD.org (Tom Rhodes) Date: Tue Feb 3 08:57:06 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! In-Reply-To: <1233600288.1492.17.camel@ferret.2hip.net> References: <200902020950.n129o3Dw027376@freefall.freebsd.org> <1233600288.1492.17.camel@ferret.2hip.net> Message-ID: <20090203114547.414463d0.trhodes@FreeBSD.org> On Mon, 02 Feb 2009 13:44:48 -0500 Robert Noland wrote: > On Mon, 2009-02-02 at 09:50 +0000, Tom Rhodes wrote: > > The following reply was made to PR ports/131016; it has been noted by GNATS. > > > > From: Tom Rhodes > > To: bug-followup@FreeBSD.org > > Cc: > > Subject: Re: ports/131016: x11/xorg - xorg-7.4 renders system unusable! > > Date: Mon, 2 Feb 2009 04:45:44 -0500 > > > > Hi, > > > > I'd like to verify this - my mouse locks up dead. I've used the > > information in UPDATING, stopped and killed moused, started hal and > > dbus, nothing. Also, it appears a fresh install of ports (removing > > all of my old ones and killing /usr/local/*/* hasn't helped either. > > I will need to see any settings in rc.conf related to moused and your > xorg.conf. An xorg.log wouldn't be a bad idea either. > > robert. Sure. Note that I've tried with and without moused enabled, using the instructions in UPDATING. At the bottom, I have the auto-generated xorg.conf (which bombs). Yes, I tried the "AllowEmptyInput" "off" option. Thanks, -- Tom Rhodes wlans_ath0=wlan0 network_interfaces="AUTO" #ifconfig_em0="DHCP" hald_enable="YES" dbus_enable="YES" moused_enable="YES" sendmail_enable="NONE" sshd_enable="YES" tcp_extensions="YES" usbd_enable="YES" linux_enable="YES" #rsyncd_enable="YES" # Temp for backup: #mountd_enable="YES" #rpcbind_enable="YES" #nfs_server_enable="YES" X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-CURRENT amd64 Current Operating System: FreeBSD localhost.fbsdsecure.org 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Wed Jan 28 20:53:35 EST 2009 trhodes@localhost.fbsdsecure.org:/usr/obj/usr/src/sys/MOBILE amd64 Build Date: 02 February 2009 11:59:52PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Tue Feb 3 07:45:00 2009 (++) Using config file: "/root/xorg.conf.new" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled. (WW) Disabling Mouse0 (WW) Disabling Keyboard0 (II) Loader magic: 0x670080 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 12, Mem @ 0xf8100000/1048576, 0xe0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller rev 12, Mem @ 0xf8200000/1048576 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "xtrap" (II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so (II) Module xtrap: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DEC-XTRAP (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (==) intel(0): Depth 24, (==) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 965GM (--) intel(0): Chipset: "965GM" (--) intel(0): Linear framebuffer at 0xE0000000 (--) intel(0): IO registers at addr 0xF8100000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "LEN", prod id 16433 (II) intel(0): I2C bus "SDVOCTRL_E for SDVOB" initialized. (II) intel(0): I2C device "SDVOCTRL_E for SDVOB:SDVO Controller B" registered at address 0x70. (II) intel(0): I2C bus "SDVOB DDC Bus" initialized. (II) intel(0): Output TMDS-1 has no monitor section (II) intel(0): SDVOB: device VID/DID: 02:3C.06, clock range 25.0MHz - 200.0MHz (II) intel(0): SDVOB: 1 input channel (II) intel(0): SDVOB: TMDS0 output reported (II) intel(0): Current clock rate multiplier: 1 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): EDID vendor "LEN", prod id 16433 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Output TMDS-1 disconnected (II) intel(0): Using exact sizes for initial modes (II) intel(0): Output LVDS using initial mode 1280x800 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 512 kB GTT. (II) intel(0): detected 7676 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009 (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 241152 total, 0 used (II) intel(0): I830CheckAvailableMemory: 964608 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers = 0xf8100000 (II) intel(0): [drm] ring buffer = 0xe0000000 (II) intel(0): [drm] mapped front buffer at 0xe0200000, handle = 0xe0200000 (II) intel(0): [drm] mapped back buffer at 0xe1b00000, handle = 0xe1b00000 (II) intel(0): [drm] mapped depth buffer at 0xe2140000, handle = 0xe2140000 (II) intel(0): [drm] mapped classic textures at 0xe2780000, handle = 0xe2780000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 19660800 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): Current clock rate multiplier: 1 (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x0077f000 (pgoffset 1919) (II) intel(0): xf86BindGARTMemory: bind key 6 at 0x00840000 (pgoffset 2112) (II) intel(0): xf86BindGARTMemory: bind key 7 at 0x01b00000 (pgoffset 6912) (II) intel(0): xf86BindGARTMemory: bind key 8 at 0x02140000 (pgoffset 8512) (II) intel(0): xf86BindGARTMemory: bind key 9 at 0x02780000 (pgoffset 10112) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00147fff: exa G965 state buffer (88 kB) (II) intel(0): 0x00148000-0x00148fff: overlay registers (4 kB) (II) intel(0): 0x00149000-0x00149fff: power context (4 kB) (II) intel(0): 0x00200000-0x0083ffff: front buffer (6400 kB) X tiled (II) intel(0): 0x0077f000: end of stolen memory (II) intel(0): 0x00840000-0x01afffff: exa offscreen (19200 kB) (II) intel(0): 0x01b00000-0x0213ffff: back buffer (6400 kB) X tiled (II) intel(0): 0x02140000-0x0277ffff: depth buffer (6400 kB) Y tiled (II) intel(0): 0x02780000-0x0477ffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): using SSC reference clock of 100 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): Output TMDS-1 is connected to pipe none (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) intel(0): Setting screen physical size to 303 x 190 (EE) intel(0): underrun on pipe B! (EE) config/hal: couldn't initialise context: (null) ((null)) (II) intel(0): xf86UnbindGARTMemory: unbind key 5 (II) intel(0): xf86UnbindGARTMemory: unbind key 6 (II) intel(0): xf86UnbindGARTMemory: unbind key 7 (II) intel(0): xf86UnbindGARTMemory: unbind key 8 (II) intel(0): xf86UnbindGARTMemory: unbind key 9 Fatal server error: Caught signal 10. Server aborting Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "glx" Load "xtrap" Load "dri" Load "freetype" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "ColorKey" # #Option "CacheLines" # #Option "Dac6Bit" # [] #Option "DRI" # [] #Option "NoDDC" # [] #Option "ShowCache" # [] #Option "XvMCSurfaces" # #Option "PageFlip" # [] Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "Mobile GM965/GL960 Integrated Graphics Controller" 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 From tevans.uk at googlemail.com Tue Feb 3 10:27:59 2009 From: tevans.uk at googlemail.com (Tom Evans) Date: Tue Feb 3 10:28:06 2009 Subject: Difficulties getting nvidia-driver to work with latest x.org ports Message-ID: <1233684524.43076.14.camel@strangepork.mintel.co.uk> Hi all This weekend, I installed 7.1-RELEASE on my home PC (base only). I then updated to RELENG_7, updated the ports tree to the latest, and went about installing the latest x.org ports. First off, the new xorg seems to have a bad bad regression - Xorg -configure is now largely useless, it generated a config with just ridiculous config. I'm still at work, but I'll post it when I get home, just crazy. It's still pretty simple to write from scratch though, so not too disastrous. Secondly, and much worse, it seems the nvidia-driver is built against an older ABI incompatible version of xorg-server. It installs a library /usr/local/lib/xorg/modules/libwfb.so which has a missing symbol "miZeroLineScreenIndex". I found this recent article[1] which seems to suggest replacing the nvidia installed version with the xorg version, which sounds dubious imho (I dont speak/read/understand Japanese at all, that may not be at all what it is saying!) I tried updating from the latest version in ports (177.80) to the latest on nvidias website (180.22), but they both still referred to miZeroLineScreenIndex. I'll post full details of installed packages etc when I get home. Thankfully, the nv driver seems to work reasonabley well now in 2D! If I was going to roll back xserver, what else would I need to roll back? Presumabley all drivers? libX11? My ports is a locally slaved CVS checkout as described in development(7), so this should be reasonabley straight forward... Cheers Tom [1] http://bsdlove.jugem.jp/?eid=210 From rnoland at FreeBSD.org Tue Feb 3 10:51:46 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Tue Feb 3 10:51:52 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! In-Reply-To: <20090203114547.414463d0.trhodes@FreeBSD.org> References: <200902020950.n129o3Dw027376@freefall.freebsd.org> <1233600288.1492.17.camel@ferret.2hip.net> <20090203114547.414463d0.trhodes@FreeBSD.org> Message-ID: <1233687097.1492.110.camel@ferret.2hip.net> On Tue, 2009-02-03 at 11:45 -0500, Tom Rhodes wrote: > (EE) config/hal: couldn't initialise context: (null) ((null)) hald and/or dbus are not running, or if they are, they aren't ready yet. robert. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090203/8d55c5cd/attachment.pgp From martin at email.aon.at Tue Feb 3 12:20:04 2009 From: martin at email.aon.at (Martin Birgmeier) Date: Tue Feb 3 12:20:14 2009 Subject: ports/131289: x11/xorg: xorg 7.4 exiting the server leads to instantaneous reboot (crash) Message-ID: <200902032020.n13KK3Ff058350@freefall.freebsd.org> The following reply was made to PR ports/131289; it has been noted by GNATS. From: Martin Birgmeier To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/131289: x11/xorg: xorg 7.4 exiting the server leads to instantaneous reboot (crash) Date: Tue, 3 Feb 2009 20:46:40 +0100 (CET) I compiled a new kernel from the latest (a few hours ago) RELENG_7. I also upgraded the ports to the latest version (again from a few hours ago). Now the reboot does not occur any more. So this seems to be limited to RELENG_7_1_0_RELEASE. The only thing I still have to solve is how to stop the server from freezing when the mouse is not moved (this problem seems to have been reported by a lot of other people). Also, firefox3 does not start... but I'll probably file another bug report for that. From oberman at es.net Tue Feb 3 12:41:40 2009 From: oberman at es.net (Kevin Oberman) Date: Tue Feb 3 12:41:46 2009 Subject: Difficulties getting nvidia-driver to work with latest x.org ports In-Reply-To: Your message of "Tue, 03 Feb 2009 18:08:44 GMT." <1233684524.43076.14.camel@strangepork.mintel.co.uk> Message-ID: <20090203203111.679FB1CC0B@ptavv.es.net> > From: Tom Evans > Date: Tue, 03 Feb 2009 18:08:44 +0000 > Sender: owner-freebsd-x11@freebsd.org > > Hi all > > This weekend, I installed 7.1-RELEASE on my home PC (base only). I then > updated to RELENG_7, updated the ports tree to the latest, and went > about installing the latest x.org ports. > > First off, the new xorg seems to have a bad bad regression - Xorg > -configure is now largely useless, it generated a config with just > ridiculous config. I'm still at work, but I'll post it when I get home, > just crazy. It's still pretty simple to write from scratch though, so > not too disastrous. > > Secondly, and much worse, it seems the nvidia-driver is built against an > older ABI incompatible version of xorg-server. It installs a > library /usr/local/lib/xorg/modules/libwfb.so which has a missing symbol > "miZeroLineScreenIndex". I found this recent article[1] which seems to > suggest replacing the nvidia installed version with the xorg version, > which sounds dubious imho (I dont speak/read/understand Japanese at all, > that may not be at all what it is saying!) > I tried updating from the latest version in ports (177.80) to the latest > on nvidias website (180.22), but they both still referred to > miZeroLineScreenIndex. > > I'll post full details of installed packages etc when I get home. > Thankfully, the nv driver seems to work reasonabley well now in 2D! > > If I was going to roll back xserver, what else would I need to roll > back? Presumabley all drivers? libX11? My ports is a locally slaved CVS > checkout as described in development(7), so this should be reasonabley > straight forward... I have been holding off on the new xorg until some of the dust settles, but I suggest that you re-install nvidia-driver. This has fixed the problem in the past. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From tevans.uk at googlemail.com Tue Feb 3 12:57:15 2009 From: tevans.uk at googlemail.com (Tom Evans) Date: Tue Feb 3 12:57:23 2009 Subject: Difficulties getting nvidia-driver to work with latest x.org ports In-Reply-To: <20090203203111.679FB1CC0B@ptavv.es.net> References: <20090203203111.679FB1CC0B@ptavv.es.net> Message-ID: <1233694620.82064.25.camel@jacob.nubtek.com> On Tue, 2009-02-03 at 12:31 -0800, Kevin Oberman wrote: > > From: Tom Evans > > Date: Tue, 03 Feb 2009 18:08:44 +0000 > > Sender: owner-freebsd-x11@freebsd.org > > > > Hi all > > > > This weekend, I installed 7.1-RELEASE on my home PC (base only). I then > > updated to RELENG_7, updated the ports tree to the latest, and went > > about installing the latest x.org ports. > > > > First off, the new xorg seems to have a bad bad regression - Xorg > > -configure is now largely useless, it generated a config with just > > ridiculous config. I'm still at work, but I'll post it when I get home, > > just crazy. It's still pretty simple to write from scratch though, so > > not too disastrous. > > > > Secondly, and much worse, it seems the nvidia-driver is built against an > > older ABI incompatible version of xorg-server. It installs a > > library /usr/local/lib/xorg/modules/libwfb.so which has a missing symbol > > "miZeroLineScreenIndex". I found this recent article[1] which seems to > > suggest replacing the nvidia installed version with the xorg version, > > which sounds dubious imho (I dont speak/read/understand Japanese at all, > > that may not be at all what it is saying!) > > I tried updating from the latest version in ports (177.80) to the latest > > on nvidias website (180.22), but they both still referred to > > miZeroLineScreenIndex. > > > > I'll post full details of installed packages etc when I get home. > > Thankfully, the nv driver seems to work reasonabley well now in 2D! > > > > If I was going to roll back xserver, what else would I need to roll > > back? Presumabley all drivers? libX11? My ports is a locally slaved CVS > > checkout as described in development(7), so this should be reasonabley > > straight forward... > > I have been holding off on the new xorg until some of the dust settles, > but I suggest that you re-install nvidia-driver. This has fixed the > problem in the past. I followed the sage Japanese advice, and symlinked to the xorg version of libwfb.so rather than the nvidia one. I have no ideas of the effects of doing this, or what libwfb is for, but this works for getting the driver to work, including DRI and enough OpenGL to drive compiz. For the archive, the error I was getting after a stock install of the nvidia-driver port was[1]: (II) Loading /usr/local/lib/xorg/modules//libwfb.so dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol "miZeroLineScreenIndex" (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so (II) UnloadModule: "wfb" (EE) Failed to load module "wfb" (loader failed, 7) ... (EE) NVIDIA(0): Need libwfb but wfbScreenInit not found Fatal server error: The fix was: cd /usr/local/lib/xorg/modules ; ln -hsf XXX* libwfb.so This worked with both the current version in ports (177.80) and with nvidias latest (180.22). Cheers Tom [1] http://freebsd.nubtek.com/logs/nvidia-libwfb.so.Xorg.0.log From saper at system.pl Tue Feb 3 13:05:05 2009 From: saper at system.pl (Marcin Cieslak) Date: Tue Feb 3 13:05:13 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <1233456742.1534.14.camel@ferret.2hip.net> References: <1233456742.1534.14.camel@ferret.2hip.net> Message-ID: <498897CB.7080505@system.pl> Robert Noland wrote: > Ok, I'm expecting Xserver 1.6 final to release sometime on Monday. I'm > planning to commit this sometime next week. This patch includes the > following Xserver 1.6rc2, randrproto rc, libXrandr rc, xrandr rc, and > the 2.6.1 release of the intel driver. After a successful upgrade of kernel and world r187968M:two days ago and a successful (sic!) update of X to server 1.5.3 and friends I have decided to give 1.6 a try. I have tried this both with intel and nv driver (my laptop has both but only one can be active at the time - switchable at the boot time). 1. First thing, I have lost access to my legacy X11 fonts. [dix] Could not init font path element /usr/local/lib/X11/fonts/misc/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/TTF/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/OTF, removing from list! etc. I get: % xset fp+ /usr/local/lib/X11/fonts/100dpi xset: bad font path element (#23), possible causes are: Directory does not exist or has wrong permissions Directory missing fonts.dir Incorrect font server address or syntax There is no more a "freetype" and "xtrap" module, so I had to change by config. Gtk applications (seamonkey) and Qt (psi) have no problems with fonts, but xterm does. xterm is unable to locate any bitmap font (fallback to "fixed") and when told to use Freetype fonts (-fa 'Luxi Mono-10' option) it looks like black text on black background (my xterm has a white fb, black bg). You can issue commands in such a window (the letter spacing is preserved and the cursor moves), but xterm segfaults when there is a need to scroll. xterm -bg white segfaults immediately, xterm has been recompiled after 1.6 installation. 2. Once (when running NVidia) the server froze, i.e. I could only move mouse and no keys worked (including server zap, switching VTs or Ctrl-Alt-Del). This happened when displaying a fast-scrolling ./configure output of the libXfont in a full-screen xterm window. The freeze doesn't look like a http://bugs.freedesktop.org/show_bug.cgi?id=17358 however. I am using dwm as the window manager. A bunch of config files and output from various commands is available at: http://akson.sgh.waw.pl/~saper/FreeBSD/ports/xorg-server/xorg-1.6/ --Marcin From g.veniamin at googlemail.com Tue Feb 3 14:01:54 2009 From: g.veniamin at googlemail.com (Gvozdikov Veniamin) Date: Tue Feb 3 14:02:05 2009 Subject: very low fps Message-ID: <4988BEC3.9030501@gmail.com> HI, I updated everything. Experience such a problem. [4:38]zloiadmin@ss.su /home/admin #uname -a FreeBSD ss.su 8.0-CURRENT FreeBSD 8.0-CURRENT #0 r187982: Sun Feb 1 23:20:02 KRAT 2009 zloiadmin@ss.su:/home/repository/obj/home/repository/src/sys/zl0 i386 vgapci0: port 0x1800-0x1807 mem 0xe8000000-0xefffffff,0xe0000000-0xe007ffff irq 16 at device 2.0 on pci0 agp0: on vgapci0 drm0: on vgapci0 vgapci0: child drm0 requested pci_enable_busmaster vgapci1: mem 0xf0000000-0xf7ffffff,0xe0080000-0xe00fffff at device 2.1 on pci0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 info: [drm] AGP at 0xe8000000 128MB !!! real memory 64mb. No support for extensions in BIOS. info: [drm] Initialized i915 1.6.0 20080730 drm0: [MPSAFE] drm0: [ITHREAD] vgapci0@pci0:0:2:0: class=0x030000 card=0x3080103c chip=0x35828086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82852GM/GME/GMV/PM, 855GM/GME Montara Integrated Graphics Device' class = display subclass = VGA vgapci1@pci0:0:2:1: class=0x038000 card=0x3080103c chip=0x35828086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82852GM/GME/GMV/PM, 855GM/GME Montara Integrated Graphics Device' class = display i915_load="YES" drm_load="YES" [4:46]zloiadmin@ss.su /home/admin/X #sysctl -a|grep drm dev.drm.0.%desc: Intel i852GM/i855GM GMCH dev.drm.0.%driver: drm dev.drm.0.%parent: vgapci0 [4:48]zloiadmin@ss.su /home/admin/X #sysctl -a | grep vga dev.vgapci.0.%desc: VGA-compatible display dev.vgapci.0.%driver: vgapci dev.vgapci.0.%location: slot=2 function=0 handle=\_SB_.PCI0.GFX0 dev.vgapci.0.%pnpinfo: vendor=0x8086 device=0x3582 subvendor=0x103c subdevice=0x3080 class=0x030000 dev.vgapci.0.%parent: pci0 dev.vgapci.1.%desc: VGA-compatible display dev.vgapci.1.%driver: vgapci dev.vgapci.1.%location: slot=2 function=1 dev.vgapci.1.%pnpinfo: vendor=0x8086 device=0x3582 subvendor=0x103c subdevice=0x3080 class=0x038000 dev.vgapci.1.%parent: pci0 dev.agp.0.%parent: vgapci0 dev.drm.0.%parent: vgapci0 dev.vga.0.%desc: Generic ISA VGA dev.vga.0.%driver: vga dev.vga.0.%parent: isa0 I made some measurements and put the results and logs. with the configuretion files with tag _all. Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 Option "AIGLX" "true" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "record" Load "xtrap" Load "glx" Load "dbe" Load "extmod" Load "dri" Load "GLcore" Load "freetype" Load "type1" EndSection Section "Monitor" Identifier "Monitor0" VendorName "SEC" ModelName "5642" EndSection Section "Device" Option "DRI" Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:0" Option "XAANoOffscreenPixmaps" "true" EndSection Section "Device" Option "DRI" Identifier "Card1" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:1" Option "XAANoOffscreenPixmaps" "true" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1280x768" EndSubSection EndSection Section "DRI" Group "video" Mode 0660 EndSection Section "Extensions" Option "Composite" "Enable" EndSection with disabled tiling. #glxgears Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". Failed to initialize GEM. Falling back to classic. 290 frames in 5.0 seconds = 57.838 FPS 291 frames in 5.0 seconds = 58.066 FPS 291 frames in 5.0 seconds = 58.072 FPS ^C #glxinfo name of display: :0.0 Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". Failed to initialize GEM. Falling back to classic. display: :0 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.2 server glx extensions: GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGI_swap_control, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group client glx vendor string: SGI client glx version string: 1.4 client glx extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap GLX version: 1.2 GLX extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group OpenGL vendor string: Tungsten Graphics, Inc OpenGL renderer string: Mesa DRI Intel(R) 852GM/855GM 20090114 x86/MMX/SSE2 OpenGL version string: 1.3 Mesa 7.3 OpenGL extensions: GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_point_parameters, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, GL_ARB_texture_cube_map, GL_ARB_texture_env_add, GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint, GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels, GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, GL_APPLE_client_storage, GL_APPLE_packed_pixels, GL_ATI_blend_equation_separate, GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent, GL_NV_point_sprite, GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays 3 GLX Visuals visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x44 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 36 GLXFBConfigs: visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x45 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x46 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x47 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x48 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x49 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x4a 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x4b 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x4c 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x4d 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x4e 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x4f 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x50 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x51 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x52 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x53 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x54 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x55 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x56 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x57 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x58 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x59 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x5a 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x5b 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x5c 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x5d 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x5e 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x5f 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x60 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x61 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x62 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x63 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x64 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x65 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x66 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x67 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x68 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow and Xorg.0.log When you start X -configure, X server it's not work. put file generated X -configure. This section I have added a new xorg.conf. when it was not working as well. Section "Device" Option "DRI" Identifier "Card1" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:1" Option "XAANoOffscreenPixmaps" "true" EndSection Thanks. -------------- next part -------------- ImageMagick-6.4.8.3 Image processing tools ORBit2-2.14.16 High-performance CORBA ORB with support for the C language OpenEXR-1.6.1_1 A high dynamic-range (HDR) image file format aalib-1.4.r5_4 An ascii art library adns-1.4_1 Easy to use, asynchronous-capable DNS client library and ut akonadi-1.1.1 Storage server for kdepim alltray-0.69_4 Dock any application with no native tray icon amspsfnt-1.0_5 AMSFonts PostScript Fonts (Adobe Type 1 format) apache-ant-1.7.0_2 Java- and XML-based build tool, conceptually similar to mak appres-1.0.1 Program to list application's resources apr-gdbm-db42-1.3.3.1.3.4_1 Apache Portability Library arping-2.06 ARP level "ping" utility asciidoc-8.3.5 A text document format for writing short documents and man aspell-0.60.6_2 Spelling checker with better suggestion logic than ispell atk-1.24.0 A GNOME accessibility toolkit (ATK) atunes-1.11.2 A full-featured audio player and manager developed in Java autoconf-2.13.000227_6 Automatically configure source code on many Un*x platforms autoconf-2.62 Automatically configure source code on many Un*x platforms autoconf-wrapper-20071109 Wrapper script for GNU autoconf automake-1.10.1 GNU Standards-compliant Makefile generator (1.10) automake-1.4.6_5 GNU Standards-compliant Makefile generator (1.4) automake-1.5_5,1 GNU Standards-compliant Makefile generator (1.5) automake-1.6.3_1 GNU Standards-compliant Makefile generator (1.6) automake-1.9.6_3 GNU Standards-compliant Makefile generator (1.9) automake-wrapper-20071109 Wrapper script for GNU automake automoc4-0.9.88 Automatic moc for Qt 4 packages avahi-0.6.24 The "meta-port" for the Avahi service discovery suite avahi-app-0.6.24 Service discovery on a local network babl-0.0.22_1 Dynamic pixel format conversion library bash-3.2.48_1 The GNU Project's Bourne Again SHell bdftopcf-1.0.1 Convert X font from BDF to PCF beforelight-1.0.3_1 A sample screen saver for X bigreqsproto-1.0.2 BigReqs extension headers bison-2.3_4,1 A parser generator from FSF, (mostly) compatible with Yacc bitmap-1.0.3_1 Bitmap editor and converter utilities for X bitstream-vera-1.10_4 Bitstream Vera TrueType font collection boost-python-1.34.1 Free peer-reviewed portable C++ source libraries bwidget-1.8.0_1 A high-level widget set for Tcl/Tk ca_root_nss-3.11.9_2 The root certificate bundle from the Mozilla Project cabextract-1.2 A program to extract Microsoft cabinet (.CAB) files cairo-1.8.6,1 Vector graphics library with cross-device output support cdiff-1.5 Diff readability enhancher for color terminals cdparanoia-3.9.8_8 A CDDA extraction tool (also known as ripper) cdrtools-2.01_7 CD/CD-R[W] and ISO-9660 image creation and extraction tools chmlib-0.39_2 A library for dealing with Microsoft ITSS/CHM format files clucene-0.9.21 CLucene is a C++ port of Lucene cmake-2.6.2 A cross-platform make cmpsfont-1.0_6 Computer Modern PostScript Fonts (Adobe Type 1 format) compat4x-i386-5.3_9 A convenience package to install the compat4x libraries compat5x-i386-5.4.0.8_9 A convenience package to install the compat5x libraries compat6x-i386-6.4.604000.200810 A convenience package to install the compat6x libraries compositeproto-0.4 Composite extension headers consolekit-0.3.0_4 Framework for defining and tracking users coreutils-6.9_3 The Free Software Foundation's core utilities createtorrent-1.1.4 Create BitTorrent files from the command line ctorrent-3.3.2 BitTorrent Client written in C for FreeBSD and Linux cups-base-1.3.9_3 Common UNIX Printing System cups-pstoraster-8.15.4_2 Postscript interpreter for CUPS printing to non-PS printers curl-7.19.2 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) cyrus-sasl-2.1.22_2 RFC 2222 SASL (Simple Authentication and Security Layer) damageproto-1.1.0_2 Damage extension headers db41-4.1.25_4 The Berkeley DB package, revision 4.1 db42-4.2.52_5 The Berkeley DB package, revision 4.2 dbus-1.2.4.4 A message bus system for inter-application communication dbus-glib-0.78 GLib bindings for the D-BUS messaging system dclib-0.3.22 Direct connect interface library for valknut desktop-file-utils-0.15_1 A couple of command line utilities for working with desktop diablo-jdk-1.6.0.07.02_3 Java Development Kit 1.6.0_07.02 djbfft-0.76_2 An extremely fast library for floating-point convolution djvulibre-nox11-3.5.21_1 DjVu base libraries and utilities dmidecode-2.10 A tool for dumping DMI (SMBIOS) contents in human-readable dmxproto-2.2.2 DMX extension headers docbook-1.4 Meta-port for the different versions of the DocBook DTD docbook-4.1_3 V4.1 of the DocBook DTD, designed for technical documentati docbook-4.2 V4.2 of the DocBook DTD, designed for technical documentati docbook-4.3 DocBook/SGML DTD V4.3, designed for technical documentation docbook-4.4 DocBook/SGML DTD V4.4, designed for technical documentation docbook-4.5 DocBook/SGML DTD V4.5, designed for technical documentation docbook-5.0_1 DocBook 5.0, designed for technical documentation docbook-sk-4.1.2_4 XML version of the DocBook DTD version controlled for Scrol docbook-xml-4.2_1 XML version of the DocBook DTD docbook-xml-4.3 DocBook/XML DTD V4.3, designed for technical documentation docbook-xml-4.4 DocBook/XML DTD V4.4, designed for technical documentation docbook-xml-4.5 DocBook/XML DTD V4.5, designed for technical documentation docbook-xsl-1.74.0_1 XSL DocBook stylesheets dri-7.3,2 OpenGL hardware acceleration drivers for the DRI dri2proto-1.99.3 DRI2 prototype headers dupmerge-1.73 Searches for files with equal content e2fsprogs-libuuid-1.41.3_1 UUID library from e2fsprogs package editres-1.0.3_1 Dynamic resource editor for X Toolkit Applications enchant-1.4.2 Dictionary/spellchecking framework encodings-1.0.2,1 X.Org Encoding fonts esound-0.2.41 A sound library for enlightenment package evieext-1.0.2 XEVIE extension headers exiv2-0.16_1,1 Exif and Iptc metadata manipulation library and tools expat-2.0.1 XML 1.0 parser written in C faad2-2.6.1_1,1 MPEG-2 and MPEG-4 AAC audio decoder festival-1.96_1 Multi-lingual speech synthesis system ffmpeg-2008.07.27_7 Hyper fast realtime audio/video encoder/converter, streamin fftw3-3.1.3 Fast C routines to compute the Discrete Fourier Transform fixesproto-4.0 Fixes extension headers flac-1.2.1 Free lossless audio codec flex-2.5.35_1 Fast lexical analyzer generator font-adobe-100dpi-1.0.0_1 X.Org Adobe 100dpi font font-adobe-75dpi-1.0.0 X.Org Adobe 75dpi font font-adobe-utopia-100dpi-1.0.1 X.Org Adobe Utopia 100dpi font font-adobe-utopia-75dpi-1.0.1 X.Org Adobe Utopia 75dpi font font-adobe-utopia-type1-1.0.1 X.Org Adobe Utopia Type1 font font-alias-1.0.1 X.Org Font aliases font-arabic-misc-1.0.0 X.Org miscellaneous Arabic fonts font-bh-100dpi-1.0.0 X.Org Bigelow Holmes 100dpi font font-bh-75dpi-1.0.0 X.Org Bigelow Holmes 75dpi font font-bh-lucidatypewriter-100dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 100dpi font font-bh-lucidatypewriter-75dpi-1.0.0 X.Org Bigelow Holmes Lucida TypeWriter 75dpi font font-bh-ttf-1.0.0 X.Org Bigelow & Holmes TTF font font-bh-type1-1.0.0 X.Org Bigelow Holmes Type1 font font-bitstream-100dpi-1.0.0 X.Org Bitstream Vera 100dpi font font-bitstream-75dpi-1.0.0 X.Org Bitstream Vera 75dpi font font-bitstream-type1-1.0.0 X.Org Bitstream Vera Type1 font font-cronyx-cyrillic-1.0.0 X.Org Cronyx Cyrillic font font-cursor-misc-1.0.0 X.Org miscellaneous Cursor fonts font-daewoo-misc-1.0.0 X.Org miscellaneous Daewoo fonts font-dec-misc-1.0.0 X.Org miscellaneous Dec fonts font-ibm-type1-1.0.0 X.Org IBM Type1 font font-isas-misc-1.0.0 X.Org miscellaneous ISAS fonts font-jis-misc-1.0.0 X.Org miscellaneous JIS fonts font-micro-misc-1.0.0 X.Org miscellaneous Micro fonts font-misc-cyrillic-1.0.0 X.Org miscellaneous Cyrillic font font-misc-ethiopic-1.0.0 X.Org miscellaneous Ethiopic font font-misc-meltho-1.0.0_1 X.Org miscellaneous Meltho font font-misc-misc-1.0.0 X.Org miscellaneous Misc fonts font-mutt-misc-1.0.0 X.Org miscellaneous Mutt fonts font-schumacher-misc-1.0.0_1 X.Org miscellaneous Schumacher fonts font-screen-cyrillic-1.0.1 X.Org Screen Cyrillic font font-sony-misc-1.0.0 X.Org miscellaneous Sony fonts font-sun-misc-1.0.0 X.Org miscellaneous Sun fonts font-util-1.0.1 Create an index of X font files in a directory font-winitzki-cyrillic-1.0.0 X.Org Winitzki Cyrillic font font-xfree86-type1-1.0.1 X.Org XFree86 Type1 font fontcacheproto-0.1.2 Fontcache extension headers fontconfig-2.6.0,1 An XML-based font configuration API for X Windows fontsproto-2.0.2 Fonts extension headers fonttosfnt-1.0.3 Wrap a bitmap font in a sftn wrapper freetype2-2.3.7 A free and portable TrueType font rendering engine fribidi-0.10.9 A Free Implementation of the Unicode Bidirectional Algorith fslsfonts-1.0.2 List fonts served by the X font server fstobdf-1.0.3 Generate BDF font from X font server fusefs-kmod-0.3.9.p1.20080208_5 Kernel module for fuse fusefs-libs-2.7.4 FUSE allows filesystem implementation in userspace gamin-0.1.10 A file and directory monitoring system gawk-3.1.6_1 The GNU version of Awk gccmakedep-1.0.2 Create dependencies in makefiles using 'gcc -M' gconf2-2.24.0 A configuration database system for GNOME gd-2.0.35,1 A graphics library for fast creation of images gdbm-1.8.3_3 The GNU database manager gegl-0.0.20_1 A graph based image processing framework getopt-1.1.4_1 A getopt(1) replacement that supports GNU-style long option gettext-0.17_1 GNU gettext package ghostscript8-8.63 Ghostscript 8.x PostScript interpreter gimp-2.6.4,2 The "meta-port" for The Gimp gimp-app-2.6.4_2,1 A GNU Image Manipulation Program gimp-gutenprint-5.1.7_1 GutenPrint Printer Driver gio-fam-backend-2.18.4 FAM backend for GLib's GIO library glib-1.2.10_12 Some useful routines of C programming (previous stable vers glib-2.18.4 Some useful routines of C programming (current stable versi glitz-0.5.6_2 OpenGL image compositing library glproto-1.4.9 GLX extension headers gmake-3.81_3 GNU version of 'make' utility gnome-doc-utils-0.14.2 GNOME doc utils gnome-keyring-2.24.1_2 A program that keeps passwords and other secrets gnome-mime-data-2.18.0_3 A MIME and Application database for GNOME gnome-mount-0.8_2 A front-end to mount, umount, and eject using HAL gnome-vfs-2.24.0 GNOME Virtual File System gnome_subr-1.0 Common startup and shutdown subroutines used by GNOME scrip gnomehier-2.3_11 A utility port that creates the GNOME directory tree gnupg-2.0.10_2 The GNU Privacy Guard gnutls-2.6.3_1 GNU Transport Layer Security library gpac-libgpac-0.4.4,1 Gpac MPEG-4 Systems library and headers gperf-3.0.3 Generates perfect hash functions for sets of keywords gpgme-1.1.5_1 A library to make access to GnuPG easier gsfonts-8.11_4 Fonts used by GNU Ghostscript (or X) gsnapshot-1.0_3 A gtk+ based screen capture gstreamer-0.10.22_1 Development framework for creating media applications gstreamer-ffmpeg-0.10.4_1 GStreamer plug-in for manipulating MPEG video streams gstreamer-plugins-0.10.22,3 GStreamer written collection of plugins handling several me gstreamer-plugins-a52dec-0.10.10,3 Gstreamer ATSC A/52 stream aka AC-3 (dvd audio) plugin gstreamer-plugins-bad-0.10.10,3 Bad gstreamer-plugins gstreamer-plugins-core-0.10_10 Core set of typical audio and video gstreamer-plugins gstreamer-plugins-dts-0.10.10_1,3 Gstreamer dts plugin gstreamer-plugins-dvd-0.10.10,3 Gstreamer dvd plugin set gstreamer-plugins-gnomevfs-0.10.22_1,3 Gstreamer gnomevfs plugin gstreamer-plugins-good-0.10.13,3 Good gstreamer-plugins gstreamer-plugins-libpng-0.10.13,3 Gstreamer png plugin gstreamer-plugins-mad-0.10.10,3 Gstreamer mp3 decoder plugin gstreamer-plugins-mp3-0.10.0_1 Gstreamer Plugins Mp3 decoder meta-port gstreamer-plugins-ogg-0.10.22_1,3 Gstreamer Ogg bitstream plugin gstreamer-plugins-pango-0.10.22_1,3 Gstreamer pango textoverlay plugin gstreamer-plugins-theora-0.10.22_1,3 Gstreamer theora plugin gstreamer-plugins-ugly-0.10.10,3 Ugly gstreamer-plugins gstreamer-plugins-vorbis-0.10.22_1,3 Gstreamer vorbis encoder/decoder plugin gstreamer-plugins-xvid-0.10.10_1,3 Gstreamer xvid plugin gtk-1.2.10_20 Gimp Toolkit for X11 GUI (previous stable version) gtk-2.14.7 Gimp Toolkit for X11 GUI (current stable version) gtk-engines2-2.16.1 Theme engine for the GTK+-2.0 toolkit gtk-qt4-engine-1.1 GTK-QT Theme Engine allows GTK2 apps to use QT/KDE themes gtkspell-2.0.15 A GTK+ 2 spell checking component gutenprint-5.1.7_1 The "meta-port" for GutenPrint gutenprint-base-5.1.7_1 GutenPrint Printer Driver gutenprint-ijs-5.1.7_1 GutenPrint Printer Driver gvfs-1.0.3 GNOME virtual file system hal-0.5.11_16 Hardware Abstraction Layer for simplifying device access help2man-1.36.4_2 Automatically generating simple manual pages from program o hicolor-icon-theme-0.10_2 A high-color icon theme shell from the FreeDesktop project htop-0.8 A better top(1) - interactive process viewer httperf-0.9.0 A tool for measuring webserver performance iceauth-1.0.2 ICE authority file utility for X ico-1.0.2 Displays a wire-frame rotating plyhedron icu-3.8.1_1 International Components for Unicode (from IBM) ilmbase-1.0.1_1 ILM Base libraries a.k.a. Half, IlmThread, Imath and Iex imake-1.0.2_4,1 Imake and other utilities from X.Org inputproto-1.5.0 Input extension headers intltool-0.40.5 Tools to internationalize various kinds of data files iso-codes-3.2_1 Lists of the country, language and currency iso names iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) iw-hspell-0.8 Hebrew spellchecker and morphology engine jackit-0.109.2_1 A low-latency audio server jasper-1.900.1_7 An implementation of the codec specified in the JPEG-2000 s javavmwrapper-2.3.2 Wrapper script for various Java Virtual Machines jbigkit-1.6 Lossless compression for bi-level images such as scanned pa jpeg-6b_7 IJG's jpeg compression utilities kbproto-1.0.3 KB extension headers kde4-4.2.0 The "meta-port" for KDE kde4-shared-mime-info-1.0 Handles shared MIME database under ${KDE_PREFIX} kde4-style-bespin-0.1 Transparent KDE4 style kde4-xdg-env-1.0 Script which hooks into startkde and helps KDE pick up XDG kdeaccessibility-4.2.0 Accessibility applications for KDE4 kdeadmin-4.2.0 KDE Admin applications kdebase-4.2.0 Basic applications for the KDE system kdebase-runtime-4.2.0 Basic applications for the KDE system kdebase-workspace-4.2.0 Basic applications for the KDE system kdehier4-1.0.3 Utility port that creates hierarchy of shared KDE4 director kdelibs-4.2.0 Base set of libraries needed by KDE programs kdemultimedia-4.2.0 KDE Multimedia applications kdepim-4.2.0 Libraries for KDE-PIM applications kdepimlibs-4.2.0 Libraries for KDE-PIM applications kdeplasma-addons-4.2.0 Extra plasmoids for KDE4 kdeutils-4.2.0 Utilities for the KDE4 integrated X11 Desktop lame-3.98.2_1 Fast MP3 encoder kit lcms-1.17,1 Light Color Management System -- a color management library libFS-1.0.1 The FS library libGL-7.3 OpenGL library that renders using GLX or DRI libGLU-7.3 OpenGL utility library libICE-1.0.4_1,1 Inter Client Exchange library for X11 libIDL-0.8.12 A library for creating trees of CORBA IDL files libSM-1.1.0,1 Session Management library for X11 libX11-1.1.99.2,1 X11 library libXScrnSaver-1.1.3 The XScrnSaver library libXTrap-1.0.0 The XTrap library libXau-1.0.4 Authentication Protocol library for X11 libXaw-1.0.5_1,1 X Athena Widgets library libXcomposite-0.4.0,1 X Composite extension library libXcursor-1.1.9_1 X client-side cursor loading library libXdamage-1.1.1 X Damage extension library libXdmcp-1.0.2_1 X Display Manager Control Protocol library libXevie-1.0.2 The Xevie library libXext-1.0.5,1 X11 Extension library libXfixes-4.0.3_1 X Fixes extension library libXfont-1.3.4,1 X font libary libXfontcache-1.0.4 The Xfontcache library libXft-2.1.13 A client-sided font API for X applications libXi-1.2.0,1 X Input extension library libXinerama-1.0.3,1 X11 Xinerama library libXmu-1.0.4,1 X Miscellaneous Utilities libraries libXp-1.0.0,1 X print library libXpm-3.5.7 X Pixmap library libXprintAppUtil-1.0.1 The XprintAppUtil library libXprintUtil-1.0.1 The XprintUtil library libXrandr-1.2.3 X Resize and Rotate extension library libXrender-0.9.4_1 X Render extension library libXres-1.0.3_3 X Resource usage library libXt-1.0.5_1 X Toolkit library libXtst-1.0.3_1 X Test extension libXv-1.0.4,1 X Video Extension library libXvMC-1.0.4_1 X Video Extension Motion Compensation library libXxf86dga-1.0.2 X DGA Extension libXxf86misc-1.0.1 X XF86-Misc Extension libXxf86vm-1.0.2 X Vidmode Extension liba52-0.7.4_2 A free library for decoding ATSC A/52 streams, aka AC-3 libao-0.8.8_1 Portable audio output library libart_lgpl-2.3.20,1 Library for high-performance 2D graphics libassuan-1.0.5 IPC library used by GnuPG and gpgme libaudiofile-0.2.6 A sound library for SGI audio file libcddb-1.3.0 A library to access data on a CDDB server libcdio-0.78.2_2 Compact Disc Input and Control Library libcheck-0.9.6 A unit test framework for C libcroco-0.6.1_1 CSS2 parsing library libdaemon-0.12 Lightweight C library that eases the writing of UNIX daemon libdca-0.0.5 Free DTS Coherent Acoustics decoder libdmx-1.0.2_1 DMX extension library libdnet-1.11_2 A simple interface to low level networking routines libdrm-2.4.4 Userspace interface to kernel Direct Rendering Module servi libdvdcss-1.2.9_2 Portable abstraction library for DVD decryption libdvdnav-0.1.10_3 The library for the xine-dvdnav plugin libdvdread-0.9.7_3 This is needed by ogle, which is a DVD player that supports libevent-1.4.9 Provides an API to execute callback functions on certain ev libexecinfo-1.1_3 A library for inspecting program's backtrace libexif-0.6.17 Library to read digital camera file meta-data libfame-0.9.1_2 A video encoding library libfontenc-1.0.4 The fontenc Library libfpx-1.2.0.12_1 Library routines for working with Flashpix images libgcrypt-1.4.4 General purpose crypto library based on code used in GnuPG libglade2-2.6.3 GNOME glade library libglut-7.3_1 OpenGL utility toolkit libgmp-4.2.4 A free library for arbitrary precision arithmetic libgpg-error-1.7 Common error values for all GnuPG components libgphoto2-2.4.4 A universal digital camera picture control tool libgsf-1.14.11 An extensible i/o abstraction for dealing with structured f libical-0.42 An implementation of the IETF's Calendaring and Scheduling libiconv-1.11_1 A character set conversion library libid3tag-0.15.1b ID3 tags library (part of MAD project) libidn-1.9 Internationalized Domain Names command line tool libijs-0.35_1 C library that supports plugin printer driver for Ghostscri libimg-1.2.4_4 A library of image format handlers for Tk4.1 and later libksba-1.0.5 KSBA is an X.509 Library libltdl-1.5.26 System independent dlopen wrapper libmad-0.15.1b_2 Libmad library (part of MAD project) libmal-0.44 A library encapsulating malsync libmng-1.0.10 Multiple-image Network Graphics (MNG) reference library libmodplug-0.8.4 ModPlug mod-like music shared libraries libmpcdec-1.2.6 High quality audio compression format libmspack-0.0.20060920 A library for Microsoft compression formats libmusicbrainz-2.1.5 2nd generation incarnation of the CD Index - audio metadata libnet11-1.1.2.1_2,1 A C library for creating IP packets libnotify-0.4.5 A library for desktop notifications libofa-0.9.3_2 The Open Fingerprint Architecture Library libogg-1.1.3,4 Ogg bitstream library liboil-0.3.15 Library of optimized inner loops liboldX-1.0.1 Old X library libotr-3.2.0_1 The portable OTR Messaging Library and toolkit libpaper-1.1.21_3 A library providing routines for paper size management libpcap-0.9.7_1 Ubiquitous network traffic capture library libpci-2.2.8_1 PCI configuration space I/O made easy libpciaccess-0.10.5_2 Generic PCI access library libpthread-stubs-0.1 This library provides weak aliases for pthread functions libpurple-2.5.4 Backend library for the Pidgin multi-protocol messaging cli librsvg2-2.22.3_2 Library for parsing and rendering SVG vector-graphic files libsamplerate-0.1.4 Secret Rabbit Code: a Sample Rate Converter for audio libsigc++-2.2.3 Callback Framework for C++ libslang2-2.1.4 Routines for rapid alpha-numeric terminal applications deve libsmi-0.4.7 A library to access SMI MIB information libsndfile-1.0.17_2 Reading and writing files containing sampled sound (like WA libsoup-2.24.3 A SOAP (Simple Object Access Protocol) implementation in C libtasn1-1.8 ASN.1 structure parser library libtheora-1.0.b2 Theora video codec for the Ogg multimedia streaming system libtool-1.5.26 Generic shared library support script libtorrent-devel-0.12.4 BitTorrent Library written in C++ (development version) libtunepimp-0.5.3_3,1 Client library for musicbrainz libungif-4.1.4_5 Tools and library routines for working with GIF images libusb-0.1.12_4 Library giving userland programs access to USB devices libutempter-1.1.5_1 Interface to record user sessions to utmp and wtmp files libvolume_id-0.81.0 Library to provide file system type information libvorbis-1.2.0_2,3 Audio compression codec library libwmf-0.2.8.4_2 Tools and library for converting Microsoft WMF (windows met libwnck-2.24.2 Library used for writing pagers and taskslists libwww-5.4.0_4 The W3C Reference Library libxcb-1.1.93 The X protocol C-language Binding (XCB) library libxine-1.1.15_3 Libraries for xine multimedia player libxkbfile-1.0.5 XKB file library libxkbui-1.0.2_1 The xkbui library libxklavier-3.7,1 An utility library to make XKB stuff easier libxml2-2.7.2_1 XML parser library for GNOME libxslt-1.1.24_2 The XSLT C library for GNOME libzip-0.8 A C library for reading, creating, and modifying zip archiv linux-alsa-lib-1.0.10.3 The Advanced Linux Sound Architecture libraries linux-expat-1.95.8 Linux/i386 binary port of Expat XML-parsing library linux-fontconfig-2.2.3_7 Linux/i386 binary of Fontconfig linux-libsigc-2.0.17 Callback Framework for C++ (linux version) linux-sun-jdk-1.6.0.10 Sun Java Development Kit 1.6 for Linux linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-fc6-6_5 Base set of packages needed in Linux mode (for i386/amd64) linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of listres-1.0.1_1 List resources in widgets localedata-5.4 Legacy locale data for FreeBSD 6+ lua-5.1.3_3 Small, compilable scripting language providing easy access luit-1.0.3 Locale and ISO 2022 support for Unicode terminals m4-1.4.11,1 GNU m4 mDNSResponder-108 Apple's mDNSResponder makedepend-1.0.1,1 A dependency generator for makefiles mc-4.6.1_8 Midnight Commander, a free Norton Commander Clone mcabber-0.9.9 Small Jabber console client mesa-demos-7.3 OpenGL demos distributed with Mesa mingw32-bin-msvcrt-r3.15.a3.12 Headers and Libraries for Windows cross-development mingw32-binutils-2.18,1 GNU Binutils for Windows cross-development mingw32-gcc-4.2.1,1 FSF gcc-4.2 for Windows cross-development mingw32-pthreads-2.8.0 POSIX threads library for Windows compiled with MinGW32 mkcomposecache-1.2_1 Program to create Compose cache files mkfontdir-1.0.4 Create an index of X font files in a directory mkfontscale-1.0.6 Creates an index of scalable font files for X mpeg4ip-libmp4v2-1.6.1 Mpeg-4 library and tools from mpeg4ip mplayer-0.99.11_11 High performance media player supporting many formats mplayer-skins-1.1.2_6 Skins for MPlayer's Graphical User Interface (GUI) mysql-client-5.0.75 Multithreaded SQL database (client) mysql-server-5.0.75 Multithreaded SQL database (server) nas-1.9.1_3 Network Audio System nasm-2.05.01,1 General-purpose multi-platform x86 and x86-64 assembler neon28-0.28.3 An HTTP and WebDAV client library for Unix systems net-snmp-5.4.2.1_1 An extendable SNMP implementation netpbm-10.26.59 A toolkit for conversion of images between different format newfile-1.0.14_2 A tool for creating starter files in various languages nmap-4.76 Port scanning utility for large networks nspr-4.7 A platform-neutral API for system level and libc like funct nss-3.11.9_2 Libraries to support development of security-enabled applic oclock-1.0.1 Round clock application for X openldap-client-2.4.13 Open source LDAP client implementation openoffice.org-3.0.1 Integrated wordprocessor/dbase/spreadsheet/drawing/chart/br opera-9.63.20081215_1 Blazingly fast, full-featured, standards-compliant browser, p5-Archive-Zip-1.26 Perl module to create, manipulate, read, and write Zip arch p5-Compress-Raw-Zlib-2.015 Low-Level Interface to zlib compression library p5-Compress-Zlib-2.015 Perl5 interface to zlib compression library p5-File-Temp-0.21 Perl5 module to generate temporary files or directories saf p5-File-Which-0.05 Portable implementation of `which' in Perl p5-IO-Compress-Base-2.015 Base Class for IO::Uncompress modules p5-IO-Compress-Zlib-2.015 Perl5 interface for reading and writing of (g)zip files p5-PathTools-3.2900 A Perl module for portably manipulating file specifications p5-XML-Parser-2.36 Perl extension interface to James Clark's XML parser, expat p5-gettext-1.05_2 Message handling functions p5-type1inst-0.6.1_5 A script that helps install Postscript fonts in X Window Sy pango-1.22.4 An open-source framework for the layout and rendering of i1 patch-2.5.4 GNU patch utility pciids-20081012 Database of all known ID's used in PCI devices pcre-7.8 Perl Compatible Regular Expressions library pdfedit-0.4.1_1 Free editor for manipulating PDF documents (QT3 GUI and CLI perl-5.8.9 Practical Extraction and Report Language phonon-4.3.0 KDE4 phonon applications pidgin-2.5.4 Pidgin multi-protocol messaging client (GTK+ UI) pilot-link-0.12.3,1 Suite of tools used to connect and sync your Palm handled pinentry-0.7.5_1 A collection of simple PIN or passphrase entry dialogs pixman-0.13.2 Low-level pixel manipulation library pkg-config-0.23_1 A utility to retrieve information about installed libraries png-1.2.34 Library for manipulating PNG images policykit-0.9_2 Framework for controlling access to system-wide components policykit-gnome-0.9.2 GNOME frontend to the PolicKit framework poppler-0.8.7_1 A PDF rendering library poppler-data-0.2.1 Poppler encoding data poppler-gtk-0.8.7 Gtk bindings to poppler poppler-qt4-0.8.7 Qt4 bindings to poppler popt-1.7_5 A getopt(3) like library with a number of enhancements, fro portaudio-18.1_2 Portable cross-platform Audio API portlint-2.10.2_1 A verifier for FreeBSD port directory portmaster-2.6 Manage your ports without external databases or languages porttools-0.77_3 Tools for testing and submitting port updates and new ports portupgrade-2.4.6,2 FreeBSD ports/packages administration and management tool s postgresql-client-8.3.5 PostgreSQL database (client) printproto-1.0.4 Print extension headers printscreen-1.0 Simple screenshot program for X11 privoxy-3.0.10 Privoxy is a web proxy with advanced filtering capabilities pth-2.0.7 GNU Portable Threads pulseaudio-0.9.14 Sound server for UNIX py25-Impacket-0.9.6.0 Collection of Python classes providing access to network pa py25-cryptkit-0.9 A Cryptographic Toolkit for Python py25-dbus-0.83.0_1 Python bindings for the D-BUS messaging system py25-eyed3-0.6.16 Python module for processing ID3 tags py25-imaging-1.1.6_2 The Python Imaging Library py25-libxml2-2.7.2 Python interface for XML parser library for GNOME py25-mutagen-1.12 A Python-based audio metadata tag reader and writer py25-numeric-24.2_3 The Numeric Extension to Python py25-opengl-3.0.0.b8_1 An OpenGL (and related library) interface for Python py25-pcapy-0.10.5 Python extension module to capture packets on the network py25-pycrypto-2.0.1_1 The Python Cryptography Toolkit py25-sip-4.7.4,1 Python to C and C++ bindings generator py25-sqlite3-2.5.2_1 Standard Python binding to the SQLite3 library py25-tkinter-2.5.2_2 Python bindings to the Tk widget set py25-wxPython-common-2.8.7.1_1 Python bindings for the wxWidgets/GTK GUI toolkit py25-wxPython-unicode-2.8.7.1_1 Python bindings for the wxWidgets/GTK GUI toolkit py25-xml-0.8.4 PyXML: Python XML library enhancements python25-2.5.2_3 An interpreted object-oriented programming language qca-2.0.0 Cross-platform crypto API for QT qimageblitz-0.0.4_1 KDE 4 integrated X11 desktop qmake-3.3.8_1 The build utility of the Qt project qscintilla2-2.2_2,1 Qt4 port of the Scintilla C++ editor class qt-3.3.8_9 Multiplatform C++ application framework qt4-4.4.3 Multiplatform C++ application framework (metaport) qt4-accessible-4.4.3 Qt accessibility widgets qt4-assistant-4.4.3 Qt documentation browser qt4-assistant-adp-4.4.3 Qt documentation browser, adp compat version qt4-clucene-4.4.3 QtCLucene full text search library wrapper qt4-corelib-4.4.3 Qt core library qt4-dbus-4.4.3 Qt4 bindings for the D-BUS messaging system qt4-designer-4.4.3 Qt ui editor qt4-doc-4.4.3 Multiplatform C++ application framework qt4-gui-4.4.3 Qt graphical user interface library qt4-help-4.4.3 QtHelp module provides QHelpEngine API and is used by Assis qt4-iconengines-4.4.3 Qt SVG icon engine plugin qt4-imageformats-4.4.3 Qt imageformat plugins for GIF, JPEG, MNG and SVG qt4-inputmethods-4.4.3 Qt input method plugins qt4-l10n-4.4.3 Qt translations messages qt4-libQtAssistantClient-4.4.3 Qt documentation browser integration library qt4-linguist-4.4.3 Qt localisation tool qt4-makeqpf-4.4.3 Qt qtopia font creator qt4-moc-4.4.3 Qt meta object compiler qt4-mysql-plugin-4.4.3 Qt MySQL database plugin qt4-network-4.4.3 Qt network library qt4-opengl-4.4.3 Qt OpenGL library qt4-pixeltool-4.4.3 Qt screen magnification utility qt4-porting-4.4.3 Qt utility to assist with porting Qt3 applications to Qt4 qt4-qdbusviewer-4.4.3 Qt4 D-BUS viewer qt4-qmake-4.4.3 The build utility of the Qt project qt4-qt3support-4.4.3 Qt3 compatibility library qt4-qtestlib-4.4.3 Qt unit testing library qt4-qvfb-4.4.3 Qt virtual framebuffer utility qt4-rcc-4.4.3 Qt resource compiler qt4-script-4.4.3 Qt script qt4-sql-4.4.3 Qt SQL library qt4-sqlite-plugin-4.4.3 Qt SQLite 3.x database plugin qt4-svg-4.4.3 Qt SVG library qt4-uic-4.4.3 Qt user interface compiler qt4-uic3-4.4.3 Qt backwards-compatible user interface compiler qt4-webkit-4.4.3 Qt4 webkit engine qt4-xml-4.4.3 Qt XML library qt4-xmlpatterns-4.4.3 XQuery 1.0 and XPath 2.0 support for Qt4 qt4-xmlpatterns-tool-4.4.3 Qt4 command line utility for running XQueries randrproto-1.2.1 Randr extension headers raptor-1.4.16_1 RDF Parser Toolkit for Redland rarian-0.8.1 An OMF help system based on the Freedesktop specification recordproto-1.13.2 RECORD extension headers redland-1.0.7_1 A high-level interface for RDF renderproto-0.9.3 RenderProto protocol headers resourceproto-1.0.2 Resource extension headers rgb-1.0.1 Uncompile an rgb corl-name database rpm-3.0.6_14 The Red Hat Package Manager rstart-1.0.2 Sample implementation of a Remote Start client rtorrent-devel-0.8.4 BitTorrent Client written in C++ (development version) ru-kde-l10n-4.2.0 Russian messages and documentation for KDE4 ruby-1.8.6.287,1 An object-oriented interpreted scripting language ruby18-bdb-0.6.4 Ruby interface to Sleepycat's Berkeley DB revision 2 or lat ruby18-deplate-0.8.4 Ruby tool for converting wiki-like markup samba-3.0.34,1 A free SMB and CIFS client and server for UNIX samba-libsmbclient-3.0.34_1 Shared libs from the samba package sane-backends-1.0.19_1 API for access to scanners, digitals camera, frame grabbers screen-4.0.3_5 A multi-screen window manager scripts-1.0.1 Various X related scripts scrnsaverproto-1.1.0 ScrnSaver extension headers sdl-1.2.13_2,2 Cross-platform multimedia development API sdocbook-xml-1.1,1 "Simplified" DocBook XML DTD sessreg-1.0.4 Manage utmp/wtmp entries for non-init X clients setxkbmap-1.0.4 Set the keyboard using the X Keyboard Extension shared-mime-info-0.51 A MIME type database from the FreeDesktop project showfont-1.0.2 Font dumper for the X font server silc-toolkit-1.1.7 Secure Internet Live Conferencing (SILC) network toolkit simdock-1.2_1 A fast and customizable dockbar skype-2.0.0.72,1 P2P VoIP software smproxy-1.0.2 Session Manager Proxy snort-2.8.2.2_2 Lightweight network intrusion detection system soprano-2.1.67 QT4 RDF framework speex-1.2.r1_1,1 An open-source patent-free voice codec sqlite3-3.6.10 An SQL database engine in a C library w/ Tcl wrapper startup-notification-0.9_2 Library that supports startup notification spec from freede strigi-0.6.3 Desktop searching program subversion-1.5.5_1 Version control system sudo-1.6.9.17 Allow others to run commands as root svr4_base-2.6 Compatibility framework necessary for SVR4 emulation t1lib-5.1.2_1,1 A Type 1 Rasterizer Library for UNIX/X11 taglib-1.5 Library for manipulating ID3 tags and Ogg comments tcl-8.4.19,1 Tool Command Language tcllib-1.10_1 A collection of utility modules for Tcl tclmore-0.7b1 More TCL commands tcltls-1.6 SSL extensions for TCL; dynamicly loadable teTeX-base-3.0_14 Thomas Esser's distribution of TeX & friends (binaries) teTeX-texmf-3.0_5 Thomas Esser's distribution of TeX & friends (texmf tree) tex-texmflocal-1.9 Meta-port that creates a site-local $TEXMF directory texi2html-1.76_1,1 Texinfo to HTML converter thunderbird-2.0.0.19_1 Mozilla Thunderbird is standalone mail and news that stands thunderbird-i18n-2.0.0.18 Localized interface for Thunderbird tiff-3.8.2_3 Tools and library routines for working with TIFF images tk-8.4.19_1,2 Graphical toolkit for TCL tkXwin-1.0_3 Tcl/Tk library to detect idle periods of an X session tkabber-devel-0.11.1.a.20081023 Tcl/Tk based jabber client, development version tkabber-plugins-20081023 External Plugins for Tkabber tor-0.2.0.33 An anonymizing overlay network for TCP trapproto-3.4.3 DEC-XTRAP extension headers tsocks-1.8.b5_4 Allow non SOCKS aware applications to use SOCKS without mod twm-1.0.4 Tab Window Manager for the X Window System unrar-iconv-3.80,5 Extract, view & test RAR archives unzip-5.52_5 List, test and extract compressed files in a ZIP archive v4l_compat-1.0.20060801 Video4Linux compatibility header valknut-0.4.8 A Direct Connect client QT GUI vcdimager-0.7.23_5 GNU VCDImager/VCDRip -- The GNU VideoCD Image Maker/Ripping vidalia-0.1.10 A graphical Tor controller based on Qt 4.x videoproto-2.2.2 Video extension headers viewres-1.0.1_1 Graphical class browser for Xt vorbis-tools-1.2.0_4,3 Play, encode, and manage Ogg Vorbis files wavpack-4.50.1 Audio codec for lossless, lossy and hybrid compression webfonts-0.30_6 TrueType core fonts for the Web webkit-gtk2-1.0.1_4 An opensource browser engine wget-1.11.4 Retrieve files from the Net via HTTP(S) and FTP win32-codecs-3.1.0.r1,1 Huge compilation of Win32 binary video codecs wine-1.1.14,1 Microsoft Windows compatibility layer for Unix-like systems wireshark-1.0.5 A powerful network analyzer/capture tool wxgtk2-2.8.9 The wxWidgets GUI toolkit with GTK+ bindings wxgtk2-common-2.8.9 The wxWidgets GUI toolkit (common files) wxgtk2-contrib-2.8.9 The wxWidgets GUI toolkit contributed libraries wxgtk2-contrib-common-2.8.9 The wxWidgets GUI toolkit contributed libraries (common fil wxgtk2-unicode-2.8.9 The wxWidgets GUI toolkit (Unicode) wxgtk2-unicode-contrib-2.8.9 The wxWidgets GUI toolkit contributed libraries (Unicode) x11perf-1.5 X11 server performance test program x264-0.0.20080409_2 Multimedia library and tool for encoding H.264/AVC video st xauth-1.0.3 X authority file utility xbacklight-1.1 Program to adjust backlight brightness xbiff-1.0.1_1 Mailbox flag for X xbitmaps-1.0.1 X.Org bitmaps data xcalc-1.0.2_1 Scientific calculator for X xcb-proto-1.3 The X protocol C-language Binding (XCB) protocol xcb-util-0.3.2 A module with libxcb/libX11 extension/replacement libraries xclipboard-1.0.1_1 X clipboard client xclock-1.0.3_1 Analog and digital clock for X xcmiscproto-1.1.2 XCMisc extension headers xcmsdb-1.0.1 Device Color Characterization utility for X xconsole-1.0.3_1 Monitor system console messages with X xcursor-themes-1.0.1_1 X.org cursors themes xcursorgen-1.0.2 Create an X cursor file from a collection of PNG images xdbedizzy-1.0.2 Demo of DBE creating a double buffered spinning scene xditview-1.0.1_1 Display ditroff output xdm-1.1.8_1 X.Org X display manager xdpyinfo-1.0.3 Display information utility for X xdriinfo-1.0.2 Query configuration information of DRI drivers xedit-1.1.2 Simple text editor for X xev-1.0.3 Print contents of X events xextproto-7.0.5 XExt extension headers xeyes-1.0.1 A follow the mouse X demo xf86-input-keyboard-1.3.2 X.Org keyboard input driver xf86-input-mouse-1.4.0_1 X.Org mouse input driver xf86-video-intel-2.5.1 Driver for Intel integrated graphics chipsets xf86bigfontproto-1.1.2 XFree86-Bigfont extension headers xf86dga-1.0.2_1 Test program for the XFree86-DGA extension xf86dgaproto-2.0.3 XFree86-DGA extension headers xf86driproto-2.0.4 XFree86-DRI extension headers xf86miscproto-0.9.2 XFree86-Misc extension headers xf86rushproto-1.1.2 XFree86-Rush extension headers xf86vidmodeproto-2.2.2 XFree86-VidModeExtension extension headers xfd-1.0.1_1 Display all characters in an X font xfindproxy-1.0.1 Locate available proxy services xfontsel-1.0.2_1 Point and click selection of X11 font names xfs-1.0.8_1,1 X.Org font server xfsinfo-1.0.2 X font server information utility xfwp-1.0.1 X firewall proxy xgamma-1.0.2 Gamma correction through the X server. xgc-1.0.1_1 X graphics demo xhost-1.0.2 Server access control program for X xine-0.99.5_3 An X11 multimedia player xineramaproto-1.1.2 Xinerama extension headers xinit-1.1.1 X Window System initializer xkbcomp-1.0.5 Compile XKB keyboard description xkbevd-1.0.2 XKB event daemon xkbprint-1.0.1 Utility for printing an XKB keyboard description xkbutils-1.0.1_2 XKB utility demos xkeyboard-config-1.4 X Keyboard Configuration Database xkill-1.0.1 Utility for killing a client by its X resource xload-1.0.2_1 System load average display for X xlogo-1.0.1_1 Displays the X Window System logo. xlsatoms-1.0.1 List interned atoms defined on a server xlsclients-1.0.1 List client applications running on a display xlsfonts-1.0.2 Server font list displayer for X xmag-1.0.2_1 X application for screen magnifying xman-1.0.3_1 Manual page display program for X xmessage-1.0.2_1 Display message or query in a X window xmlcatmgr-2.2 SGML and XML catalog manager xmlcharent-0.3_2 XML character entities xmlrpc-c-devel-1.11.00_3 XML-RPC library for C and C++ xmodmap-1.0.3 Utility for modifying keymaps and pointer button mappings i xmore-1.0.1_1 Plain text display program for X xorg-7.4 X.Org complete distribution metaport xorg-apps-7.4_1 X.org apps meta-port xorg-cf-files-1.0.2_3 X.org cf files for use with imake builds xorg-docs-1.4,1 X.org documentation files xorg-drivers-7.4 X.org drivers meta-port xorg-fonts-100dpi-7.4 X.Org 100dpi bitmap fonts xorg-fonts-7.4 X.org fonts meta-port xorg-fonts-75dpi-7.4 X.Org 75dpi bitmap fonts xorg-fonts-cyrillic-7.4 X.Org Cyrillic bitmap fonts xorg-fonts-miscbitmaps-7.4 X.Org miscellaneous bitmap fonts xorg-fonts-truetype-7.4 X.Org TrueType fonts xorg-fonts-type1-7.4 X.Org Type1 fonts xorg-libraries-7.4 X.org libraries meta-port xorg-server-1.5.3_2,1 X.Org X server and related programs xpi-quick-locale-switcher-1.6.5.1 Quickly change and apply a different locale from the tools xpi-xpcom-component-viewer-0.7.0 XPCOM Component Viewer xplsprinters-1.0.1 Shows a list of Xprint printers xpr-1.0.2 Utility for printing an X window dump xprehashprinterlist-1.0.1 Recomputes the list of available printers. xprop-1.0.4 Property displayer for X xproto-7.0.14 X11 protocol headers xproxymanagementprotocol-1.0.2 X Proxy Management Protocol headers xrandr-1.2.3 Primitive command line interface to the RandR extension xrdb-1.0.5 X server resource database utility xrefresh-1.0.2 Refresh all or part of an X screen xrx-1.0.1_2 RX helper program xset-1.0.4 User preference utility for X xsetmode-1.0.0 Set the mode for an X Input Device xsetpointer-1.0.1 Set an X Input device as the main pointer xsetroot-1.0.2 root window parameter setting utility for X xsm-1.0.1_1 X Session Manager xstdcmap-1.0.1 X standard colormap utility xterm-238_1 Terminal emulator for the X Window System xtrans-1.2.3 Abstract network code for X xtrap-1.0.2 XTrap sample clients for X xvid-1.2.1,1 An opensource MPEG-4 codec, based on OpenDivx xvidcap-1.1.4.p1_3,1 Capture your X display to individual frames or MPEG video xvidtune-1.0.1_1 Video mode tuner for X xvinfo-1.0.2 Print out X-Video extension adaptor information xwd-1.0.2 Dump an image of an X window xwininfo-1.0.4 Window information utility for X xwud-1.0.1 Image displayer for X yakuake-kde4-2.9.4_2 Drop-down terminal emulator based on KDE's Konsole yasm-0.7.2 A complete rewrite of the NASM assembler zip-3.0 Create/update ZIP files compatible with pkzip ztcl-1.0.b4 A zlib extension library for the Tcl -------------- next part -------------- X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-CURRENT i386 Current Operating System: FreeBSD ss.su 8.0-CURRENT FreeBSD 8.0-CURRENT #0 r187982: Sun Feb 1 23:20:02 KRAT 2009 zloiadmin@ss.su:/home/repository/obj/home/repository/src/sys/zl0 i386 Build Date: 02 February 2009 09:39:26PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 4 04:21:37 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) Option "AIGLX" "true" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0x81bc3c0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/0, 0xe0000000/0, I/O @ 0x00001800/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/0, 0xe0080000/0 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "xtrap" (II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so (II) Module xtrap: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DEC-XTRAP (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (**) AIGLX enabled (**) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "type1" (WW) Warning, couldn't open module type1 (II) UnloadModule: "type1" (EE) Failed to load module "type1" (module does not exist, 0) (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (**) intel(0): Option "DRI" (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM (--) intel(0): Chipset: "852GM/855GM" (--) intel(0): Linear framebuffer at 0xE8000000 (--) intel(0): IO registers at addr 0xE0000000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "DVODDC_D" initialized. (II) Loading sub module "sil164" (II) LoadModule: "sil164" (II) Loading /usr/local/lib/xorg/modules/drivers//sil164.so (II) Module sil164: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7xxx" (II) LoadModule: "ch7xxx" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7xxx.so (II) Module ch7xxx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ivch" (II) LoadModule: "ivch" (II) Loading /usr/local/lib/xorg/modules/drivers//ivch.so (II) Module ivch: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_B" initialized. (II) Loading sub module "tfp410" (II) LoadModule: "tfp410" (II) Loading /usr/local/lib/xorg/modules/drivers//tfp410.so (II) Module tfp410: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_B" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7017" (II) LoadModule: "ch7017" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7017.so (II) Module ch7017: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (EE) intel(0): ch701x not detected, got 29: from DVOI2C_E Slave 234. (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVODDC_D" removed. (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output LVDS using initial mode 1280x768 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 128 kB GTT. (II) intel(0): detected 32636 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009 (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x80000207 to 0x80000203 (WW) intel(0): PIPEASTAT before: status: FIFO_UNDERRUN VSYNC_INT_STATUS SVBLANK_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS (WW) intel(0): PIPEASTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS (II) Loading sub module "dri" (II) LoadModule: "dri" (II) Reloading /usr/local/lib/xorg/modules/extensions//libdri.so (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 491520 total, 0 used (II) intel(0): I830CheckAvailableMemory: 1966080 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: drmOpenMinor returns 9 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x4 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression enabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 131072 KB (II) intel(0): Attempting memory allocation with tiled buffers. (WW) intel(0): xf86AllocateGARTMemory: allocation of 10 pages failed (Cannot allocate memory) (WW) intel(0): xf86AllocateGARTMemory: allocation of 4 pages failed (Cannot allocate memory) (WW) intel(0): Disabling HW cursor because the cursor memory allocation failed. (II) intel(0): Tiled allocation successful. (--) intel(0): DRI is disabled because it needs HW cursor, 2D accel and AGPGART. (II) intel(0): adjusting plane->pipe mappings to allow for framebuffer compression (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 31457280 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing SW Cursor! (II) intel(0): xf86BindGARTMemory: bind key 24 at 0x01fdf000 (pgoffset 8159) (II) intel(0): xf86BindGARTMemory: bind key 25 at 0x025df000 (pgoffset 9695) (II) intel(0): xf86BindGARTMemory: bind key 26 at 0x025e0000 (pgoffset 9696) (II) intel(0): xf86BindGARTMemory: bind key 27 at 0x025e1000 (pgoffset 9697) (II) intel(0): xf86BindGARTMemory: bind key 28 at 0x03000000 (pgoffset 12288) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB) (II) intel(0): 0x00028000-0x00127fff: fake bufmgr (1024 kB) (II) intel(0): 0x00128000-0x01f27fff: exa offscreen (30720 kB) (II) intel(0): 0x01fdf000: end of stolen memory (II) intel(0): 0x01fdf000-0x025defff: compressed frame buffer (6144 kB, 0x0000000036800000 physical ) (II) intel(0): 0x025df000-0x025dffff: compressed ll buffer (4 kB, 0x0000000021eac000 physical ) (II) intel(0): 0x025e0000-0x025e0fff: Core cursor (4 kB, 0x0000000021ead000 physical ) (II) intel(0): 0x025e1000-0x025e1fff: overlay registers (4 kB, 0x0000000021eae000 physical ) (II) intel(0): 0x03000000-0x03ffffff: front buffer (10240 kB) X tiled (II) intel(0): 0x08000000: end of aperture (II) intel(0): using SSC reference clock of 66 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane B is now disabled and connected to pipe A. (WW) intel(0): Hardware claims pipe A is on while software believes it is off (II) intel(0): Pipe B is on (II) intel(0): Display plane A is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Failed (WW) intel(0): Option "XAANoOffscreenPixmaps" is not used (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (EE) AIGLX error: Calling driver entry point failed(EE) AIGLX: reverting to software rendering (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) intel(0): Setting screen physical size to 305 x 183 (EE) intel(0): underrun on pipe B! (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) Option "Protocol" "auto" (**) PS/2 Mouse: Device: "/dev/psm0" (**) PS/2 Mouse: Protocol: "auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/psm0" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5 6 7" (**) PS/2 Mouse: ZAxisMapping: buttons 4, 5, 6 and 7 (**) PS/2 Mouse: Buttons: 11 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (II) PS/2 Mouse: SetupAuto: hw.iftype is 3, hw.model is 4 (II) PS/2 Mouse: SetupAuto: protocol is IMPS/2 (II) PS/2 Mouse: ps2EnableDataReporting: succeeded (WW) fcntl(11, O_ASYNC): Inappropriate ioctl for device (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us,ru" (**) AT Keyboard: XkbLayout: "us,ru" (**) Option "XkbVariant" ",winkeys" (**) AT Keyboard: XkbVariant: ",winkeys" (**) Option "XkbOptions" "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) AT Keyboard: XkbOptions: "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (EE) intel(0): underrun on pipe B! (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 -------------- next part -------------- [3:27]zloiadmin@ss.su /home/admin/X #glxgears Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". Failed to initialize GEM. Falling back to classic. [intel_init_bufmgr:578] Error initializing buffer manager. 639 frames in 5.0 seconds = 127.618 FPS 663 frames in 5.0 seconds = 132.599 FPS 651 frames in 5.0 seconds = 130.168 FPS 650 frames in 5.0 seconds = 129.954 FPS -------------- next part -------------- Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". Failed to initialize GEM. Falling back to classic. [intel_init_bufmgr:578] Error initializing buffer manager. name of display: :0.0 display: :0 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.2 server glx extensions: GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer client glx vendor string: SGI client glx version string: 1.4 client glx extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap GLX version: 1.2 GLX extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_OML_swap_method, GLX_SGIS_multisample, GLX_SGIX_fbconfig OpenGL vendor string: Mesa Project OpenGL renderer string: Software Rasterizer OpenGL version string: 2.1 Mesa 7.3 OpenGL shading language version string: 1.10 OpenGL extensions: GL_ARB_depth_texture, GL_ARB_draw_buffers, GL_ARB_fragment_program, GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader, GL_ARB_half_float_pixel, GL_ARB_imaging, GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_pixel_buffer_object, GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shader_objects, GL_ARB_shading_language_100, GL_ARB_shadow, GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, GL_ARB_texture_cube_map, GL_ARB_texture_env_add, GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_vertex_shader, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint, GL_EXT_compiled_vertex_array, GL_EXT_convolution, GL_EXT_copy_texture, GL_EXT_depth_bounds_test, GL_EXT_draw_range_elements, GL_EXT_framebuffer_object, GL_EXT_framebuffer_blit, GL_EXT_fog_coord, GL_EXT_gpu_program_parameters, GL_EXT_histogram, GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels, GL_EXT_paletted_texture, GL_EXT_pixel_buffer_object, GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_EXT_shared_texture_palette, GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_EXT_texture_lod_bias, GL_EXT_texture_mirror_clamp, GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_texture_sRGB, GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, GL_APPLE_packed_pixels, GL_APPLE_vertex_array_object, GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3, GL_ATI_texture_mirror_once, GL_ATI_fragment_shader, GL_ATI_separate_stencil, GL_IBM_multimode_draw_arrays, GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_program_debug, GL_MESA_resize_buffers, GL_MESA_texture_array, GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square, GL_NV_fragment_program, GL_NV_light_max_exponent, GL_NV_point_sprite, GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGI_color_matrix, GL_SGI_color_table, GL_SGI_texture_color_table, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow, GL_SGIX_shadow_ambient, GL_SUN_multi_draw_arrays 3 GLX Visuals visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x44 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 32 GLXFBConfigs: visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x45 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x46 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x47 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x48 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x49 0 tc 0 32 0 r . . 8 8 8 8 0 0 8 0 0 0 0 0 0 None 0x4a 0 tc 0 32 0 r . . 8 8 8 8 0 0 8 16 16 16 16 0 0 Slow 0x4b 0 tc 0 32 0 r y . 8 8 8 8 0 0 8 0 0 0 0 0 0 None 0x4c 0 tc 0 32 0 r y . 8 8 8 8 0 0 8 16 16 16 16 0 0 Slow 0x4d 0 tc 0 32 0 r . . 8 8 8 8 0 24 0 0 0 0 0 0 0 None 0x4e 0 tc 0 32 0 r . . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow 0x4f 0 tc 0 32 0 r y . 8 8 8 8 0 24 0 0 0 0 0 0 0 None 0x50 0 tc 0 32 0 r y . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow 0x51 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x52 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x53 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x54 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x55 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x56 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x57 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x58 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x59 0 dc 0 32 0 r . . 8 8 8 8 0 0 8 0 0 0 0 0 0 None 0x5a 0 dc 0 32 0 r . . 8 8 8 8 0 0 8 16 16 16 16 0 0 Slow 0x5b 0 dc 0 32 0 r y . 8 8 8 8 0 0 8 0 0 0 0 0 0 None 0x5c 0 dc 0 32 0 r y . 8 8 8 8 0 0 8 16 16 16 16 0 0 Slow 0x5d 0 dc 0 32 0 r . . 8 8 8 8 0 24 0 0 0 0 0 0 0 None 0x5e 0 dc 0 32 0 r . . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow 0x5f 0 dc 0 32 0 r y . 8 8 8 8 0 24 0 0 0 0 0 0 0 None 0x60 0 dc 0 32 0 r y . 8 8 8 8 0 24 0 16 16 16 16 0 0 Slow 0x61 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x62 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x63 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x64 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow -------------- next part -------------- X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-CURRENT i386 Current Operating System: FreeBSD ss.su 8.0-CURRENT FreeBSD 8.0-CURRENT #0 r187982: Sun Feb 1 23:20:02 KRAT 2009 zloiadmin@ss.su:/home/repository/obj/home/repository/src/sys/zl0 i386 Build Date: 02 February 2009 09:39:26PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 4 04:30:27 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) Option "AIGLX" "true" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (**) Extension "Composite" is enabled (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0x81bc3c0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/0, 0xe0000000/0, I/O @ 0x00001800/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/0, 0xe0080000/0 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "xtrap" (II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so (II) Module xtrap: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DEC-XTRAP (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (**) AIGLX enabled (**) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "type1" (WW) Warning, couldn't open module type1 (II) UnloadModule: "type1" (EE) Failed to load module "type1" (module does not exist, 0) (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (**) intel(0): Option "DRI" (**) intel(0): Option "Tiling" "off" (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM (--) intel(0): Chipset: "852GM/855GM" (--) intel(0): Linear framebuffer at 0xE8000000 (--) intel(0): IO registers at addr 0xE0000000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "DVODDC_D" initialized. (II) Loading sub module "sil164" (II) LoadModule: "sil164" (II) Loading /usr/local/lib/xorg/modules/drivers//sil164.so (II) Module sil164: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7xxx" (II) LoadModule: "ch7xxx" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7xxx.so (II) Module ch7xxx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ivch" (II) LoadModule: "ivch" (II) Loading /usr/local/lib/xorg/modules/drivers//ivch.so (II) Module ivch: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_B" initialized. (II) Loading sub module "tfp410" (II) LoadModule: "tfp410" (II) Loading /usr/local/lib/xorg/modules/drivers//tfp410.so (II) Module tfp410: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_B" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7017" (II) LoadModule: "ch7017" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7017.so (II) Module ch7017: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (EE) intel(0): ch701x not detected, got 29: from DVOI2C_E Slave 234. (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVODDC_D" removed. (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output LVDS using initial mode 1280x768 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 128 kB GTT. (II) intel(0): detected 32636 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009 (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x80000202 to 0x00000202 (WW) intel(0): PIPEBSTAT before: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS (WW) intel(0): PIPEBSTAT after: status: VSYNC_INT_STATUS VBLANK_INT_STATUS (II) Loading sub module "dri" (II) LoadModule: "dri" (II) Reloading /usr/local/lib/xorg/modules/extensions//libdri.so (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 491520 total, 0 used (II) intel(0): I830CheckAvailableMemory: 1966080 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: drmOpenMinor returns 9 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling disabled (==) intel(0): VideoRam: 131072 KB (II) intel(0): Attempting memory allocation with untiled buffers. (II) intel(0): Untiled allocation successful. (II) intel(0): [drm] Registers = 0xe0000000 (II) intel(0): [drm] ring buffer = 0xe8000000 (II) intel(0): [drm] mapped front buffer at 0xe8130000, handle = 0xe8130000 (II) intel(0): [drm] mapped back buffer at 0xe9fea000, handle = 0xe9fea000 (II) intel(0): [drm] mapped depth buffer at 0xea62a000, handle = 0xea62a000 (II) intel(0): [drm] mapped classic textures at 0xeac6a000, handle = 0xeac6a000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 19660800 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x01fdf000 (pgoffset 8159) (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x01fe9000 (pgoffset 8169) (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01fea000 (pgoffset 8170) (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x0262a000 (pgoffset 9770) (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x02c6a000 (pgoffset 11370) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB) (II) intel(0): 0x00028000-0x00127fff: fake bufmgr (1024 kB) (II) intel(0): 0x00130000-0x0076ffff: front buffer (6400 kB) (II) intel(0): 0x00770000-0x01a2ffff: exa offscreen (19200 kB) (II) intel(0): 0x01fdf000: end of stolen memory (II) intel(0): 0x01fdf000-0x01fe8fff: HW cursors (40 kB, 0x0000000025210000 physical ) (II) intel(0): 0x01fe9000-0x01fe9fff: overlay registers (4 kB, 0x0000000025207000 physical ) (II) intel(0): 0x01fea000-0x02629fff: back buffer (6400 kB) (II) intel(0): 0x0262a000-0x02c69fff: depth buffer (6400 kB) (II) intel(0): 0x02c6a000-0x04c69fff: classic textures (32768 kB) (II) intel(0): 0x08000000: end of aperture (II) intel(0): using SSC reference clock of 66 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (WW) intel(0): Hardware claims pipe A is on while software believes it is off (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (WW) intel(0): Option "XAANoOffscreenPixmaps" is not used (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control (II) AIGLX: enabled GLX_texture_from_pixmap with driver support (II) AIGLX: Loaded and initialized /usr/local/lib/dri/i915_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) intel(0): Setting screen physical size to 305 x 183 (EE) intel(0): underrun on pipe B! (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us,ru" (**) AT Keyboard: XkbLayout: "us,ru" (**) Option "XkbVariant" ",winkeys" (**) AT Keyboard: XkbVariant: ",winkeys" (**) Option "XkbOptions" "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) AT Keyboard: XkbOptions: "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) Option "Protocol" "auto" (**) PS/2 Mouse: Device: "/dev/psm0" (**) PS/2 Mouse: Protocol: "auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/psm0" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5 6 7" (**) PS/2 Mouse: ZAxisMapping: buttons 4, 5, 6 and 7 (**) PS/2 Mouse: Buttons: 11 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (II) PS/2 Mouse: SetupAuto: hw.iftype is 3, hw.model is 4 (II) PS/2 Mouse: SetupAuto: protocol is IMPS/2 (II) PS/2 Mouse: ps2EnableDataReporting: succeeded (WW) fcntl(12, O_ASYNC): Inappropriate ioctl for device (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (EE) intel(0): underrun on pipe B! (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 Failed to switch consoles (Invalid argument) -------------- next part -------------- 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/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "glx" Load "xtrap" Load "dri" Load "freetype" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" 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: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "ColorKey" # #Option "CacheLines" # #Option "Dac6Bit" # [] #Option "DRI" # [] #Option "NoDDC" # [] #Option "ShowCache" # [] #Option "XvMCSurfaces" # #Option "PageFlip" # [] Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:0" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "ColorKey" # #Option "CacheLines" # #Option "Dac6Bit" # [] #Option "DRI" # [] #Option "NoDDC" # [] #Option "ShowCache" # [] #Option "XvMCSurfaces" # #Option "PageFlip" # [] Identifier "Card1" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:1" 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 From adamk at voicenet.com Tue Feb 3 14:13:52 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Tue Feb 3 14:13:59 2009 Subject: very low fps In-Reply-To: <4988BEC3.9030501@gmail.com> References: <4988BEC3.9030501@gmail.com> Message-ID: <200902031712.39127.adamk@voicenet.com> On Tuesday 03 February 2009 17:01:39 Gvozdikov Veniamin wrote: > #glxgears > Xlib: extension "Generic Event Extension" missing on display ":0.0". > Xlib: extension "Generic Event Extension" missing on display ":0.0". > Failed to initialize GEM. Falling back to classic. > 290 frames in 5.0 seconds = 57.838 FPS > 291 frames in 5.0 seconds = 58.066 FPS > 291 frames in 5.0 seconds = 58.072 FPS > ^C glxgears is not a benchmark. Do not *ever* use it to judge your opengl performance. For what it's worth, though, it sounds like you have sync-to-vblank enabled. You can configure the drivers to never sync to vertical refresh with driconf. Adam -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From onemda at gmail.com Tue Feb 3 15:36:54 2009 From: onemda at gmail.com (Paul B. Mahol) Date: Tue Feb 3 15:37:01 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <498897CB.7080505@system.pl> References: <1233456742.1534.14.camel@ferret.2hip.net> <498897CB.7080505@system.pl> Message-ID: <3a142e750902031536o617e13c4m248ed716783ff37@mail.gmail.com> On 2/3/09, Marcin Cieslak wrote: > Robert Noland wrote: >> Ok, I'm expecting Xserver 1.6 final to release sometime on Monday. I'm >> planning to commit this sometime next week. This patch includes the >> following Xserver 1.6rc2, randrproto rc, libXrandr rc, xrandr rc, and >> the 2.6.1 release of the intel driver. > > > After a successful upgrade of kernel and world r187968M:two days ago and > a successful (sic!) update of X to server 1.5.3 and friends I have > decided to give 1.6 a try. > > I have tried this both with intel and nv driver (my laptop has both but > only one can be active at the time - switchable at the boot time). > > 1. First thing, I have lost access to my legacy X11 fonts. > > [dix] Could not init font path element /usr/local/lib/X11/fonts/misc/, > removing from list! > [dix] Could not init font path element /usr/local/lib/X11/fonts/TTF/, > removing from list! > [dix] Could not init font path element /usr/local/lib/X11/fonts/OTF, > removing from list! > > etc. > > I get: > > % xset fp+ /usr/local/lib/X11/fonts/100dpi > xset: bad font path element (#23), possible causes are: > Directory does not exist or has wrong permissions > Directory missing fonts.dir > Incorrect font server address or syntax > > There is no more a "freetype" and "xtrap" module, so I had to change by > config. > > Gtk applications (seamonkey) and Qt (psi) have no problems with fonts, > but xterm does. xterm is unable to locate any bitmap font (fallback to > "fixed") and when told to use Freetype fonts (-fa 'Luxi Mono-10' option) > it looks like black text on black background (my xterm has a white fb, > black bg). You can issue commands in such a window (the letter spacing > is preserved and the cursor moves), but xterm segfaults when there is > a need to scroll. > > xterm -bg white segfaults immediately, > > xterm has been recompiled after 1.6 installation. > > 2. Once (when running NVidia) the server froze, i.e. I could only move > mouse and no keys worked (including server zap, switching VTs or > Ctrl-Alt-Del). This happened when displaying a fast-scrolling > ./configure output of the libXfont in a full-screen xterm window. > > The freeze doesn't look like > a http://bugs.freedesktop.org/show_bug.cgi?id=17358 however. > > I am using dwm as the window manager. > > A bunch of config files and output from various commands is available at: > > http://akson.sgh.waw.pl/~saper/FreeBSD/ports/xorg-server/xorg-1.6/ > > --Marcin > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > Missing freetype module should be fixed in xorg-server git. -- Paul From saper at system.pl Tue Feb 3 17:14:16 2009 From: saper at system.pl (Marcin Cieslak) Date: Tue Feb 3 17:14:24 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <3a142e750902031536o617e13c4m248ed716783ff37@mail.gmail.com> References: <1233456742.1534.14.camel@ferret.2hip.net> <498897CB.7080505@system.pl> <3a142e750902031536o617e13c4m248ed716783ff37@mail.gmail.com> Message-ID: <4988EBCF.3010301@system.pl> Paul B. Mahol wrote: > On 2/3/09, Marcin Cieslak wrote: >> 1. First thing, I have lost access to my legacy X11 fonts. > > Missing freetype module should be fixed in xorg-server git. > It was actually --enable-builtin-fonts (the default) that caused the problem. The attached patch fixes the problem. I also added "--disable-builtin-fonts" to the Makefile since I didn't want to re-generate the configure file, but it may not be necessary. Adding this patch to the x11-servers/xorg-server/files made my xterm run again. Thanks for the pointer, the patch is actually http://42.pl/u/1v1N slightly modified. --Marcin -------------- next part -------------- --- include/dixfont.h.orig 2009-01-31 05:21:50.000000000 +0100 +++ include/dixfont.h 2009-02-04 01:36:50.928061947 +0100 @@ -142,4 +142,6 @@ extern void SetGlyphCachingMode(int /*newmode*/); +extern _X_EXPORT void BuiltinRegisterFpeFunctions(void); + #endif /* DIXFONT_H */ --- dix/dixfonts.c.orig 2009-01-31 05:21:50.000000000 +0100 +++ dix/dixfonts.c 2009-02-04 01:34:22.024360263 +0100 @@ -1907,12 +1907,9 @@ { patternCache = MakeFontPatternCache(); -#ifdef BUILTIN_FONTS BuiltinRegisterFpeFunctions(); -#else FontFileRegisterFpeFunctions(); fs_register_fpe_functions(); -#endif } int --- hw/xfree86/common/xf86Config.c.orig 2009-01-31 05:21:50.000000000 +0100 +++ hw/xfree86/common/xf86Config.c 2009-02-04 01:34:22.029363650 +0100 @@ -110,8 +110,6 @@ #define PROJECTROOT "/usr/X11R6" #endif -static char *fontPath = NULL; - static ModuleDefault ModuleDefaults[] = { {.name = "extmod", .toLoad = TRUE, .load_opt=NULL}, {.name = "dbe", .toLoad = TRUE, .load_opt=NULL}, @@ -586,90 +584,55 @@ static void configFiles(XF86ConfFilesPtr fileconf) { - MessageType pathFrom = X_DEFAULT; - int countDirs; - char *temp_path; - char *log_buf; - - /* FontPath */ - /* Try XF86Config FontPath first */ - if (!xf86fpFlag) { - if (fileconf) { - if (fileconf->file_fontpath) { - char *f = xf86ValidateFontPath(fileconf->file_fontpath); - pathFrom = X_CONFIG; - if (*f) { - if (xf86Info.useDefaultFontPath) { - char *g; - xf86Msg(X_DEFAULT, "Including the default font path %s.\n", defaultFontPath); - g = xnfalloc(strlen(defaultFontPath) + strlen(f) + 3); - strcpy(g, f); - strcat(g, ","); - defaultFontPath = strcat(g, defaultFontPath); - xfree(f); - } else { - defaultFontPath = f; - } - } else { - xf86Msg(X_WARNING, - "FontPath is completely invalid. Using compiled-in default.\n"); - fontPath = NULL; - pathFrom = X_DEFAULT; - } - } - } else { - xf86Msg(X_DEFAULT, - "No FontPath specified. Using compiled-in default.\n"); - pathFrom = X_DEFAULT; - } - } else { - /* Use fontpath specified with '-fp' */ - if (fontPath) - { - fontPath = NULL; - } - pathFrom = X_CMDLINE; - } - if (!fileconf) { - /* xf86ValidateFontPath will write into it's arg, but defaultFontPath - could be static, so we make a copy. */ - char *f = xnfalloc(strlen(defaultFontPath) + 1); - f[0] = '\0'; - strcpy (f, defaultFontPath); - defaultFontPath = xf86ValidateFontPath(f); - xfree(f); - } else { - if (fileconf) { - if (!fileconf->file_fontpath) { - /* xf86ValidateFontPath will write into it's arg, but defaultFontPath - could be static, so we make a copy. */ - char *f = xnfalloc(strlen(defaultFontPath) + 1); - f[0] = '\0'; - strcpy (f, defaultFontPath); - defaultFontPath = xf86ValidateFontPath(f); - xfree(f); + MessageType pathFrom; + Bool must_copy; + int size, countDirs; + char *temp_path, *log_buf, *start, *end; + + /* FontPath */ + must_copy = TRUE; + + temp_path = defaultFontPath ? defaultFontPath : ""; + if (xf86fpFlag) + pathFrom = X_CMDLINE; + else if (fileconf && fileconf->file_fontpath) { + pathFrom = X_CONFIG; + if (xf86Info.useDefaultFontPath) { + defaultFontPath = Xprintf("%s%s%s", + fileconf->file_fontpath, + *temp_path ? "," : "", temp_path); + must_copy = FALSE; + } + else + defaultFontPath = fileconf->file_fontpath; } - } - } - - /* If defaultFontPath is still empty, exit here */ + else + pathFrom = X_DEFAULT; + temp_path = defaultFontPath ? defaultFontPath : ""; - if (! *defaultFontPath) - FatalError("No valid FontPath could be found."); + /* ensure defaultFontPath contains "built-ins" */ + start = strstr(temp_path, "built-ins"); + end = start + strlen("built-ins"); + if (start == NULL || + !((start == temp_path || start[-1] == ',') && (!*end || *end == ','))) { + defaultFontPath = Xprintf("%s%sbuilt-ins", + temp_path, *temp_path ? "," : ""); + must_copy = FALSE; + } + /* xf86ValidateFontPath modifies its argument, but returns a copy of it. */ + temp_path = must_copy ? XNFstrdup(defaultFontPath) : defaultFontPath; + defaultFontPath = xf86ValidateFontPath(temp_path); + free(temp_path); + + /* make fontpath more readable in the logfiles */ + countDirs = 1; + temp_path = defaultFontPath; + while ((temp_path = index(temp_path, ',')) != NULL) { + countDirs++; + temp_path++; + } - /* make fontpath more readable in the logfiles */ - countDirs = 1; - temp_path = defaultFontPath; - while((temp_path = index(temp_path, ',')) != NULL) { - countDirs++; - temp_path++; - } - log_buf = xnfalloc(strlen(defaultFontPath) + (2 * countDirs) + 1); - if(!log_buf) /* fallback to old method */ - xf86Msg(pathFrom, "FontPath set to \"%s\"\n", defaultFontPath); - else { - char *start, *end; - int size; + log_buf = xnfalloc(strlen(defaultFontPath) + (2 * countDirs) + 1); temp_path = log_buf; start = defaultFontPath; while((end = index(start, ',')) != NULL) { @@ -685,7 +648,6 @@ strcpy(temp_path, start); xf86Msg(pathFrom, "FontPath set to:\n%s\n", log_buf); xfree(log_buf); - } if (fileconf && fileconf->file_inputdevs) { --- configure.ac.orig 2009-01-31 06:11:48.000000000 +0100 +++ configure.ac 2009-02-04 01:34:22.021359628 +0100 @@ -503,9 +503,6 @@ [Install libxf86config (default: disabled)]), [INSTALL_LIBXF86CONFIG=$enableval], [INSTALL_LIBXF86CONFIG=no]) -AC_ARG_ENABLE(builtin-fonts, AS_HELP_STRING([--enable-builtin-fonts], [Use only built-in fonts (default: yes)]), - [BUILTIN_FONTS=$enableval], - [BUILTIN_FONTS=yes]) AC_ARG_ENABLE(null-root-cursor, AS_HELP_STRING([--enable-null-root-cursor], [Use an empty root cursor (default: use core cursor)]), [NULL_ROOT_CURSOR=$enableval], [NULL_ROOT_CURSOR=no]) @@ -958,11 +955,6 @@ AC_DEFINE(DPMSExtension, 1, [Support DPMS extension]) fi -if test "x$BUILTIN_FONTS" = xyes; then - AC_DEFINE(BUILTIN_FONTS, 1, [Use only built-in fonts]) - FONTPATH="built-ins" -fi - if test "x$XCALIBRATE" = xyes && test "$KDRIVE" = yes; then AC_DEFINE(XCALIBRATE, 1, [Build XCalibrate extension]) REQUIRED_MODULES="$REQUIRED_MODULES xcalibrateproto" From shinjii at maydias.com Tue Feb 3 21:54:10 2009 From: shinjii at maydias.com (Warren Liddell) Date: Wed Feb 4 04:12:33 2009 Subject: CMake error compiling kdepimlibs4 Message-ID: <49892942.8030501@maydias.com> I have been trying to compile KDE4.2 on AMD64 7.1-STABLE machine, but atm this is 1 of the errors thats stopping it from working. ------------------------------------------------ CMake Error at CMakeLists.txt:128 (macro_write_basic_cmake_version_file): Unknown CMake command "macro_write_basic_cmake_version_file". -- Configuring incomplete, errors occurred! *** Error code 1 Stop in /usr/ports/deskutils/kdepimlibs4. *** Error code 1 Stop in /usr/ports/devel/kdesdk4. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.64941.3 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=kdesdk-4.1.4 UPGRADE_PORT_VER=4.1.4 make DEPENDS_TARGET=package ** Fix the problem and try again. From g.veniamin at googlemail.com Wed Feb 4 04:19:54 2009 From: g.veniamin at googlemail.com (Gvozdikov Veniamin) Date: Wed Feb 4 04:20:02 2009 Subject: very low fps In-Reply-To: <200902031712.39127.adamk@voicenet.com> References: <4988BEC3.9030501@gmail.com> <200902031712.39127.adamk@voicenet.com> Message-ID: <498987E1.2070807@gmail.com> HI, I did as you said, and added a few options in xorg.conf. increase was significant. but when working with composite is slow in comparison with the xf86-video-i810. 1196 frames in 6.5 seconds = 183.264 FPS 1229 frames in 5.0 seconds = 245.412 FPS 1107 frames in 5.0 seconds = 221.371 FPS 871 frames in 5.0 seconds = 173.818 FPS fps in composite 100 #cat /etc/drirc in log (II) intel(0): Output configuration: (WW) intel(0): Hardware claims pipe A is on while software believes it is off (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (WW) intel(0): Option "XAANoOffscreenPixmaps" is not used (WW) intel(0): Option "AllowGLXWithComposite" is not used (WW) intel(0): Option "RenderAccel" is not used (WW) intel(0): Option "AddARGBGLXVisuals" is not used (--) RandR disabled why write that is not used? particulary interested in Option "AllowGLXWithComposite" is not used. Thanks. > On Tuesday 03 February 2009 17:01:39 Gvozdikov Veniamin wrote: > > > #glxgears > > > Xlib: extension "Generic Event Extension" missing on display ":0.0". > > > Xlib: extension "Generic Event Extension" missing on display ":0.0". > > > Failed to initialize GEM. Falling back to classic. > > > 290 frames in 5.0 seconds = 57.838 FPS > > > 291 frames in 5.0 seconds = 58.066 FPS > > > 291 frames in 5.0 seconds = 58.072 FPS > > > ^C > > glxgears is not a benchmark. Do not *ever* use it to judge your opengl > performance. > > For what it's worth, though, it sounds like you have sync-to-vblank > enabled. You can configure the drivers to never sync to vertical > refresh with driconf. > > Adam > > > -- > This message has been scanned for viruses and > dangerous content by *MailScanner* , and is > believed to be clean. -------------- next part -------------- Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". Failed to initialize GEM. Falling back to classic. name of display: :0.0 display: :0 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.2 server glx extensions: GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_OML_swap_method, GLX_SGI_swap_control, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group client glx vendor string: SGI client glx version string: 1.4 client glx extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap GLX version: 1.2 GLX extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_visual_select_group OpenGL vendor string: Tungsten Graphics, Inc OpenGL renderer string: Mesa DRI Intel(R) 852GM/855GM 20090114 x86/MMX/SSE2 OpenGL version string: 1.3 Mesa 7.3 OpenGL extensions: GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_point_parameters, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, GL_ARB_texture_cube_map, GL_ARB_texture_env_add, GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint, GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels, GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, GL_APPLE_client_storage, GL_APPLE_packed_pixels, GL_ATI_blend_equation_separate, GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent, GL_NV_point_sprite, GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SUN_multi_draw_arrays 3 GLX Visuals visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x44 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 36 GLXFBConfigs: visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x45 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x46 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x47 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x48 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x49 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x4a 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x4b 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x4c 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x4d 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x4e 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x4f 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x50 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x51 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x52 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x53 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x54 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x55 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x56 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x57 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x58 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x59 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x5a 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x5b 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x5c 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x5d 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x5e 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x5f 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x60 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x61 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x62 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x63 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x64 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x65 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x66 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x67 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x68 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow -------------- next part -------------- Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 Option "AIGLX" "true" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "record" Load "xtrap" Load "glx" Load "dbe" Load "extmod" Load "dri" # Load "GLcore" Load "freetype" EndSection Section "Monitor" Identifier "Monitor0" VendorName "SEC" ModelName "5642" EndSection Section "Device" Option "DRI" Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:0" Option "NoAccel" "false" Option "AccelMethod" "EXA" Option "ExaNoComposite" "false" Option "ForceEnablePipeA" "true" Option "XAANoOffscreenPixmaps" "true" Option "EXANoUploadToScreen" "true" Option "Tiling" "off" Option "AllowGLXWithComposite" "true" Option "RenderAccel" "True" Option "AddARGBGLXVisuals" "True" EndSection Section "Device" Option "DRI" Identifier "Card1" Driver "intel" VendorName "Intel Corporation" BoardName "82852/855GM Integrated Graphics Device" BusID "PCI:0:2:1" Option "NoAccel" "false" Option "AccelMethod" "EXA" Option "ExaNoComposite" "false" Option "ForceEnablePipeA" "true" Option "XAANoOffscreenPixmaps" "true" Option "EXANoUploadToScreen" "true" Option "Tiling" "off" Option "AllowGLXWithComposite" "true" Option "RenderAccel" "True" Option "AddARGBGLXVisuals" "True" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1280x768" EndSubSection EndSection Section "DRI" Group "video" Mode 0666 EndSection Section "Extensions" Option "Composite" "Enable" EndSection -------------- next part -------------- X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-CURRENT i386 Current Operating System: FreeBSD ss.su 8.0-CURRENT FreeBSD 8.0-CURRENT #0 r187982: Sun Feb 1 23:20:02 KRAT 2009 zloiadmin@ss.su:/home/repository/obj/home/repository/src/sys/zl0 i386 Build Date: 02 February 2009 09:39:26PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 4 18:57:11 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) Option "AIGLX" "true" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (**) Extension "Composite" is enabled (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0x81bc3c0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xe8000000/0, 0xe0000000/0, I/O @ 0x00001800/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation 82852/855GM Integrated Graphics Device rev 2, Mem @ 0xf0000000/0, 0xe0080000/0 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "xtrap" (II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so (II) Module xtrap: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DEC-XTRAP (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (**) AIGLX enabled (**) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel?? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (**) intel(0): Depth 24, (--) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (**) intel(0): Option "AccelMethod" "EXA" (**) intel(0): Option "NoAccel" "false" (**) intel(0): Option "DRI" (**) intel(0): Option "Tiling" "off" (**) intel(0): Option "ForceEnablePipeA" "true" (II) intel(0): Integrated Graphics Chipset: Intel(R) 855GM (--) intel(0): Chipset: "852GM/855GM" (--) intel(0): Linear framebuffer at 0xE8000000 (--) intel(0): IO registers at addr 0xE0000000 (**) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "DVODDC_D" initialized. (II) Loading sub module "sil164" (II) LoadModule: "sil164" (II) Loading /usr/local/lib/xorg/modules/drivers//sil164.so (II) Module sil164: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7xxx" (II) LoadModule: "ch7xxx" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7xxx.so (II) Module ch7xxx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ivch" (II) LoadModule: "ivch" (II) Loading /usr/local/lib/xorg/modules/drivers//ivch.so (II) Module ivch: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_B" initialized. (II) Loading sub module "tfp410" (II) LoadModule: "tfp410" (II) Loading /usr/local/lib/xorg/modules/drivers//tfp410.so (II) Module tfp410: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_B" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7017" (II) LoadModule: "ch7017" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7017.so (II) Module ch7017: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (EE) intel(0): ch701x not detected, got 29: from DVOI2C_E Slave 234. (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVODDC_D" removed. (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output LVDS using initial mode 1280x768 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 128 kB GTT. (II) intel(0): detected 32636 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd0000009 (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (II) Loading sub module "dri" (II) LoadModule: "dri" (II) Reloading /usr/local/lib/xorg/modules/extensions//libdri.so (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 491520 total, 0 used (II) intel(0): I830CheckAvailableMemory: 1966080 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 9, (OK) drmOpenByBusid: drmOpenMinor returns 9 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x3 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling disabled (==) intel(0): VideoRam: 131072 KB (II) intel(0): Attempting memory allocation with untiled buffers. (II) intel(0): Untiled allocation successful. (II) intel(0): [drm] Registers = 0xe0000000 (II) intel(0): [drm] ring buffer = 0xe8000000 (II) intel(0): [drm] mapped front buffer at 0xe8130000, handle = 0xe8130000 (II) intel(0): [drm] mapped back buffer at 0xe9fea000, handle = 0xe9fea000 (II) intel(0): [drm] mapped depth buffer at 0xea62a000, handle = 0xea62a000 (II) intel(0): [drm] mapped classic textures at 0xeac6a000, handle = 0xeac6a000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (**) intel(0): Option "EXANoComposite" "false" (**) intel(0): Option "EXANoUploadToScreen" "true" (**) intel(0): EXA: Disabling UploadToScreen (II) EXA(0): Offscreen pixmap area of 19660800 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x01fdf000 (pgoffset 8159) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01fe9000 (pgoffset 8169) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x01fea000 (pgoffset 8170) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x0262a000 (pgoffset 9770) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x02c6a000 (pgoffset 11370) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00027fff: logical 3D context (32 kB) (II) intel(0): 0x00028000-0x00127fff: fake bufmgr (1024 kB) (II) intel(0): 0x00130000-0x0076ffff: front buffer (6400 kB) (II) intel(0): 0x00770000-0x01a2ffff: exa offscreen (19200 kB) (II) intel(0): 0x01fdf000: end of stolen memory (II) intel(0): 0x01fdf000-0x01fe8fff: HW cursors (40 kB, 0x000000002f6e0000 physical ) (II) intel(0): 0x01fe9000-0x01fe9fff: overlay registers (4 kB, 0x0000000003235000 physical ) (II) intel(0): 0x01fea000-0x02629fff: back buffer (6400 kB) (II) intel(0): 0x0262a000-0x02c69fff: depth buffer (6400 kB) (II) intel(0): 0x02c6a000-0x04c69fff: classic textures (32768 kB) (II) intel(0): 0x08000000: end of aperture (II) intel(0): using SSC reference clock of 66 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (WW) intel(0): Hardware claims pipe A is on while software believes it is off (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (WW) intel(0): Option "XAANoOffscreenPixmaps" is not used (WW) intel(0): Option "AllowGLXWithComposite" is not used (WW) intel(0): Option "RenderAccel" is not used (WW) intel(0): Option "AddARGBGLXVisuals" is not used (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 10, (OK) drmOpenByBusid: drmOpenMinor returns 10 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control (II) AIGLX: enabled GLX_texture_from_pixmap with driver support (II) AIGLX: Loaded and initialized /usr/local/lib/dri/i915_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) intel(0): Setting screen physical size to 305 x 183 (EE) intel(0): underrun on pipe B! (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) Option "Protocol" "auto" (**) PS/2 Mouse: Device: "/dev/psm0" (**) PS/2 Mouse: Protocol: "auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/psm0" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) Option "ZAxisMapping" "4 5 6 7" (**) PS/2 Mouse: ZAxisMapping: buttons 4, 5, 6 and 7 (**) PS/2 Mouse: Buttons: 11 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (II) PS/2 Mouse: SetupAuto: hw.iftype is 3, hw.model is 4 (II) PS/2 Mouse: SetupAuto: protocol is IMPS/2 (II) PS/2 Mouse: ps2EnableDataReporting: succeeded (WW) fcntl(12, O_ASYNC): Inappropriate ioctl for device (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us,ru" (**) AT Keyboard: XkbLayout: "us,ru" (**) Option "XkbVariant" ",winkeys" (**) AT Keyboard: XkbVariant: ",winkeys" (**) Option "XkbOptions" "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) AT Keyboard: XkbOptions: "grp:alt_shift_toggle,grp_led:num,grp:switch" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (EE) intel(0): underrun on pipe B! (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "SEC", prod id 22082 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1280x768"x0.0 68.93 1280 1296 1344 1408 768 771 777 816 -hsync -vsync (49.0 kHz) (II) intel(0): EDID vendor "SEC", prod id 22082 From adamk at voicenet.com Wed Feb 4 04:34:11 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Wed Feb 4 04:34:17 2009 Subject: very low fps In-Reply-To: <498987E1.2070807@gmail.com> References: <4988BEC3.9030501@gmail.com> <200902031712.39127.adamk@voicenet.com> <498987E1.2070807@gmail.com> Message-ID: <200902040733.33539.adamk@voicenet.com> On Wednesday 04 February 2009 07:19:45 Gvozdikov Veniamin wrote: > HI, > I did as you said, and added a few options in xorg.conf. increase was > significant. > but when working with composite is slow in comparison with the > xf86-video-i810. > > 1196 frames in 6.5 seconds = 183.264 FPS > 1229 frames in 5.0 seconds = 245.412 FPS > 1107 frames in 5.0 seconds = 221.371 FPS > 871 frames in 5.0 seconds = 173.818 FPS > > fps in composite 100 > > #cat /etc/drirc > > > > > > > > in log > > (II) intel(0): Output configuration: > (WW) intel(0): Hardware claims pipe A is on while software believes it > is off > (II) intel(0): Pipe B is on > (II) intel(0): Display plane B is now enabled and connected to pipe B. > (II) intel(0): Output VGA is connected to pipe none > (II) intel(0): Output LVDS is connected to pipe B > (II) intel(0): [drm] dma control initialized, using IRQ 16 > (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled > message. > (II) intel(0): DPMS enabled > (II) intel(0): Set up overlay video > (II) intel(0): direct rendering: Enabled > (WW) intel(0): Option "XAANoOffscreenPixmaps" is not used > (WW) intel(0): Option "AllowGLXWithComposite" is not used > (WW) intel(0): Option "RenderAccel" is not used > (WW) intel(0): Option "AddARGBGLXVisuals" is not used > (--) RandR disabled AddARGBGLXVisuals and AllowGLXWithComposite are options for the nvidia driver only (and, in newer versions of that driver, they are not needed there either). XAANoOffScreenPixmaps and RenderAccel must no longer be valid options for the intel driver. Adam -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From makc at issp.ac.ru Wed Feb 4 05:15:52 2009 From: makc at issp.ac.ru (Max Brazhnikov) Date: Wed Feb 4 05:16:04 2009 Subject: CMake error compiling kdepimlibs4 In-Reply-To: <49892942.8030501@maydias.com> References: <49892942.8030501@maydias.com> Message-ID: <200902041558.09357.makc@issp.ac.ru> On Wed, 04 Feb 2009 15:36:02 +1000, Warren Liddell wrote: > I have been trying to compile KDE4.2 on AMD64 7.1-STABLE machine, but > atm this is 1 of the errors thats stopping it from working. > > ------------------------------------------------ > > > > CMake Error at CMakeLists.txt:128 (macro_write_basic_cmake_version_file): > Unknown CMake command "macro_write_basic_cmake_version_file". > > > -- Configuring incomplete, errors occurred! > *** Error code 1 > > Stop in /usr/ports/deskutils/kdepimlibs4. > *** Error code 1 > > Stop in /usr/ports/devel/kdesdk4. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.64941.3 env UPGRADE_TOOL=portupgrade > UPGRADE_PORT=kdesdk-4.1.4 UPGRADE_PORT_VER=4.1.4 make > DEPENDS_TARGET=package > > > > ** Fix the problem and try again. you need cmake-2.6.2 for KDE-4.2.0. btw, kde@freebsd.org maillist is preferable when you have problems like that. Max From dikshie at gmail.com Wed Feb 4 07:11:00 2009 From: dikshie at gmail.com (dikshie) Date: Wed Feb 4 07:11:06 2009 Subject: japanese keyboard after xorg upgrade Message-ID: <910e60e80902040643x13f6db8bs6a3db93e85ddf679@mail.gmail.com> Hi, any explanation why my japanese keyboard does not work after xorg upgrade? Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbRules" "xorg" Option "XkbModel" "jp106" Option "XkbLayout" "jp" EndSection any solutions? with best regards, -dikshie- From hanche at math.ntnu.no Wed Feb 4 07:30:04 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 4 07:30:09 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902041530.n14FU3QL074698@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Harald Hanche-Olsen To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com Cc: Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Wed, 04 Feb 2009 16:24:04 +0100 (CET) I noticed just now that this PR is marked "priority: medium". Given that this problem renders the X server utterly useless, and there seems to be no workaround (or is there one?), I find this strange. How about bumping the priority a bit? If the developers have difficulties reproducing the problem, please let those of us who do experience it know what we can do to provide useful information. For example, it may not be totally clear from my earlier input, but despite the PR title, I am seeing this problem with AllowEmptyInput turned /on/. With it off, the server just hangs. If piles of configuration info and Xorg logs are useful, let me know, and I'll send them. - Harald From christof.schulze at gmx.net Wed Feb 4 07:44:13 2009 From: christof.schulze at gmx.net (Christof Schulze) Date: Wed Feb 4 07:44:19 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <49878147.50901@mail.ru> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <1233615341.1492.60.camel@ferret.2hip.net> <49878147.50901@mail.ru> Message-ID: <200902041644.04739.christof.schulze@gmx.net> Am Dienstag 03 Februar 2009 00:27:03 schrieb Subscriber: > No, it not worked for me. Everything changed back after next click. I am having the same issues here, after having run portmanager -u yesterday. Christof From linimon at lonesome.com Wed Feb 4 08:32:01 2009 From: linimon at lonesome.com (Mark Linimon) Date: Wed Feb 4 08:32:08 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902041530.n14FU3QL074698@freefall.freebsd.org> References: <200902041530.n14FU3QL074698@freefall.freebsd.org> Message-ID: <20090204161108.GA7474@soaustin.net> On Wed, Feb 04, 2009 at 03:30:03PM +0000, Harald Hanche-Olsen wrote: > I noticed just now that this PR is marked "priority: medium". > Given that this problem renders the X server utterly useless, and > there seems to be no workaround (or is there one?), I find this > strange. How about bumping the priority a bit? Unfortunately the contents of the Severity and Priority fields in the PR database have suffered from "grade inflation" and as such have lost their meaning long ago. Leaving them in the database is, at this point, just a bug. In any case, with FreeBSD ports being all volunteer-driven, there's really no requirements that we can put on the volunteers to prioritize one PR over another. It really depends on how motivated they are as to how they allocate their time. mcl From blackgospelpromoinc at app.topica.com Wed Feb 4 08:42:08 2009 From: blackgospelpromoinc at app.topica.com (Black Gospel Promo Inc.) Date: Wed Feb 4 08:42:15 2009 Subject: Take A Vacation On Us At StreamingFREE.TV Message-ID: <1428787963-1463747838-1233765033@blackgospelpromoinc.b.topica.com> for an html version of this message, visit: [1]http://www.blackgospelpromo.com/predesign/pd0487.htm [2][BGP-customer-appreciation-FINAL.jpg] [3][click.jpg] Designed & Promoted by: Black Gospel Promo, Inc.- [4]www.blackgospelpromo.com- [5]info@blackgospelpromo.com 215.883.1000 | Promote your ministry, business, label, pastor, artist, cd, book or event today. | 45 E. Cityline Avenue - #303 | Bala Cynwyd | PA | 19004 [6]WWW.BLACKGOSPELPROMO.COM | [7]CONTACT US | [8]ADVERTISE WITH US © Copyright 2007 Blackgospelpromo.com [] [footer_cap3.gif] [9]Unsubscribe | [10]Update Profile | [11]Confirm | [12]Complain [13][delivered_by_blue.gif] [footer_cap3.gif] References 1. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjxbMpyaXcafpQ0s/ 2. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjybMpyaXcafpQ0s/ 3. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjzbMpyaXcafpQ0s/ 4. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjzbMpyaXcafpQ0s/ 5. mailto:info@blackgospelpromo.com 6. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjzbMpyaXcafpQ0s/ 7. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjAbMpyaXcafpQ0s/ 8. http://blackgospelpromoinc.c.topica.com/maamNGwabNOjBbMpyaXcafpQ0s/ 9. http://topica.com/f/unsub.html/aaam0bnhz6m75960vdhng7stel175gkj_7quvqm3hijxu5 10. http://topica.com/f/?a84Rle.bMpyaX.eDExQGZy 11. http://topica.com/f/?a84Rle.bMpyaX.eDExQGZy.c 12. http://www.topica.com/f/abuse.html?aaam0bnhz6m75960vdhng7stel175gkj_7quvqm3hijxu5 13. http://www.topica.com/?p=T3FOOTER From jkim at FreeBSD.org Wed Feb 4 09:11:43 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Wed Feb 4 09:11:55 2009 Subject: [PATCH] sysutils/hal fix for sysmouse(4) and ACPI Message-ID: <200902041211.32033.jkim@FreeBSD.org> This patch does two things: - Do not allow openning /dev/sysmouse multiple times. When there are multiple instances of moused(8) and Xorg mouse driver opens /dev/sysmouse multiple times, Xorg server gets confused badly, e.g., losing input events, waiting for already processed events, etc. - Really fix laptop brightness control. The previous commit didn't fix IBM and Sony laptops. Pointyhat to me, again. Please review. Thanks, Jung-uk Kim -------------- next part -------------- --- sysutils/hal/Makefile 2 Feb 2009 22:33:22 -0000 1.47 +++ sysutils/hal/Makefile 4 Feb 2009 16:51:34 -0000 @@ -8,7 +8,7 @@ PORTNAME= hal DISTVERSION= 0.5.11 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= sysutils MASTER_SITES= http://hal.freedesktop.org/releases/ --- sysutils/hal/files/patch-hald_freebsd_hf-acpi.c 3 Feb 2009 01:54:59 -0000 1.2 +++ sysutils/hal/files/patch-hald_freebsd_hf-acpi.c 4 Feb 2009 16:51:36 -0000 @@ -1,6 +1,50 @@ --- hald/freebsd/hf-acpi.c.orig 2008-05-07 19:23:59.000000000 -0400 -+++ hald/freebsd/hf-acpi.c 2009-02-02 20:32:05.000000000 -0500 -@@ -105,6 +105,9 @@ ++++ hald/freebsd/hf-acpi.c 2009-02-04 11:32:27.000000000 -0500 +@@ -54,6 +54,7 @@ + static const struct laptop_panel_type { + char *access; + char *name; ++ char *get_sysctl; + char *max_sysctl; + int max_levels; + #define HF_ACPI_IBM_MAX_LEVELS 8 +@@ -64,17 +65,29 @@ + #define HF_ACPI_FUJITSU_MAX_LEVELS 8 + /* NOTE: Each new type must also be added to hf-devtree.c */ + } laptop_panel_types[] = { +- { "ibm", "IBM", NULL, ++ { "ibm", "IBM", ++ "dev.acpi_ibm.0.lcd_brightness", ++ NULL, + HF_ACPI_IBM_MAX_LEVELS }, +- { "toshiba", "Toshiba", NULL, ++ { "toshiba", "Toshiba", ++ "hw.acpi.toshiba.lcd_brightness", ++ NULL, + HF_ACPI_TOSHIBA_MAX_LEVELS }, +- { "sony", "Sony", NULL, ++ { "sony", "Sony", ++ "dev.acpi_sony.0.brightness", ++ NULL, + HF_ACPI_SONY_MAX_LEVELS }, +- { "panasonic", "Panasonic", "hw.acpi.panasonic.lcd_brightness_max", ++ { "panasonic", "Panasonic", ++ "hw.acpi.panasonic.lcd_brightness", ++ "hw.acpi.panasonic.lcd_brightness_max", + HF_ACPI_PANASONIC_MAX_LEVELS }, +- { "asus", "Asus", NULL, ++ { "asus", "Asus", ++ "hw.acpi.asus.lcd_brightness", ++ NULL, + HF_ACPI_ASUS_MAX_LEVELS }, +- { "fujitsu", "Fujitsu", NULL, ++ { "fujitsu", "Fujitsu", ++ "hw.acpi.fujitsu.lcd_brightness", ++ NULL, + HF_ACPI_FUJITSU_MAX_LEVELS } + }; + +@@ -105,6 +118,9 @@ gboolean ispresent; union acpi_battery_ioctl_arg battif, battst, battinfo; @@ -10,25 +54,31 @@ battif.unit = battst.unit = battinfo.unit = hal_device_property_get_int(device, "freebsd.unit"); -@@ -500,10 +503,17 @@ - const char *max_sysctl, const char *access, - const char *name) +@@ -497,13 +513,15 @@ + + static HalDevice * + hf_acpi_laptop_panel_new (HalDevice *parent, int max_levels, +- const char *max_sysctl, const char *access, +- const char *name) ++ const char *get_sysctl, const char *max_sysctl, ++ const char *access, const char *name) { -+ char *brightness; HalDevice *device; g_return_val_if_fail(HAL_IS_DEVICE(parent), NULL); -+ if (! strcmp(access, "sony")) -+ brightness = "brightness"; -+ else -+ brightness = "lcd_brightness"; -+ if (! hf_has_sysctl("hw.acpi.%s.%s", access, brightness)) ++ if (get_sysctl == NULL || ! hf_has_sysctl(get_sysctl)) + return NULL; device = hf_device_new(parent); hf_device_property_set_string_printf(device, "info.product", "Laptop Panel (%s)", name); -@@ -597,7 +607,8 @@ +@@ -593,11 +611,13 @@ + HalDevice *panel_device; + + panel_device = hf_acpi_laptop_panel_new(parent, +- laptop_panel_types[i].max_levels, ++ laptop_panel_types[i].max_levels, ++ laptop_panel_types[i].get_sysctl, laptop_panel_types[i].max_sysctl, laptop_panel_types[i].access, laptop_panel_types[i].name); --- sysutils/hal/files/patch-hald_freebsd_probing_probe-mouse.c 26 Jan 2009 17:55:44 -0000 1.1 +++ sysutils/hal/files/patch-hald_freebsd_probing_probe-mouse.c 4 Feb 2009 16:51:36 -0000 @@ -1,6 +1,6 @@ ---- hald/freebsd/probing/probe-mouse.c.orig 2009-01-25 16:54:29.000000000 -0500 -+++ hald/freebsd/probing/probe-mouse.c 2009-01-25 18:40:04.000000000 -0500 -@@ -0,0 +1,301 @@ +--- hald/freebsd/probing/probe-mouse.c.orig 2009-02-04 11:00:00.000000000 -0500 ++++ hald/freebsd/probing/probe-mouse.c 2009-02-04 11:04:43.000000000 -0500 +@@ -0,0 +1,312 @@ +/*************************************************************************** + * CVSID: $Id$ + * @@ -227,7 +227,9 @@ +probe_mouse (const char *device_file) +{ + gboolean found; ++ char **udis; + char *driver; ++ int num_udis; + + driver = libhal_device_get_property_string(hfp_ctx, hfp_udi, + "input.x11_driver", &hfp_error); @@ -255,10 +257,19 @@ + found = device_opened_by_proc(MOUSED_DEVICE, XORG_PROC_NAME); + if (! found) + { -+ libhal_device_set_property_string(hfp_ctx, hfp_udi, -+ "input.x11_driver", -+ MOUSE_DRIVER, &hfp_error); ++ udis = libhal_manager_find_device_string_match(hfp_ctx, ++ "input.device", ++ MOUSED_DEVICE, ++ &num_udis, ++ &hfp_error); + dbus_error_free(&hfp_error); ++ if (num_udis > 0 && udis != NULL && !strcmp(udis[0], hfp_udi)) { ++ libhal_device_set_property_string(hfp_ctx, hfp_udi, ++ "input.x11_driver", ++ MOUSE_DRIVER, &hfp_error); ++ dbus_error_free(&hfp_error); ++ libhal_free_string_array(udis); ++ } + } + else if (driver) + { From marcus at marcuscom.com Wed Feb 4 09:25:25 2009 From: marcus at marcuscom.com (Joe Marcus Clarke) Date: Wed Feb 4 09:25:37 2009 Subject: [PATCH] sysutils/hal fix for sysmouse(4) and ACPI In-Reply-To: <200902041211.32033.jkim@FreeBSD.org> References: <200902041211.32033.jkim@FreeBSD.org> Message-ID: <1233768326.24228.116.camel@shumai.marcuscom.com> On Wed, 2009-02-04 at 12:11 -0500, Jung-uk Kim wrote: > This patch does two things: > > - Do not allow openning /dev/sysmouse multiple times. When there are > multiple instances of moused(8) and Xorg mouse driver > opens /dev/sysmouse multiple times, Xorg server gets confused badly, > e.g., losing input events, waiting for already processed events, etc. > - Really fix laptop brightness control. The previous commit didn't > fix IBM and Sony laptops. Pointyhat to me, again. > > Please review. Approved. Thanks for working on the ACPI/laptop stuff. It helps to have someone with the actual hardware help out with hal ;-). Joe -- PGP Key : http://www.marcuscom.com/pgp.asc -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090204/20a42644/attachment.pgp From hanche at math.ntnu.no Wed Feb 4 09:36:12 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 4 09:36:44 2009 Subject: [PATCH] sysutils/hal fix for sysmouse(4) and ACPI In-Reply-To: <200902041211.32033.jkim@FreeBSD.org> References: <200902041211.32033.jkim@FreeBSD.org> Message-ID: <20090204.183608.926535446430946580.hanche@math.ntnu.no> + Jung-uk Kim : > - Do not allow openning /dev/sysmouse multiple times. When there are > multiple instances of moused(8) and Xorg mouse driver > opens /dev/sysmouse multiple times, Xorg server gets confused badly, > e.g., losing input events, waiting for already processed events, etc. > Please review. I am not qualified to review, but I can be reckless enough to test a non-reviewed patch. It seems to solve ports/131124 for me. A million thanks! You can remove the pointy hat now. 8-) - Harald From hanche at math.ntnu.no Wed Feb 4 09:41:04 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 4 09:41:11 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <20090204161108.GA7474@soaustin.net> References: <200902041530.n14FU3QL074698@freefall.freebsd.org> <20090204161108.GA7474@soaustin.net> Message-ID: <20090204.181420.172787686.hanche@math.ntnu.no> + linimon@lonesome.com (Mark Linimon): > Unfortunately the contents of the Severity and Priority fields in > the PR database have suffered from "grade inflation" and as such > have lost their meaning long ago. > > Leaving them in the database is, at this point, just a bug. Ah. Thanks for letting me know. > In any case, with FreeBSD ports being all volunteer-driven, there's > really no requirements that we can put on the volunteers to > prioritize one PR over another. It really depends on how motivated > they are as to how they allocate their time. I have used free software long enough to understand this well. Still, if nobody speaks up, said volunteers may be left with a false impression that the problems are minor and don't need urgent fixing. So I like to whine just a little once in a while, but I'll keep it to a minimum. Now I have a plan to work around this on my own system. How does this sound? I don't want to downgrade all my ports to before this happened. So I think I would create an alternative ports tree, cvsup'd from a suitable date, and build just the X server and its required ports in that tree, maybe even install them in an alternate location (i.e., not in /usr/local). Since the server is run from just one place, this should be a minor adminstrative burden. I only need to set a small handful of environment variables to make this happen, right? - Harald From m.seaman at infracaninophile.co.uk Wed Feb 4 09:43:21 2009 From: m.seaman at infracaninophile.co.uk (Matthew Seaman) Date: Wed Feb 4 09:43:28 2009 Subject: japanese keyboard after xorg upgrade In-Reply-To: <910e60e80902040643x13f6db8bs6a3db93e85ddf679@mail.gmail.com> References: <910e60e80902040643x13f6db8bs6a3db93e85ddf679@mail.gmail.com> Message-ID: <4989D3A7.6040701@infracaninophile.co.uk> dikshie wrote: > Hi, > any explanation why my japanese keyboard > does not work after xorg upgrade? > > > Section "InputDevice" > Identifier "Keyboard0" > Driver "kbd" > Option "XkbRules" "xorg" > Option "XkbModel" "jp106" > Option "XkbLayout" "jp" > EndSection > > any solutions? Is it hald that's detecting your keyboard for the X server? You can tell this by reading Xorg.0.log -- something like this indicates hal involvement: (II) config/hal: Adding input device AT Keyboard (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "gb" (**) AT Keyboard: XkbLayout: "gb" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) Now, hal has no way of telling what sort of layout a keyboard has automatically[*]. You can tell it what to use by creating a file /usr/local/etc/hal/fdi/policy/x11-input.fdi with contents similar to this: gb Obviously, you'ld want 'jp' in ther rather than 'gb'. [Not certain exactly what you'ld need to add to override the default XkbModel setting (pc105) -- but I suspect analogy and guesswork will serve you well enough in this instance] Note that there is a race condition on system reboot between xdm(1) or whatever display manager you use starting up and hald(8) having fully initialised -- there have been a number of workarounds posted in this list. Alternatively you can use the following setting in the ServerLayout section of xorg.conf: Option "AllowEmptyInput" "off" This essentially tells X to just use the values from xorg.conf. Cheers, Matthew [*] As far as I know. It seems like a pretty odd omission to me and I'd love to be proved wrong. -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 259 bytes Desc: OpenPGP digital signature Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090204/b5604277/signature.pgp From hanche at math.ntnu.no Wed Feb 4 09:43:36 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 4 09:43:43 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <20090204.181420.172787686.hanche@math.ntnu.no> References: <200902041530.n14FU3QL074698@freefall.freebsd.org> <20090204161108.GA7474@soaustin.net> <20090204.181420.172787686.hanche@math.ntnu.no> Message-ID: <20090204.184334.863177770411298362.hanche@math.ntnu.no> + Harald Hanche-Olsen : > Now I have a plan to work around this on my own system. How does > this sound? Obviously, I no longer need an answer to that question. And I am sure I could figure it out on my own anyhow ... - Harald From jkim at FreeBSD.org Wed Feb 4 10:15:48 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Wed Feb 4 10:15:55 2009 Subject: [PATCH] sysutils/hal fix for sysmouse(4) and ACPI In-Reply-To: <20090204.183608.926535446430946580.hanche@math.ntnu.no> References: <200902041211.32033.jkim@FreeBSD.org> <20090204.183608.926535446430946580.hanche@math.ntnu.no> Message-ID: <200902041315.39923.jkim@FreeBSD.org> On Wednesday 04 February 2009 12:36 pm, Harald Hanche-Olsen wrote: > + Jung-uk Kim : > > - Do not allow openning /dev/sysmouse multiple times. When there > > are multiple instances of moused(8) and Xorg mouse driver > > opens /dev/sysmouse multiple times, Xorg server gets confused > > badly, e.g., losing input events, waiting for already processed > > events, etc. Please review. > > I am not qualified to review, but I can be reckless enough to test > a non-reviewed patch. It seems to solve ports/131124 for me. Great to hear it. Committed. > A million thanks! You can remove the pointy hat now. 8-) Thanks for testing. Jung-uk Kim From rnoland at FreeBSD.org Wed Feb 4 10:17:17 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Wed Feb 4 10:17:49 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <498897CB.7080505@system.pl> References: <1233456742.1534.14.camel@ferret.2hip.net> <498897CB.7080505@system.pl> Message-ID: <1233771426.3085.11.camel@ferret.2hip.net> On Tue, 2009-02-03 at 20:15 +0100, Marcin Cieslak wrote: > Robert Noland wrote: > > Ok, I'm expecting Xserver 1.6 final to release sometime on Monday. I'm > > planning to commit this sometime next week. This patch includes the > > following Xserver 1.6rc2, randrproto rc, libXrandr rc, xrandr rc, and > > the 2.6.1 release of the intel driver. > > > After a successful upgrade of kernel and world r187968M:two days ago and > a successful (sic!) update of X to server 1.5.3 and friends I have > decided to give 1.6 a try. > > I have tried this both with intel and nv driver (my laptop has both but > only one can be active at the time - switchable at the boot time). > > 1. First thing, I have lost access to my legacy X11 fonts. > > [dix] Could not init font path element /usr/local/lib/X11/fonts/misc/, > removing from list! > [dix] Could not init font path element /usr/local/lib/X11/fonts/TTF/, > removing from list! > [dix] Could not init font path element /usr/local/lib/X11/fonts/OTF, > removing from list! The font issue is being discussed on the xorg lists and I expect a resolution will be present in the final 1.6 server. > etc. > > I get: > > % xset fp+ /usr/local/lib/X11/fonts/100dpi > xset: bad font path element (#23), possible causes are: > Directory does not exist or has wrong permissions > Directory missing fonts.dir > Incorrect font server address or syntax > > There is no more a "freetype" and "xtrap" module, so I had to change by > config. AFAICT, xtrap is just gone... I need to get some clarification on what is going on with freetype. > Gtk applications (seamonkey) and Qt (psi) have no problems with fonts, > but xterm does. xterm is unable to locate any bitmap font (fallback to > "fixed") and when told to use Freetype fonts (-fa 'Luxi Mono-10' option) > it looks like black text on black background (my xterm has a white fb, > black bg). You can issue commands in such a window (the letter spacing > is preserved and the cursor moves), but xterm segfaults when there is > a need to scroll. > > xterm -bg white segfaults immediately, > > xterm has been recompiled after 1.6 installation. > > 2. Once (when running NVidia) the server froze, i.e. I could only move > mouse and no keys worked (including server zap, switching VTs or > Ctrl-Alt-Del). This happened when displaying a fast-scrolling > ./configure output of the libXfont in a full-screen xterm window. I'm not really setup to test the nv driver at the moment, so I can't add a lot here. robert. > The freeze doesn't look like > a http://bugs.freedesktop.org/show_bug.cgi?id=17358 however. > > I am using dwm as the window manager. > > A bunch of config files and output from various commands is available at: > > http://akson.sgh.waw.pl/~saper/FreeBSD/ports/xorg-server/xorg-1.6/ > > --Marcin > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090204/7c822d27/attachment.pgp From blackgospelpromoinc at app.topica.com Wed Feb 4 10:45:07 2009 From: blackgospelpromoinc at app.topica.com (Black Gospel Promo Inc.) Date: Wed Feb 4 10:45:13 2009 Subject: Gospel Heritage: $99 Registration Ends Feb. 15 Message-ID: <1634135382-1463792126-1233772354@blackgospelpromoinc.b.topica.com> for an html version of this message, visit: [1]http://www.blackgospelpromo.com/predesign/pd0489.htm [2][ghf-UPDATED(2).jpg] [3][click.jpg] Designed & Promoted by: Black Gospel Promo, Inc.- [4]www.blackgospelpromo.com- [5]info@blackgospelpromo.com 215.883.1000 | Promote your ministry, business, label, pastor, artist, cd, book or event today. | 45 E. Cityline Avenue - #303 | Bala Cynwyd | PA | 19004 [6]WWW.BLACKGOSPELPROMO.COM | [7]CONTACT US | [8]ADVERTISE WITH US © Copyright 2007 Blackgospelpromo.com [] [footer_cap3.gif] [9]Unsubscribe | [10]Update Profile | [11]Confirm | [12]Complain [13][delivered_by_blue.gif] [footer_cap3.gif] References 1. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNzbMpyaXcafpQ0s/ 2. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNAbMpyaXcafpQ0s/ 3. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNBbMpyaXcafpQ0s/ 4. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNBbMpyaXcafpQ0s/ 5. mailto:info@blackgospelpromo.com 6. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNBbMpyaXcafpQ0s/ 7. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNCbMpyaXcafpQ0s/ 8. http://blackgospelpromoinc.c.topica.com/maamNTyabNPNDbMpyaXcafpQ0s/ 9. http://topica.com/f/unsub.html/aaam0bnhz6m75960vdhng7stel175gkj_7r46p_r2d1dd7 10. http://topica.com/f/?a84Rle.bMpyaX.eDExQGZy 11. http://topica.com/f/?a84Rle.bMpyaX.eDExQGZy.c 12. http://www.topica.com/f/abuse.html?aaam0bnhz6m75960vdhng7stel175gkj_7r46p_r2d1dd7 13. http://www.topica.com/?p=T3FOOTER From Peter.Zehm at crush-net.de Wed Feb 4 11:02:41 2009 From: Peter.Zehm at crush-net.de (Peter Zehm) Date: Wed Feb 4 11:02:48 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <1233615341.1492.60.camel@ferret.2hip.net> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> <1233597196.1492.6.camel@ferret.2hip.net> <498769A9.1050808@mail.ru> <1233615341.1492.60.camel@ferret.2hip.net> Message-ID: <4989E294.20802@crush-net.de> Hello, at first, let me say, i'm new to this list and mailinglists at all. I just installed FreeBSD 7-stable on my Thinkpad and got the described problem with a fresh installation of 'x11/xorg', too. I was running moused with 'moused_flags="-3"'. After '/etc/rc.d/moused stop' the problem dissapered. But i was not able to isolate the problem to moused or the emulate-third-mouse-button. When starting moused again sometimes x hangs and sometimes not. But, when moused is active and i reboot the system the problem is always there, but it works well when starting x on a system with moused disabled in rc.conf. I hope this helps until it's fixed. Regards Peter From hanche at math.ntnu.no Wed Feb 4 14:10:04 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 4 14:10:14 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902042210.n14MA3Rr078508@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Harald Hanche-Olsen To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com Cc: Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Wed, 04 Feb 2009 23:08:00 +0100 (CET) Already noted on the freebsd-x11 list, but let's get it recorded in the PR as well: This bug appears to be fixed with hal-0.5.11_17. - Harald From saper at system.pl Wed Feb 4 14:23:54 2009 From: saper at system.pl (Marcin Cieslak) Date: Wed Feb 4 14:24:04 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <1233771426.3085.11.camel@ferret.2hip.net> References: <1233456742.1534.14.camel@ferret.2hip.net> <498897CB.7080505@system.pl> <1233771426.3085.11.camel@ferret.2hip.net> Message-ID: <498A156C.7080501@system.pl> Robert Noland wrote: > The font issue is being discussed on the xorg lists and I expect a > resolution will be present in the final 1.6 server. Yes, this is more or less the patch I have sent before. Things are fine when disabling "builtin fonts only" feature of the X.org server and we no longer need freetype module for that. > AFAICT, xtrap is just gone... I need to get some clarification on what > is going on with freetype. Not needed anymore I guess. To sum: everything runs fine since yesterday I have upgraded with a remove-bultin-fonts-feature-patch. > I'm not really setup to test the nv driver at the moment, so I can't add > a lot here. "Nv" used to have some trouble, but for now it is running stable for me. I will switch by box to Intel however, any hints how to test the new XvMC extension support? --Marcin From saper at system.pl Wed Feb 4 16:03:30 2009 From: saper at system.pl (Marcin Cieslak) Date: Wed Feb 4 16:03:37 2009 Subject: [HEADS UP/CFT] Xserver 1.6: testing XvMC HOWTO In-Reply-To: <1233771426.3085.11.camel@ferret.2hip.net> References: <1233456742.1534.14.camel@ferret.2hip.net> <498897CB.7080505@system.pl> <1233771426.3085.11.camel@ferret.2hip.net> Message-ID: <498A2CBD.2040205@system.pl> A short how-to: 1) Compile and configure Xserver 1.6 with xf86-video-intel driver 2.6.1 2) Add Option "XvMC" "on" to your /etc/X11/xorg.conf in the Section "Device" for the "intel" driver: Section "Device" Identifier "Intel945" Driver "intel" VendorName "Intel Corporation" BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller" (...) Option "XvMC" "on" EndSection 3) Add two flags to your ports/multimedia/mplayer/Makefile, so it looks more or less like this: CONFIGURE_ARGS+= --disable-ssse3 \ --disable-directfb \ --disable-faac \ --disable-twolame \ --disable-mencoder \ --enable-xvmc \ --with-xvmclib=XvMCW 4) Verify that /usr/local/lib/libXvMCW.so is installed (should be required by the intel driver). 5) Recompile mplayer and reinstall 6) Get a pure MPEG-2 video stream (MPEG-2 TS for example) 7) Play it with: % mplayer -vo xvmc -vc ffmpeg12mc El_Rep_35.mpg MPlayer 1.0rc2-4.2.1 (C) 2000-2007 MPlayer Team CPU: Intel(R) Core(TM)2 CPU T5600 @ 1.83GHz (Family: 6, Model: 15, Stepping: 2) CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1 Compiled for x86 CPU with extensions: MMX MMX2 SSE SSE2 Playing El_Rep_35.mpg. MPEG-PS file format detected. VIDEO: MPEG2 640x480 (aspect 1) 25.000 fps 0.0 kbps ( 0.0 kbyte/s) xscreensaver_disable: Could not find XScreenSaver window. dcop: not found vo_xvmc: X-Video extension 2.2 vo_xvmc: X-Video MotionCompensation Extension version 1.1 ========================================================================== Forced video codec: ffmpeg12mc Opening video decoder: [ffmpeg] FFmpeg's libavcodec codec family [VD_FFMPEG] XVMC accelerated codec. Selected video codec: [ffmpeg12mc] vfm: ffmpeg (FFmpeg MPEG-1/2 (XvMC)) ========================================================================== (...) [VD_FFMPEG] XVMC-accelerated MPEG-2. [VD_FFMPEG] Trying pixfmt=0. VDec: vo config request - 640 x 480 (preferred colorspace: MPEG1/2 Motion Compensation and IDCT) VDec: using MPEG1/2 Motion Compensation as output csp (no 1) Movie-Aspect is 1.33:1 - prescaling to correct movie aspect. VO: [xvmc] 640x480 => 640x480 MPEG1/2 Motion Compensation vo_xvmc: Port 80 grabed vo_xvmc: Found matching surface with id=434D5658 on 80 port at 0 adapter [intel_xvmc] info: decoder type is i915/945 MPEG2 MC decoder vo_xvmc: Allocated Direct Context vo_xvmc: data_blocks allocated vo_xvmc: mv_blocks allocated vo_xvmc: Motion Compensation context allocated - 8 surfaces vo_xvmc: idct=0 unsigned_intra=0 vo_xvmc: looking for OSD support vo_xvmc: No OSD support for this mode OSD does not work, and I probably don't have IDCT but other than that it seems to work, from -msglevel vo=9 output: vo_xvmc: query_format=1DC70002 vo_xvmc: Querying 2 adaptors vo_xvmc: Quering adaptor #0 vo_xvmc: probing port #80 vo_xvmc: XvMC list have 2 surfaces vo_xvmc: Found matching surface with id=434D5658 on 80 port at 0 adapter vo_xvmc: Querying 2 adaptors vo_xvmc: Quering adaptor #0 vo_xvmc: probing port #80 vo_xvmc: XvMC list have 2 surfaces vo_xvmc: Port 80 grabed vo_xvmc: Found matching surface with id=434D5658 on 80 port at 0 adapter vo_xvmc: Allocated Direct Context vo_xvmc: data_blocks allocated vo_xvmc: mv_blocks allocated vo_xvmc: surface[0] = 0xdb0c60 .rndr=0x80775d800 vo_xvmc: surface[1] = 0xdb0c80 .rndr=0x80775d870 vo_xvmc: surface[2] = 0xdb0ca0 .rndr=0x80775d8e0 vo_xvmc: surface[3] = 0xdb0cc0 .rndr=0x80775d950 vo_xvmc: surface[4] = 0xdb0ce0 .rndr=0x80775d9c0 vo_xvmc: surface[5] = 0xdb0d00 .rndr=0x80775da30 vo_xvmc: surface[6] = 0xdb0d20 .rndr=0x80775daa0 vo_xvmc: surface[7] = 0xdb0d40 .rndr=0x80775db10 vo_xvmc: Motion Compensation context allocated - 8 surfaces vo_xvmc: idct=0 unsigned_intra=0 vo_xvmc: looking for OSD support vo_xvmc: No OSD support for this mode --Marcin From serguei.shilov at gmail.com Thu Feb 5 03:20:05 2009 From: serguei.shilov at gmail.com (Serge Shilov) Date: Thu Feb 5 03:20:13 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902051120.n15BK4wf021508@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Serge Shilov To: bug-followup@freebsd.org, xelah-freebsd-pr@xelah.com Cc: Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb 2009 13:43:32 +0300 --Boundary-00=_ULsiJJEJlcbVhvd Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Unfortunatly problem still exist for me even after last patches for xorg- server, xf86-input-mouse and hal ports. My simptoms is exactly as described there http://lists.freebsd.org/pipermail/freebsd-x11/2009- February/007371.html, i.e. ghost left button events, text input freezing before mouse events and strange cursor behaviour. Also sometimes there is duplicating pressed chars exist but I could not find any system on it. When I'd tested it under kde4.2 and clean twm environment, simtoms still equal. My system is FreeBSD 7.1-RELEASE-p2, xorg-server is xorg-server-1.5.3_4,1 hal is 0.5.11_17 xf86-input-mouse is 1.4.0_3 My mouse is A4Tech USB Optical Mouse connected via external usb hub. Somehow I can test some other mice. Critical parts of my xorg.conf, dmesg and Xorg.0.log is there (full output in attachment) [xorg.conf] <........................skipped.......................> Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 # Screen 1 "Screen1" LeftOf "Screen0" InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "AllowEmptyInput" "off" # Option "AutoAddDevice" "off" EndSection <........................skipped.......................> Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "AutoRepeat" "500 30" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "us,ru" # Option "XkbOptions" "grp:shifts_toggle" Option "XkbOptions" "grp:rctrl_toggle" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" # Option "ZAxisMapping" "4 5" EndSection <........................skipped.......................> [dmesg.out] Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-RELEASE-p2 #1: Mon Feb 2 11:32:45 MSK 2009 root@ssh.bridge-quest.spb.ru:/usr/obj/usr/src/sys/SSHNG7 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz (3010.67-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf43 Stepping = 3 Features=0xbfebfbff Features2=0x649d AMD Features=0x20100000 Logical CPUs per core: 2 real memory = 1073414144 (1023 MB) avail memory = 1032171520 (984 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard <........................skipped.......................> ums0: on uhub5 ums0: 7 buttons and Z dir. <........................skipped.......................> ukbd0: on uhub0 kbd1 at ukbd0 <........................skipped.......................> [Xorg.o.log] <........................skipped.......................> (II) config/hal: Adding input device USB Optical Mouse (**) USB Optical Mouse: Device: "/dev/sysmouse" (==) USB Optical Mouse: Protocol: "Auto" (**) USB Optical Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) USB Optical Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) USB Optical Mouse: ZAxisMapping: buttons 4 and 5 (**) USB Optical Mouse: Buttons: 9 (**) USB Optical Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE) (II) USB Optical Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) USB Optical Mouse: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device DELL USB Keyboard (**) DELL USB Keyboard: always reports core events (**) Option "Protocol" "standard" (**) DELL USB Keyboard: Protocol: standard (**) Option "Device" "/dev/ukbd0" (EE) DELL USB Keyboard: cannot open "/dev/ukbd0" (EE) PreInit failed for input device "DELL USB Keyboard" (II) UnloadModule: "kbd" (EE) config/hal: NewInputDeviceRequest failed (II) 3rd Button detected: disabling emulate3Button (II) 3rd Button detected: disabling emulate3Button <........................skipped.......................> --Boundary-00=_ULsiJJEJlcbVhvd Content-Type: text/plain; charset="KOI8-R"; name="dmesg.out" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="dmesg.out" Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.1-RELEASE-p2 #1: Mon Feb 2 11:32:45 MSK 2009 root@ssh.bridge-quest.spb.ru:/usr/obj/usr/src/sys/SSHNG7 Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 3.00GHz (3010.67-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0xf43 Stepping = 3 Features=0xbfebfbff Features2=0x649d AMD Features=0x20100000 Logical CPUs per core: 2 real memory = 1073414144 (1023 MB) avail memory = 1032171520 (984 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard kbd0 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 3ff00000 (3) failed Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci4: on pcib1 vgapci0: mem 0xcc000000-0xcfffffff,0xd0000000-0xdfffffff,0xcb000000-0xcbffffff irq 16 at device 0.0 on pci4 nvidia0: on vgapci0 vgapci0: child nvidia0 requested pci_enable_busmaster vgapci0: child nvidia0 requested pci_enable_io nvidia0: [GIANT-LOCKED] nvidia0: [ITHREAD] pcm0: mem 0xcacf4000-0xcacf7fff irq 16 at device 27.0 on pci0 pcm0: [ITHREAD] pcib2: irq 16 at device 28.0 on pci0 pci3: on pcib2 pcib3: irq 17 at device 28.1 on pci0 pci2: on pcib3 mskc0: port 0xc800-0xc8ff mem 0xcaefc000-0xcaefffff irq 17 at device 0.0 on pci2 msk0: on mskc0 msk0: Ethernet address: 00:13:d4:56:f1:16 miibus0: on msk0 e1000phy0: PHY 0 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseTX-FDX, auto mskc0: [FILTER] uhci0: port 0x8000-0x801f irq 23 at device 29.0 on pci0 uhci0: [GIANT-LOCKED] uhci0: [ITHREAD] usb0: on uhci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x8400-0x841f irq 19 at device 29.1 on pci0 uhci1: [GIANT-LOCKED] uhci1: [ITHREAD] usb1: on uhci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered uhci2: port 0x8800-0x881f irq 18 at device 29.2 on pci0 uhci2: [GIANT-LOCKED] uhci2: [ITHREAD] usb2: on uhci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered uhci3: port 0x9000-0x901f irq 16 at device 29.3 on pci0 uhci3: [GIANT-LOCKED] uhci3: [ITHREAD] usb3: on uhci3 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered ehci0: mem 0xcacff800-0xcacffbff irq 23 at device 29.7 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb4: EHCI version 1.0 usb4: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4: on ehci0 usb4: USB revision 2.0 uhub4: on usb4 uhub4: 8 ports with 8 removable, self powered uhub5: on uhub4 uhub5: single transaction translator uhub5: 4 ports with 4 removable, self powered ums0: on uhub5 ums0: 7 buttons and Z dir. pcib4: at device 30.0 on pci0 pci1: on pcib4 pci1: at device 10.0 (no driver attached) isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 31.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] atapci1: port 0xa800-0xa807,0xa400-0xa403,0xa000-0xa007,0x9800-0x9803,0x9400-0x940f mem 0xcacffc00-0xcacfffff irq 19 at device 31.2 on pci0 atapci1: [ITHREAD] ata2: on atapci1 ata2: [ITHREAD] ata3: on atapci1 ata3: [ITHREAD] pci0: at device 31.3 (no driver attached) acpi_button0: on acpi0 fdc0: port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] cpu0: on acpi0 ACPI Warning (tbutils-0243): Incorrect checksum in table [OEMB] - DD, should be D4 [20070320] est0: on cpu0 p4tcc0: on cpu0 cpu1: on acpi0 ACPI Warning (tbutils-0243): Incorrect checksum in table [SSDT] - D7, should be EB [20070320] est1: on cpu1 p4tcc1: on cpu1 pmtimer0 on isa0 orm0: at iomem 0xcf000-0xcf7ff pnpid ORM0000 on isa0 atkbdc0: at port 0x60,0x64 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: port may not be enabled vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ukbd0: on uhub0 kbd1 at ukbd0 Timecounters tick every 1.000 msec acd0: DVDR at ata0-master UDMA33 acd1: CDRW at ata0-slave UDMA33 ad4: 114472MB at ata2-master SATA150 ad5: 114473MB at ata2-slave SATA150 ad6: 190782MB at ata3-master SATA150 pcm0: pcm0: GEOM_LABEL: Label for provider ad4s5 is ntfs/NTD. GEOM_LABEL: Label for provider ad4s6 is msdosfs/ . acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 acd1: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 sks=0x40 0x00 0x01 cd0 at ata0 bus 0 target 0 lun 0 cd0: <_NEC DVD_RW ND-2510A 2.15> Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present cd1 at ata0 bus 0 target 1 lun 0 cd1: Removable CD-ROM SCSI-0 device cd1: 33.000MB/s transfers cd1: Attempt to query device size failed: NOT READY, Medium not present SMP: AP CPU #1 Launched! Trying to mount root from ufs:/dev/ad6s1a msk0: link state changed to UP --Boundary-00=_ULsiJJEJlcbVhvd Content-Type: text/x-log; charset="KOI8-R"; name="Xorg.0.log" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Xorg.0.log" X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-RELEASE-p2 i386 Current Operating System: FreeBSD ssh.bridge-quest.spb.ru 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #1: Mon Feb 2 11:32:45 MSK 2009 root@ssh.bridge-quest.spb.ru:/usr/obj/usr/src/sys/SSHNG7 i386 Build Date: 05 February 2009 10:30:12AM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Thu Feb 5 12:53:42 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "XFree86 Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0a" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "BlankTime" "15" (**) Option "StandbyTime" "30" (**) Option "SuspendTime" "35" (**) Option "OffTime" "40" (**) Option "AllowEmptyInput" "off" (==) Automatically adding devices (==) Automatically enabling devices (WW) The directory "/usr/libdata/doscmd/fonts" does not exist. Entry deleted from font path. (WW) `fonts.dir' not found (or not valid) in "/usr/local/share/fonts". Entry deleted from font path. (Run 'mkfontdir' on "/usr/local/share/fonts"). (WW) The directory "/usr/local/lib/X11/fonts/dejavu" does not exist. Entry deleted from font path. (WW) The directory "/usr/local/lib/X11/fonts/NovellTTF" does not exist. Entry deleted from font path. (WW) The directory "/usr/local/lib/X11/fonts/macfonts" does not exist. Entry deleted from font path. (WW) The directory "/usr/local/lib/X11/fonts/URW" does not exist. Entry deleted from font path. (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/terminus-font, /usr/local/share/fonts/cmpsfont/type1, /usr/local/lib/X11/fonts/code2000/, /usr/local/lib/X11/fonts/100dpi, /usr/local/lib/X11/fonts/TTF, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1, /usr/local/lib/X11/fonts/bitstream-vera, /usr/local/lib/X11/fonts/cyrillic:unscaled, /usr/local/lib/X11/fonts/misc:unscaled, /usr/local/lib/X11/fonts/webfonts, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (==) ModulePath set to "/usr/local/lib/xorg/modules" (WW) Ignoring unrecognized extension "DamageEvents" (**) Extension "RENDER" is enabled (**) Extension "Composite" is enabled (II) Loader magic: 0x81b2de0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 12 (--) PCI:*(0@4:0:0) nVidia Corporation NV43 [GeForce 6600] rev 162, Mem @ 0xcc000000/0, 0xd0000000/0, 0xcb000000/0, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded by default. (II) "dri" will be loaded by default. (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="NVIDIA Corporation" compiled for 4.0.2, module version = 1.0.0 Module class: X.Org Server Extension (II) NVIDIA GLX Module 177.80 Wed Oct 1 15:02:07 PDT 2008 (II) Loading extension GLX (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "nvidia" (II) Loading /usr/local/lib/xorg/modules/drivers//nvidia_drv.so (II) Module nvidia: vendor="NVIDIA Corporation" compiled for 4.0.2, module version = 1.0.0 Module class: X.Org Video Driver (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) NVIDIA dlloader X Driver 177.80 Wed Oct 1 14:45:29 PDT 2008 (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs (II) Primary Device is: PCI 04@00:00:0 (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "wfb" (II) LoadModule: "wfb" (II) Loading /usr/local/lib/xorg/modules//libwfb.so dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol "miZeroLineScreenIndex" (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so (II) UnloadModule: "wfb" (EE) Failed to load module "wfb" (loader failed, 7) (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32 (==) NVIDIA(0): RGB weight 888 (==) NVIDIA(0): Default visual is TrueColor (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0) (**) NVIDIA(0): Option "NvAGP" "1" (**) NVIDIA(0): Option "ConnectedMonitor" "DFP" (**) NVIDIA(0): Option "RenderAccel" "True" (**) NVIDIA(0): Option "UseInt10Module" "true" (**) NVIDIA(0): Option "NoRenderExtension" "False" (**) NVIDIA(0): Option "AllowGLXWithComposite" "True" (**) NVIDIA(0): Option "TripleBuffer" "True" (**) NVIDIA(0): Option "UseEvents" "False" (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True" (**) NVIDIA(0): Option "DamageEvents" "True" (**) NVIDIA(0): Option "OnDemandVBlankInterrupts" "True" (**) NVIDIA(0): Option "PixmapCacheSize" "300000" (**) NVIDIA(0): Option "AllowSHMPixmaps" "True" (**) NVIDIA(0): Enabling RENDER acceleration (**) NVIDIA(0): ConnectedMonitor string: "DFP" (**) NVIDIA(0): Use of NVIDIA internal AGP requested (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (==) NVIDIA(0): Write-combining range (0xa0000,0x20000) was already clear (==) NVIDIA(0): Write-combining range (0xc0000,0x40000) was already clear (WW) NVIDIA(0): Bad V_BIOS checksum (II) NVIDIA(0): Primary V_BIOS segment is: 0xc000 (==) NVIDIA(0): Write-combining range (0x0,0x1000) was already clear (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is (II) NVIDIA(0): enabled. (II) NVIDIA(0): NVIDIA GPU GeForce 6600 (NV43) at PCI:4:0:0 (GPU-0) (--) NVIDIA(0): Memory: 262144 kBytes (--) NVIDIA(0): VideoBIOS: 05.43.02.16.00 (II) NVIDIA(0): Detected PCI Express Link width: 16X (--) NVIDIA(0): Interlaced video modes are supported on this GPU (--) NVIDIA(0): Connected display device(s) on GeForce 6600 at PCI:4:0:0: (--) NVIDIA(0): NEC LCD1970NX (DFP-0) (--) NVIDIA(0): NEC LCD1970NX (DFP-0): 155.0 MHz maximum pixel clock (--) NVIDIA(0): NEC LCD1970NX (DFP-0): Internal Single Link TMDS (II) NVIDIA(0): Assigned Display Device: DFP-0 (WW) NVIDIA(0): No valid modes for "480x320"; removing. (II) NVIDIA(0): Validated modes: (II) NVIDIA(0): "1280x1024" (II) NVIDIA(0): "1152x864" (II) NVIDIA(0): "1024x768" (II) NVIDIA(0): "800x600" (II) NVIDIA(0): "640x480" (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024 (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config (--) NVIDIA(0): option (**) NVIDIA(0): Enabling 32-bit ARGB GLX visuals. (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) NVIDIA(0): Initialized GPU GART. (II) NVIDIA(0): Setting mode "1280x1024" (II) Loading extension NV-GLX (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture (**) NVIDIA(0): Option "BackingStore" "False" (**) NVIDIA(0): Backing store disabled (==) NVIDIA(0): Silken mouse enabled (**) Option "dpms" "True" (**) NVIDIA(0): DPMS enabled (II) Loading extension NV-CONTROL (II) Loading extension XINERAMA (==) RandR enabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (II) Initializing extension GLX (**) Option "Protocol" "auto" (**) Mouse1: Device: "/dev/sysmouse" (**) Mouse1: Protocol: "auto" (**) Option "CorePointer" (**) Mouse1: always reports core events (**) Option "Device" "/dev/sysmouse" (==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50 (**) Mouse1: ZAxisMapping: buttons 4 and 5 (**) Mouse1: Buttons: 9 (**) Mouse1: Sensitivity: 1 (**) Option "CoreKeyboard" (**) Keyboard1: always reports core events (**) Option "Protocol" "standard" (**) Keyboard1: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) Keyboard1: XkbRules: "xorg" (**) Option "XkbModel" "pc104" (**) Keyboard1: XkbModel: "pc104" (**) Option "XkbLayout" "us,ru" (**) Keyboard1: XkbLayout: "us,ru" (**) Option "XkbOptions" "grp:rctrl_toggle" (**) Keyboard1: XkbOptions: "grp:rctrl_toggle" (**) Option "CustomKeycodes" "off" (**) Keyboard1: CustomKeycodes disabled (II) evaluating device (Mouse1) (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (II) evaluating device (Keyboard1) (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD) (II) Mouse1: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse1: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device USB Optical Mouse (**) USB Optical Mouse: Device: "/dev/sysmouse" (==) USB Optical Mouse: Protocol: "Auto" (**) USB Optical Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) USB Optical Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) USB Optical Mouse: ZAxisMapping: buttons 4 and 5 (**) USB Optical Mouse: Buttons: 9 (**) USB Optical Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE) (II) USB Optical Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) USB Optical Mouse: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device DELL USB Keyboard (**) DELL USB Keyboard: always reports core events (**) Option "Protocol" "standard" (**) DELL USB Keyboard: Protocol: standard (**) Option "Device" "/dev/ukbd0" (EE) DELL USB Keyboard: cannot open "/dev/ukbd0" (EE) PreInit failed for input device "DELL USB Keyboard" (II) UnloadModule: "kbd" (EE) config/hal: NewInputDeviceRequest failed (II) 3rd Button detected: disabling emulate3Button (II) 3rd Button detected: disabling emulate3Button --Boundary-00=_ULsiJJEJlcbVhvd Content-Type: text/plain; charset="KOI8-R"; name="xorg.conf" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="xorg.conf" # nvidia-xconfig: X configuration file generated by nvidia-xconfig # nvidia-xconfig: version 1.0 (root@ssh.bridge-quest.spb.ru) Tuesday, 30= december 2008 =C7. 00:36:18 (MSK) Section "ServerLayout" Identifier "XFree86 Configured" Screen 0 "Screen0" 0 0 # Screen 1 "Screen1" LeftOf "Screen0" InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "AllowEmptyInput" "off" # Option "AutoAddDevice" "off" EndSection Section "Files" FontPath "/usr/libdata/doscmd/fonts" FontPath "/usr/local/share/fonts" FontPath "/usr/local/lib/X11/fonts/terminus-font" FontPath "/usr/local/share/fonts/cmpsfont/type1" FontPath "/usr/local/lib/X11/fonts/code2000/" FontPath "/usr/local/lib/X11/fonts/dejavu" FontPath "/usr/local/lib/X11/fonts/NovellTTF" FontPath "/usr/local/lib/X11/fonts/100dpi" FontPath "/usr/local/lib/X11/fonts/TTF" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1" FontPath "/usr/local/lib/X11/fonts/bitstream-vera" FontPath "/usr/local/lib/X11/fonts/cyrillic:unscaled" FontPath "/usr/local/lib/X11/fonts/misc:unscaled" FontPath "/usr/local/lib/X11/fonts/webfonts" FontPath "/usr/local/lib/X11/fonts/macfonts" FontPath "/usr/local/lib/X11/fonts/URW" EndSection Section "Module" # Load "dri" # Load "record" # Load "xtrap" Load "dbe" # Double buffer extension Load "glx" Load "extmod" # Load "type1" Load "freetype" EndSection Section "ServerFlags" # Option "Xinerama" "0" Option "BlankTime" "15" Option "StandbyTime" "30" Option "SuspendTime" "35" Option "OffTime" "40" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "AutoRepeat" "500 30" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "us,ru" # Option "XkbOptions" "grp:shifts_toggle" Option "XkbOptions" "grp:rctrl_toggle" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" # Option "ZAxisMapping" "4 5" EndSection Section "Monitor" Identifier "Monitor0" VendorName "NEC-Mitsubishi" ModelName "MultiSync LCD 1970NX" Option "DPMS" "True" # UseModes "Modes[0]" EndSection Section "Monitor" # HorizSync 30.0 - 50.0 # VertRefresh 60.0 - 60.0 Identifier "Monitor1" VendorName "SONY" ModelName "TV" EndSection Section "Device" Identifier "Standard VGA" Driver "vga" VendorName "Unknown" BoardName "Unknown" EndSection Section "Device" Identifier "Card0a" Driver "nvidia" VendorName "nVidia Corporation" BoardName "Gygabyte NX66 Turbo [GeForce 6600]" BusID "PCI:4:0:0" Screen 0 EndSection #Section "Device" # Identifier "Card0b" # Driver "nvidia" # VendorName "nVidia Corporation" # BoardName "Gygabyte NX66 Turbo [GeForce 6600]" # BusID "PCI:4:0:0" # Screen 1 #EndSection Section "Screen" Identifier "Screen0" Device "Card0a" Monitor "Monitor0" DefaultDepth 24 Option "ConnectedMonitor" "DFP" Option "RenderAccel" "True" # It enable by default Option "AddARGBGLXVisuals" "True" Option "DamageEvents" "True" # It enable by default Option "UseEvents" "False" # Use it with caution. It may not= work on all system Option "TripleBuffer" "True" # It must always use with 'Sync = to VBlanc' enabled by nvidia-settings Option "BackingStore" "False" # Use it with caution. It may n= ot work on all system espesially for 6 series GeForce cards # This option is known to lead ti severe unstability and random cras= hes with xorg 1.5.3 server Option "AllowGLXWithComposite" "True" # Use it with caution. I= t may not work on all system Option "AllowSHMPixmaps" "True" Option "OnDemandVBlankInterrupts" "True" # Experimental Option "PixmapCacheSize" "300000" Option "NvAGP" "1" Option "UseInt10Module" "true" Option "NoRenderExtension" "False" # Option "InitializeWindowBackingPixmaps" "True" =20 SubSection "Display" Viewport 0 0 Depth 24 Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "4= 80x320" EndSubSection EndSection #Section "Screen" # # Depth 16=20 # Modes "1024x768" # "800x600" "640x480" # EndSubSection # Identifier "Screen1" # Device "Card0b" # Monitor "Monitor1" # DefaultDepth 24 # Option "ConnectedMonitor" "TV" # Option "TVStandard" "PAL-B" # Option "TVOverScan" "1.0" # SubSection "Display" # Option "TVOutFormat" "SVIDEO" # Option "AllowGLXWithComposite" "true" # Option "RENDER" "Enable" # Option "UseInt10Module" "true" # Option "IgnoreDisplayDevices" "DFP" # Option "TripleBuffer" "True" # Option "BackingStore" "True" # Option "PixmapCacheSize" "300000" # Option "OnDemandVBlankInterrupts" "True" # Option "AllowSHMPixmaps" "0" # Option "RenderAccel" "True" # Option "NoRenderExtension" "False" # Option "AddARGBGLXVisuals" "True" # Option "DamageEvents" "True" # Option "InitializeWindowBackingPixmaps" "True" # SubSection "Display" # Viewport 0 0 # Depth 24 # Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480" # EndSubSection #EndSection Section "Extensions" Option "DamageEvents" "enable" Option "RENDER" "enable" Option "Composite" "Enable" EndSection --Boundary-00=_ULsiJJEJlcbVhvd-- From jimmiejaz at gmail.com Thu Feb 5 05:29:30 2009 From: jimmiejaz at gmail.com (Jimmie James) Date: Thu Feb 5 05:29:38 2009 Subject: hard lockup [mi] EQ overflowing mieqEnequeue: out-of-order valuator event Message-ID: <498AE9CE.8010203@gmail.com> (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. No idea the steps to reproduce this hard lockup, ssh'ing in and killing X resulted in a "test pattern" look to my monitor. While it was hung, keyboard caps/num lock wouldn't respond, nor would the mouse move. The ]mi] lines repeate about 600 times in the log at the end. FreeBSD fortytwo.zapto.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Tue Jan 6 03:43:02 EST 2009 jimmie@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 pciconf, xorg.conf and Xorg.0.log included. vgapci0@pci0:0:2:0: class=0x030000 card=0x25821043 chip=0x25828086 rev=0x04 hdr=0x00 vendor = 'Intel Corporation' device = '82915G/GV/GL, 82910GL Integrated Graphics Device' class = display subclass = VGA vgapci1@pci0:0:2:1: class=0x038000 card=0x25821043 chip=0x27828086 rev=0x04 hdr=0x00 vendor = 'Intel Corporation' device = '82915G Graphics device: 82915G/GV/910GL Express Chipset Family' class = display Section "ServerLayout" Identifier "Simple Layout" Screen "Screen 1" 0 0 InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "AllowEmptyInput" "OFF" Option "AutoAddDevices" "OFF" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/local/" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/75dpi/:unscaled" FontPath "/usr/local/lib/X11/fonts/100dpi/:unscaled" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/artwiz-fonts/" FontPath "/usr/local/lib/X11/fonts/webfonts/" FontPath "/usr/local/lib/X11/fonts/URW/" FontPath "/usr/local/lib/X11/fonts/jmk" FontPath "/usr/local/lib/X11/fonts/terminus-font" FontPath "/usr/local/lib/X11/fonts/artwiz-fonts" EndSection Section "ServerFlags" Option "AIGLX" "true" EndSection Section "Module" Load "GLcore" Load "glx" Load "dri" Load "drm" Load "vbe" Load "int10" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "pc101" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "AUTO" Option "Device" "/dev/sysmouse" Option "Buttons" "10" Option "ZAxisMapping" "4 5" Option "ButtonMapping" "1 2 3 6 7 8 9 10 4 5" Option "Emulate3Buttons" "no" EndSection Section "Monitor" HorizSync 31-65 VertRefresh 55-100 Identifier "monitor0" EndSection Section "Device" Identifier "i810" Driver "intel" VendorName "Intel" BoardName "82915G/GV/910GL Express Chipset Family Graphics Controller" BusID "PCI:0:2:0" EndSection Section "Screen" Identifier "Screen 1" Device "i810" Monitor "monitor0" DefaultDepth 16 Subsection "Display" Modes "1280x1024" "1024x768" Depth 16 EndSubSection EndSection Section "DRI" Mode 0666 EndSection X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE i386 Current Operating System: FreeBSD fortytwo.zapto.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Tue Jan 6 03:43:02 EST 2009 jimmie@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 Build Date: 29 January 2009 11:53:48AM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 30 10:14:19 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "monitor0" (**) | |-->Device "i810" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AIGLX" "true" (**) Option "AllowEmptyInput" "OFF" (**) Option "AutoAddDevices" "OFF" (**) Not automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/local/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/75dpi/:unscaled, /usr/local/lib/X11/fonts/100dpi/:unscaled, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/artwiz-fonts/, /usr/local/lib/X11/fonts/webfonts/, /usr/local/lib/X11/fonts/URW/, /usr/local/lib/X11/fonts/jmk, /usr/local/lib/X11/fonts/terminus-font, /usr/local/lib/X11/fonts/artwiz-fonts, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Loader magic: 0x81b2de0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82915G/GV/910GL Integrated Graphics Controller rev 4, Mem @ 0xcfd80000/0, 0xd0000000/0, 0xcfe80000/0, I/O @ 0x00006800/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation 82915G Integrated Graphics Controller rev 4, Mem @ 0xcfe00000/0 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded by default. (II) "dbe" will be loaded by default. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded by default. (II) "record" will be loaded by default. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (**) AIGLX enabled (**) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "vbe" (II) Loading /usr/local/lib/xorg/modules//libvbe.so (II) Module vbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.1.0 ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (**) intel(0): Depth 16, (--) framebuffer bpp 16 (==) intel(0): RGB weight 565 (==) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 915G (--) intel(0): Chipset: "915G" (--) intel(0): Linear framebuffer at 0xD0000000 (--) intel(0): IO registers at addr 0xCFD80000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section monitor0 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Using hsync ranges from config file (II) intel(0): Using vrefresh ranges from config file (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1600x1200"x0.0 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (81.2 kHz) (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) (II) intel(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz) (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) intel(0): Modeline "1024x768"x0.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz) (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) intel(0): Modeline "640x480"x85.0 35.71 640 672 736 832 480 481 484 505 -hsync +vsync (42.9 kHz) (II) intel(0): Modeline "800x600"x85.0 56.55 800 840 928 1056 600 601 604 630 -hsync +vsync (53.5 kHz) (II) intel(0): Modeline "1024x768"x85.0 94.39 1024 1088 1200 1376 768 769 772 807 -hsync +vsync (68.6 kHz) (II) intel(0): Modeline "1152x864"x85.0 119.65 1152 1224 1352 1552 864 865 868 907 -hsync +vsync (77.1 kHz) (II) intel(0): Modeline "1280x960"x60.0 102.10 1280 1360 1496 1712 960 961 964 994 -hsync +vsync (59.6 kHz) (II) intel(0): Modeline "1280x1024"x75.0 138.54 1280 1368 1504 1728 1024 1025 1028 1069 -hsync +vsync (80.2 kHz) (II) intel(0): Modeline "1600x1200"x65.0 176.23 1600 1712 1888 2176 1200 1201 1204 1246 -hsync +vsync (81.0 kHz) (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Output VGA connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output VGA using initial mode 1280x1024 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): detected 256 kB GTT. (II) intel(0): detected 7932 kB stolen memory. (==) intel(0): video overlay key set to 0x83e (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (**) intel(0): Display dimensions: (320, 240) mm (**) intel(0): DPI set to (111, 148) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 241152 total, 0 used (II) intel(0): I830CheckAvailableMemory: 964608 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers = 0xcfd80000 (II) intel(0): [drm] ring buffer = 0xd0000000 (II) intel(0): [drm] mapped front buffer at 0xd0800000, handle = 0xd0800000 (II) intel(0): [drm] mapped back buffer at 0xd2800000, handle = 0xd2800000 (II) intel(0): [drm] mapped depth buffer at 0xd3000000, handle = 0xd3000000 (II) intel(0): [drm] mapped classic textures at 0xd3800000, handle = 0xd3800000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 17203200 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 12, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 12, (OK) drmOpenByBusid: drmOpenMinor returns 12 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control (II) AIGLX: enabled GLX_texture_from_pixmap with driver support (II) AIGLX: Loaded and initialized /usr/local/lib/dri/i915_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) intel(0): Setting screen physical size to 306 x 230 (**) Option "Protocol" "AUTO" (**) Mouse1: Device: "/dev/sysmouse" (**) Mouse1: Protocol: "AUTO" (**) Option "CorePointer" (**) Mouse1: always reports core events (**) Option "Device" "/dev/sysmouse" (**) Option "Buttons" "10" (**) Option "Emulate3Buttons" "no" (**) Option "ZAxisMapping" "4 5" (**) Mouse1: ZAxisMapping: buttons 4 and 5 (**) Option "ButtonMapping" "1 2 3 6 7 8 9 10 4 5" (**) Mouse1: Buttons: 10 (**) Mouse1: Sensitivity: 1 (**) Option "CoreKeyboard" (**) Keyboard1: always reports core events (**) Option "Protocol" "standard" (**) Keyboard1: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) Keyboard1: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) Keyboard1: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) Keyboard1: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) Keyboard1: CustomKeycodes disabled (II) evaluating device (Mouse1) (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (II) evaluating device (Keyboard1) (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD) (II) Mouse1: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse1: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device USB-PS/2 Optical Mouse (EE) config/hal: NewInputDeviceRequest failed (II) config/hal: Adding input device Natural? Ergonomic Keyboard 4000 (EE) config/hal: NewInputDeviceRequest failed (II) config/hal: Adding input device AT Keyboard (EE) config/hal: NewInputDeviceRequest failed (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Using hsync ranges from config file (II) intel(0): Using vrefresh ranges from config file (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1600x1200"x0.0 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (81.2 kHz) (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) (II) intel(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz) (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) (II) intel(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) intel(0): Modeline "1024x768"x0.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz) (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) intel(0): Modeline "640x480"x85.0 35.71 640 672 736 832 480 481 484 505 -hsync +vsync (42.9 kHz) (II) intel(0): Modeline "800x600"x85.0 56.55 800 840 928 1056 600 601 604 630 -hsync +vsync (53.5 kHz) (II) intel(0): Modeline "1024x768"x85.0 94.39 1024 1088 1200 1376 768 769 772 807 -hsync +vsync (68.6 kHz) (II) intel(0): Modeline "1152x864"x85.0 119.65 1152 1224 1352 1552 864 865 868 907 -hsync +vsync (77.1 kHz) (II) intel(0): Modeline "1280x960"x60.0 102.10 1280 1360 1496 1712 960 961 964 994 -hsync +vsync (59.6 kHz) (II) intel(0): Modeline "1280x1024"x75.0 138.54 1280 1368 1504 1728 1024 1025 1028 1069 -hsync +vsync (80.2 kHz) (II) intel(0): Modeline "1600x1200"x65.0 176.23 1600 1712 1888 2176 1200 1201 1204 1246 -hsync +vsync (81.0 kHz) (II) intel(0): EDID vendor "NEC", prod id 17450 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] mapped front buffer at 0xd0800000, handle = 0xd0800000 (II) intel(0): [drm] dma control initialized, using IRQ 255 (**) Option "BaudRate" "1200" (**) Option "StopBits" "2" (**) Option "DataBits" "8" (**) Option "Parity" "None" (**) Option "Vmin" "1" (**) Option "Vtime" "0" (**) Option "FlowControl" "None" (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 AUDIT: Wed Feb 4 05:03:59 2009: 99951 X: client 25 rejected from IP 64.62.181.2 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. -- Over the years I've come to regard you as people I've met. From serguei.shilov at gmail.com Thu Feb 5 08:50:02 2009 From: serguei.shilov at gmail.com (Serge Shilov) Date: Thu Feb 5 08:50:08 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902051650.n15Go2Ob074222@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Serge Shilov To: bug-followup@freebsd.org, xelah-freebsd-pr@xelah.com Cc: Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb 2009 19:40:29 +0300 I perform some experiments. Results is here. I. Test other mice . The 1st is ums0: on uhub0 ums0: 8 buttons and Z dir. and the 2nd is ums0: on uhub0 ums0: 3 buttons and Z dir. Bug still exist II. Test direct connection mouse without hub. Bug still exist. Resume: It's not mice or hub or connection-via-hub problem. (But it may be some usb host problem) III. Hot plug out and plug in mouse in X environment After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be recommended as workaround. Notice: 1. After plug out mouse cursor may still disappeared. In this case you can switch to VT0-VT7 terminals, move mouse and switch back to X session. 2. This advice is provided 'as is' without any warranties of usefulness, capacity to work with your hardware or software and other sorts of warranties. IV. After hot X session restart (without OS and hardware restart) mouse still work. V. Other cases: Hot plug out and plug in mouse in text mode environment before start X session. Start OS mouseless and plug in mouse before or after start X session. Hot OS restart after my workaround appliing. In all this cases mouse behaviour was still buggy. I'll be glad if my info help to resolve this problem. Regards. From miwi at FreeBSD.org Thu Feb 5 09:23:43 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Thu Feb 5 09:24:15 2009 Subject: FreeBSD ports you maintain which are out of date Message-ID: <20090205171609.C1400A6C1A@32bit.miwibox.org> Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.org/x11@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ x11/libICE | 1.0.4 | 1.0.5 ------------------------------------------------+-----------------+------------ x11/libXrandr | 1.2.3 | 1.2.99.4 ------------------------------------------------+-----------------+------------ x11/randrproto | 1.2.1 | 1.2.99.3 ------------------------------------------------+-----------------+------------ x11/rgb | 1.0.1 | 1.0.3 ------------------------------------------------+-----------------+------------ x11/xkeyboard-config | 1.4 | 1.5 ------------------------------------------------+-----------------+------------ x11/xrandr | 1.2.3 | 1.2.99.4 ------------------------------------------------+-----------------+------------ x11/xrx | 1.0.1 | 1.0.2 ------------------------------------------------+-----------------+------------ x11-drivers/xf86-input-synaptics | 0.99.3 | 1.0.0 ------------------------------------------------+-----------------+------------ x11-drivers/xf86-video-dummy | 0.3.0 | 0.3.1 ------------------------------------------------+-----------------+------------ x11-drivers/xf86-video-intel | 2.5.1 | 2.6.1 ------------------------------------------------+-----------------+------------ x11-fonts/fonttosfnt | 1.0.3 | 1.0.4 ------------------------------------------------+-----------------+------------ x11-servers/xephyr | 1.5.3 | 1.5.99.902 ------------------------------------------------+-----------------+------------ x11-servers/xorg-dmx | 1.5.3 | 1.5.99.902 ------------------------------------------------+-----------------+------------ x11-servers/xorg-nestserver | 1.5.3 | 1.5.99.902 ------------------------------------------------+-----------------+------------ x11-servers/xorg-server | 1.5.3 | 1.5.99.902 ------------------------------------------------+-----------------+------------ x11-servers/xorg-vfbserver | 1.5.3 | 1.5.99.902 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://beta.inerd.com/portscout-portconfig.txt If you need help, have any problems, find a bug in this software, or wish to stop (or start!) receiving portscout reminders, feel free to contact me at miwi(at)FreeBSD.org. Thanks. From christof.schulze at gmx.net Thu Feb 5 09:33:51 2009 From: christof.schulze at gmx.net (Christof Schulze) Date: Thu Feb 5 09:33:58 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <4986D31B.7020802@mail.ru> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> Message-ID: <200902051833.34564.christof.schulze@gmx.net> after running portsnap fetch update, updating hal, xorg-server, grafics driver, mouse driver and keyboard driver turning off moused things worked ok again. I am not sure which of the above fixed it but its gone now. Christof Am Montag 02 Februar 2009 12:03:55 schrieb Subscriber: > Last driver works the same way - it looks like left button permanently > pressed. I use built in touchpad in my notebook with xf86-input-driver. > Bad workaround is to tap touchpad several (random) times, then 'virtual > left button' released. Hardware left button on touchpad works the same > way. > > Robert Noland ?????: > > The following reply was made to PR ports/131124; it has been noted by > > GNATS. > > > > From: Robert Noland > > To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com > > Cc: > > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse > > is moved when AllowEmptyInput turned off > > Date: Thu, 29 Jan 2009 16:37:09 -0500 > > > > --=-WAPTMZWlWocFpdINRNGV > > Content-Type: text/plain > > Content-Transfer-Encoding: quoted-printable > > > > Please try with the latest xf86-input-mouse 1.4.0_1. > > > > robert. > > > > > > --=-WAPTMZWlWocFpdINRNGV > > Content-Type: application/pgp-signature; name="signature.asc" > > Content-Description: This is a digitally signed message part > > > > -----BEGIN PGP SIGNATURE----- > > Version: GnuPG v2.0.10 (FreeBSD) > > > > iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 > > 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp > > =6OBQ > > -----END PGP SIGNATURE----- > > > > --=-WAPTMZWlWocFpdINRNGV-- > > > > _______________________________________________ > > freebsd-x11@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part. Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090205/633cd38a/attachment.pgp From Peter.Zehm at crush-net.de Thu Feb 5 10:11:40 2009 From: Peter.Zehm at crush-net.de (Peter Zehm) Date: Thu Feb 5 10:11:46 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902051833.34564.christof.schulze@gmx.net> References: <200901292140.n0TLe5xf076339@freefall.freebsd.org> <4986D31B.7020802@mail.ru> <200902051833.34564.christof.schulze@gmx.net> Message-ID: <498B2BD7.7070505@crush-net.de> Christof Schulze schrieb: > after running portsnap fetch update, > updating hal, xorg-server, grafics driver, mouse driver and keyboard driver > turning off moused > things worked ok again. > I am not sure which of the above fixed it but its gone now. > > Christof > I also updated hal, xorg-server and mouse driver, but the problem still exists (with moused enabled). With moused disabled it works as expected. Peter > Am Montag 02 Februar 2009 12:03:55 schrieb Subscriber: > >> Last driver works the same way - it looks like left button permanently >> pressed. I use built in touchpad in my notebook with xf86-input-driver. >> Bad workaround is to tap touchpad several (random) times, then 'virtual >> left button' released. Hardware left button on touchpad works the same >> way. >> >> Robert Noland ?????: >> >>> The following reply was made to PR ports/131124; it has been noted by >>> GNATS. >>> >>> From: Robert Noland >>> To: bug-followup@FreeBSD.org, xelah-freebsd-pr@xelah.com >>> Cc: >>> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse >>> is moved when AllowEmptyInput turned off >>> Date: Thu, 29 Jan 2009 16:37:09 -0500 >>> >>> --=-WAPTMZWlWocFpdINRNGV >>> Content-Type: text/plain >>> Content-Transfer-Encoding: quoted-printable >>> >>> Please try with the latest xf86-input-mouse 1.4.0_1. >>> >>> robert. >>> >>> >>> --=-WAPTMZWlWocFpdINRNGV >>> Content-Type: application/pgp-signature; name="signature.asc" >>> Content-Description: This is a digitally signed message part >>> >>> -----BEGIN PGP SIGNATURE----- >>> Version: GnuPG v2.0.10 (FreeBSD) >>> >>> iEYEABECAAYFAkmCIYUACgkQM4TrQ4qfROPJLgCfWkosQvoc7WdPW46jkxic2Bs9 >>> 7DsAmgL2hhw6lEeX6FZr/wFI4Znjz6Wp >>> =6OBQ >>> -----END PGP SIGNATURE----- >>> >>> --=-WAPTMZWlWocFpdINRNGV-- >>> >>> _______________________________________________ >>> freebsd-x11@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 >>> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" >>> >> _______________________________________________ >> freebsd-x11@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 >> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" >> > > From jkim at FreeBSD.org Thu Feb 5 10:52:21 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Thu Feb 5 10:52:32 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902051650.n15Go2Ob074222@freefall.freebsd.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> Message-ID: <200902051352.08132.jkim@FreeBSD.org> [Sorry for spamming y'all but I thought it is very important that everyone understands the situation clearly.] On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: > The following reply was made to PR ports/131124; it has been noted > by GNATS. > > From: Serge Shilov > To: bug-followup@freebsd.org, > xelah-freebsd-pr@xelah.com > Cc: > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until > mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb > 2009 19:40:29 +0300 > > I perform some experiments. Results is here. > > I. Test other mice . > The 1st is > ums0: on > uhub0 ums0: 8 buttons and Z dir. > > and the 2nd is > ums0: 2> on uhub0 ums0: 3 buttons and Z dir. > > Bug still exist > > II. Test direct connection mouse without hub. > > Bug still exist. > > Resume: It's not mice or hub or connection-via-hub problem. (But > it may be some usb host problem) > > III. Hot plug out and plug in mouse in X environment > > After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be > recommended as workaround. > > Notice: > 1. After plug out mouse cursor may still disappeared. In this case > you can switch to VT0-VT7 terminals, move mouse and switch back to > X session. 2. This advice is provided 'as is' without any > warranties of usefulness, capacity to work with your hardware or > software and other sorts of warranties. > > IV. After hot X session restart (without OS and hardware restart) > mouse still work. > > V. Other cases: > Hot plug out and plug in mouse in text mode environment before > start X session. > Start OS mouseless and plug in mouse before or after start X > session. Hot OS restart after my workaround appliing. > > In all this cases mouse behaviour was still buggy. > > I'll be glad if my info help to resolve this problem. A short answer: Please remove "AllowEmptyInput" from your xorg.conf. A longer answer: http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim A technical answer: Some devices are safe to be opened multiple times and shared by different input drivers (e.g., Linux evdev, I think) and some devices are not (e.g., our sysmouse). Possible solutions (for ports maintainers): - When hald probes mice, exclude all moused users (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo device UDI for /dev/sysmouse and set x11_driver property if moused(8) is running and /dev/sysmouse is not being used by Xserver. If Xserver tries to open /dev/sysmouse, then the UDI has to be removed immediately. When Xserver closes /dev/sysmouse, the fake UDI has to be restored immediately. - Before Xserver starts auto-adding process, send a hint message to hald that the device is configured and enabled by static user configuration if CONFIG_HAL is defined and "AutoAddDevices" or "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober) excludes all sysmouse users from x11_driver and sends ACK/NACK message. Then, Xserver continues/stops auto-adding process depending on it. - Implement an ioctl command for sysmouse to report actual devices that it is controlling. Let each input driver veto automagic configuration process if it is being used or unsafe. - Some combinations of the above... The first solution is the least intrusive but it is not bulletproof because of an unavoidable race condition. The second solution is IMHO, a correct way but it requires Xserver change first. The third solution is too platform-specific and it requires significant (and ugly) hacks for Xserver and input drivers, I think. Any more ideas? Jung-uk Kim From jkim at FreeBSD.org Thu Feb 5 11:00:05 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Thu Feb 5 11:00:11 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902051900.n15J03cT070943@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Jung-uk Kim To: freebsd-x11@FreeBSD.org, Serge Shilov , Peter Zehm Cc: bug-followup@freebsd.org, freebsd-gnome@FreeBSD.org, marcus@FreeBSD.org, rnoland@FreeBSD.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb 2009 13:52:05 -0500 [Sorry for spamming y'all but I thought it is very important that everyone understands the situation clearly.] On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: > The following reply was made to PR ports/131124; it has been noted > by GNATS. > > From: Serge Shilov > To: bug-followup@freebsd.org, > xelah-freebsd-pr@xelah.com > Cc: > Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until > mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb > 2009 19:40:29 +0300 > > I perform some experiments. Results is here. > > I. Test other mice . > The 1st is > ums0: on > uhub0 ums0: 8 buttons and Z dir. > > and the 2nd is > ums0: 2> on uhub0 ums0: 3 buttons and Z dir. > > Bug still exist > > II. Test direct connection mouse without hub. > > Bug still exist. > > Resume: It's not mice or hub or connection-via-hub problem. (But > it may be some usb host problem) > > III. Hot plug out and plug in mouse in X environment > > After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be > recommended as workaround. > > Notice: > 1. After plug out mouse cursor may still disappeared. In this case > you can switch to VT0-VT7 terminals, move mouse and switch back to > X session. 2. This advice is provided 'as is' without any > warranties of usefulness, capacity to work with your hardware or > software and other sorts of warranties. > > IV. After hot X session restart (without OS and hardware restart) > mouse still work. > > V. Other cases: > Hot plug out and plug in mouse in text mode environment before > start X session. > Start OS mouseless and plug in mouse before or after start X > session. Hot OS restart after my workaround appliing. > > In all this cases mouse behaviour was still buggy. > > I'll be glad if my info help to resolve this problem. A short answer: Please remove "AllowEmptyInput" from your xorg.conf. A longer answer: http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim A technical answer: Some devices are safe to be opened multiple times and shared by different input drivers (e.g., Linux evdev, I think) and some devices are not (e.g., our sysmouse). Possible solutions (for ports maintainers): - When hald probes mice, exclude all moused users (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo device UDI for /dev/sysmouse and set x11_driver property if moused(8) is running and /dev/sysmouse is not being used by Xserver. If Xserver tries to open /dev/sysmouse, then the UDI has to be removed immediately. When Xserver closes /dev/sysmouse, the fake UDI has to be restored immediately. - Before Xserver starts auto-adding process, send a hint message to hald that the device is configured and enabled by static user configuration if CONFIG_HAL is defined and "AutoAddDevices" or "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober) excludes all sysmouse users from x11_driver and sends ACK/NACK message. Then, Xserver continues/stops auto-adding process depending on it. - Implement an ioctl command for sysmouse to report actual devices that it is controlling. Let each input driver veto automagic configuration process if it is being used or unsafe. - Some combinations of the above... The first solution is the least intrusive but it is not bulletproof because of an unavoidable race condition. The second solution is IMHO, a correct way but it requires Xserver change first. The third solution is too platform-specific and it requires significant (and ugly) hacks for Xserver and input drivers, I think. Any more ideas? Jung-uk Kim From jkim at FreeBSD.org Thu Feb 5 17:29:50 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Thu Feb 5 17:30:01 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902051352.08132.jkim@FreeBSD.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> <200902051352.08132.jkim@FreeBSD.org> Message-ID: <200902052029.37961.jkim@FreeBSD.org> On Thursday 05 February 2009 01:52 pm, Jung-uk Kim wrote: > - When hald probes mice, exclude all moused users > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a > pseudo device UDI for /dev/sysmouse and set x11_driver property if > moused(8) is running and /dev/sysmouse is not being used by > Xserver. If Xserver tries to open /dev/sysmouse, then the UDI has ^ | x11_driver property of | v > to be removed immediately. When Xserver closes /dev/sysmouse, the > fake UDI has to be restored immediately. Sorry, I omitted the important words here. Jung-uk Kim From jkim at FreeBSD.org Thu Feb 5 17:30:09 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Thu Feb 5 17:30:15 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902060130.n161U8ai064121@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Jung-uk Kim To: freebsd-x11@FreeBSD.org Cc: Serge Shilov , Peter Zehm , bug-followup@freebsd.org, freebsd-gnome@FreeBSD.org, marcus@FreeBSD.org, rnoland@FreeBSD.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb 2009 20:29:34 -0500 On Thursday 05 February 2009 01:52 pm, Jung-uk Kim wrote: > - When hald probes mice, exclude all moused users > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a > pseudo device UDI for /dev/sysmouse and set x11_driver property if > moused(8) is running and /dev/sysmouse is not being used by > Xserver. If Xserver tries to open /dev/sysmouse, then the UDI has ^ | x11_driver property of | v > to be removed immediately. When Xserver closes /dev/sysmouse, the > fake UDI has to be restored immediately. Sorry, I omitted the important words here. Jung-uk Kim From drl at bsd.my Thu Feb 5 19:49:10 2009 From: drl at bsd.my (Darryl Yeoh) Date: Thu Feb 5 19:49:17 2009 Subject: usb stick not detected under X Message-ID: <20090206114904.b3b6561a.drl@bsd.my> Hi Roland/lists, Sorry for cross-posting this. But I wasn't sure if this is a problem of USB or X11/HAL. I'm experiencing something odd. Upon entering X, plugging in my usb stick doesn't get detected. /var/log/messages don't show any related daX devices. It works If I exit X entirely. It also works in single-mode. Oddly my external usb mouse works in X. Here's some info: OS: FreeBSD matrix.bsd.my 7.1-STABLE FreeBSD 7.1-STABLE #0: Fri Jan 30 13:36:16 MYT 2009 root@matrix.bsd.my:/usr/src/sys/i386/compile/INSP_1501 i386 >From /var/log/messages: Feb 6 10:59:54 matrix kernel: umass0: BBB reset failed, TIMEOUT Feb 6 11:00:09 matrix kernel: umass0: BBB bulk-in clear stall failed, TIMEOUT Feb 6 11:00:24 matrix kernel: umass0: BBB bulk-out clear stall failed, TIMEOUT Complete output of usbdevs -dv Controller /dev/usb0: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub0 port 1 powered port 2 powered Controller /dev/usb1: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub1 port 1 powered port 2 powered Controller /dev/usb2: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub2 port 1 powered port 2 powered Controller /dev/usb3: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub3 port 1 powered port 2 powered Controller /dev/usb4: addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub4 port 1 powered port 2 powered Controller /dev/usb5: addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), ATI(0x0000), rev 1.00 uhub5 port 1 powered port 2 powered port 3 addr 0 should never happen! port 4 powered port 5 powered port 6 powered port 7 powered port 8 powered port 9 powered port 10 powered pkg_info for xorg-server and hal: $ pkg_info -c /var/db/pkg/xorg-server* Information for xorg-server-1.5.3_4,1: $ pkg_info -c /var/db/pkg/hal* Information for hal-0.5.11_17: /etc/rc.conf: moused_enable="NO" dbus_enable="YES" hald_enable="YES" Let me know if you need anything else. Darryl From vova at fbsd.ru Thu Feb 5 23:48:25 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Thu Feb 5 23:48:32 2009 Subject: astro/google-earth do not work with recent Xorg Message-ID: <1233906496.1746.28.camel@localhost> Hi It starts, then shows on console: -- unknown chip id 0x7145, can't guess. libGL warning: 3D driver returned no fbconfigs. libGL error: InitDriver failed libGL error: reverting to (slow) indirect rendering -- Then shows pop-up with "Google Earth can't runon your machine as it could not access the graphics card. ..." Then crashes with: terminate called after throwing an instance of 'QString' Google Earth has caught signal 6. Stacktrace from glibc: ./googleearth-bin [0x806c3a3] ./googleearth-bin [0x806c916] [0xbfbfffbb] /lib/libc.so.6(abort+0x101) [0x493d0301] ./libstdc++.so.6(_ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x179) [0x4816a019] ./libstdc++.so.6 [0x481679a5] ./libstdc++.so.6 [0x481679e2] ./libstdc++.so.6 [0x48167b4a] ./librender.so(_ZN12RenderWidget6SetApiEPN5earth4evll3APIE+0x34e) [0x49f3b57e] ./librender.so(_ZN5earth6render12RenderWindow12createWidgetEv+0xb2) [0x49f1cf62] ./libgoogleearth_lib.so(_ZN5earth6client12ModuleWidget9showEventEP10QShowEvent+0x8e) [0x4931af6e] ./libQtGui.so.4(_ZN7QWidget5eventEP6QEvent+0x7cf) [0x4851715f] ... (full crash log attached) I have working openGL for FreeBSD applications (radeonhd driver, ATI X1400 card): $ glinfo Xlib: extension "Generic Event Extension" missing on display ":0.0". Xlib: extension "Generic Event Extension" missing on display ":0.0". GL_VERSION: 1.3 Mesa 7.3 GL_EXTENSIONS: GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_MESAX_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_gpu_program_parameters GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_c! olor GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow_ambient GL_SUN_multi_draw_! arrays GL_RENDERER: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL GL_VENDOR: DRI R300 Project GLU_VERSION: 1.3 GLU_EXTENSIONS: GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess GLUT_API_VERSION: 5 GLUT_XLIB_IMPLEMENTATION: 15 $ Probably reason is in outdated X libraries: xorg-7.4 X.Org complete distribution metaport xorg-apps-7.4_1 X.org apps meta-port xorg-drivers-7.4 X.org drivers meta-port xorg-libraries-7.4 X.org libraries meta-port xorg-server-1.5.3_4,1 X.Org X server and related programs dri-7.3,2 OpenGL hardware acceleration drivers for the DRI libGL-7.3_1 OpenGL library that renders using GLX or DRI libGLU-7.3 OpenGL utility library ... linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries linux_base-f8-8_11 Base set of packages needed in Linux mode (for i386/amd64) linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of ... Any hints will be very appreciated. PPS: Also, looks like binary get lost in home on non-first start: $ googleearth Warning: Unable to create prefs directory '/home/vova/.googleearth'. File exists. ... $ file /home/vova /home/vova/.googleearth /compat/linux/home/vova /home/vova: directory /home/vova/.googleearth: directory /compat/linux/home/vova: cannot open `/compat/linux/home/vova' (No such file or directory) -- Vladimir B. Grebenschikov vova@fbsd.ru -------------- next part -------------- CRASHLOGVER 1 CRASHLOGID 0xC3886AC0 APPVERMAJOR 5 APPVERMINOR 0 APPVERBUILD 11337 APPBUILDDATE Jan 28 2009 APPBUILDTIME 15:42:23 OSTYPE 11 OSVERMAJOR 2 OSVERMINOR 6 OSVERBUILD 16 OSVERPATCH 0 PID 2580 CRASHSIGNAL 6 CRASHTIME 1233905118 PROGRAMUPTIME 142 STACK 0x806c3a3 STACK 0x806c916 STACK 0xbfbfffbb STACK 0x493d0301 STACK 0x4816a019 STACK 0x481679a5 STACK 0x481679e2 STACK 0x48167b4a STACK 0x49f3b57e STACK 0x49f1cf62 STACK 0x4931af6e STACK 0x4851715f STACK 0x484d5130 STACK 0x484dc916 STACK 0x482a82f2 STACK 0x48519fc3 STACK 0x48519d0f STACK 0x48519e98 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x48519e82 STACK 0x48519ee6 STACK 0x48519d0f STACK 0x48519e98 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x48519e82 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x48519e82 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x48519e82 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x48519e82 STACK 0x48519ee6 STACK 0x4851a4bb STACK 0x4850f865 STACK 0x492ec6ed STACK 0x493547d0 STACK 0x49357140 STACK 0x806da3a STACK 0x493bb390 STACK 0x806bb31 DSO googleearth-bin/0x8048000/298704 DSO libgcc_s.so.1/0x480af000/39096 DSO libstdc++.so.6/0x480ba000/849472 DSO libQtCore.so.4/0x48194000/2207040 DSO libQtGui.so.4/0x483b8000/7148520 DSO libQtNetwork.so.4/0x48aaf000/759340 DSO libQtWebKit.so.4/0x48b6e000/6704984 DSO libgoogleearth_lib.so/0x49260000/1111581 DSO libm.so.6/0x4937c000/159236 DSO libc.so.6/0x493a5000/1400956 DSO libpthread.so.0/0x49502000/81340 DSO libbase.so/0x4951b000/708424 DSO libge_net.so/0x495ce000/313988 DSO libgeobase.so/0x4961d000/3167376 DSO libz.so.1/0x49940000/86972 DSO libgthread-2.0.so.0/0x49957000/13260 DSO librt.so.1/0x4995d000/26320 DSO libglib-2.0.so.0/0x49966000/825192 DSO libdl.so.2/0x49a31000/8440 DSO libfreetype.so.6/0x49a36000/555108 DSO libSM.so.6/0x49ac2000/30508 DSO libICE.so.6/0x49acb000/90184 DSO libXi.so.6/0x49ae6000/27232 DSO libXrender.so.1/0x49aee000/28052 DSO libXrandr.so.2/0x49af6000/9040 DSO libXext.so.6/0x49afa000/55420 DSO libX11.so.6/0x49b09000/846860 DSO libIGCore.so/0x49bdd000/953748 DSO libIGUtils.so/0x49cd4000/146568 DSO libapiloader.so/0x49cfb000/11404 DSO libauth.so/0x49cff000/595472 DSO libcommon.so/0x49d97000/908532 DSO libcomponentframework.so/0x49e7c000/34568 DSO libmath.so/0x49e86000/210756 DSO libmoduleframework.so/0x49ebb000/52172 DSO libport.so/0x49ec9000/35032 DSO librender.so/0x49ed4000/587066 DSO ld-linux.so.2/0x48091000/106644 DSO libIGMath.so/0x49f69000/278124 DSO libminizip.so/0x49fb2000/21592 DSO libfusioncommon.so/0x49fba000/14260 DSO libcurl.so.4/0x49fbf000/201204 DSO libGL.so.1/0x49ff2000/357564 DSO libGLU.so.1/0x4a04d000/507779 DSO libXxf86vm.so.1/0x4a0cc000/15428 DSO libXdamage.so.1/0x4a0d1000/5044 DSO libXfixes.so.3/0x4a0d4000/13696 DSO libdrm.so.2/0x4a0d9000/31240 DSO libXcursor.so.1/0x4e2e5000/33196 DSO libXinerama.so.1/0x4e2ef000/5428 DSO libnss_files.so.2/0x4e2f2000/38440 DSO libqgif.so/0x522fe000/17104 DSO libqjpeg.so/0x52304000/139652 DSO xlcDef.so.2/0x49379000/6468 DSO libIGGfx.so/0x52328000/2970232 DSO libevll.so/0x52615000/8667396 DSO libalchemyext.so/0x52e71000/11492 DSO libIGAttrs.so/0x52e75000/382324 DSO libIGSg.so/0x52edb000/1035108 DSO libicuuc.so.38/0x5304f000/1052797 DSO libcollada.so/0x5315a000/3292858 DSO libIGExportCommon.so/0x53482000/517320 DSO libIGOpt.so/0x5350a000/841416 DSO libIGDisplay.so/0x535e5000/70544 DSO libIGGui.so/0x535f9000/246068 DSO ximcp.so.2/0x5374b000/116084 DSO libnss_dns.so.2/0x5b76e000/15240 DSO libresolv.so.2/0x5b774000/64564 DSO libgobject-2.0.so.0/0x5b799000/254432 DSO libnavigate.so/0x637d9000/1302424 DSO liblayer.so/0x6f922000/1737990 DSO libwmsbase.so/0x6fad6000/323232 DSO libmeasure.so/0x6fb29000/483408 DSO libbasicingest.so/0x6fba5000/783603 DSO libgps.so/0x6fc6e000/471920 DSO libgooglesearch.so/0x6fce7000/553680 DSO libinput_plugin.so/0x6fd74000/280415 DSO libflightsim.so/0x6fdbc000/1236438 DSO r300_dri.so/0x70359000/2122344 DSO libexpat.so.1/0x7057a000/119304 From levonkayan at gmx.net Fri Feb 6 05:35:21 2009 From: levonkayan at gmx.net (Levon Kayan) Date: Fri Feb 6 05:35:28 2009 Subject: xorg-server-1.5.3 or xf86-video-intel problem Message-ID: <20090206140905.0fea0b9c@hack4> hi there, since i have upgraded my xorg-server and xf86-video-intel driver using "portupgrade -a", i can't use X anymore. i'm using: ibm x41 thinkpad (graphic card: Intel Corporation Mobile 915GM/GMS/910GML), with 7.1-RELEASE-p2. when i start X i only get a blank screen and even i'm not able to kill x, only hit "ctrl+alt+del" to reboot the machine. hal and dbus were running. i loaded the drm kernel module. i also tested without hal and dbus and followed /usr/ports/UPDATING. also, i used both configuration types: my own /etc/X11/xorg.conf using "xorgconfig" and my /etc/X11/xorg.conf using "X -configure". there were no error or warnings reported in /var/log/Xorg.0.log. currently i'm using the vesa driver to use X, which is in fact a cramp. what is the problem? how can i solve this? here is my current xorg.conf: Section "Module" # This loads the DBE extension module. Load "dbe" # Double buffer extension # This loads the miscellaneous extensions module, and disables # initialisation of the XFree86-DGA extension within that module. SubSection "extmod" Option "omit xfree86-dga" # don't initialise the DGA extension EndSubSection # This loads the font modules # Load "type1" Load "freetype" # Load "xtt" # This loads the GLX module Load "glx" # This loads the DRI module Load "dri" EndSection # ********************************************************************** # Files section. This allows default font and rgb paths to be set # ********************************************************************** Section "Files" # Multiple FontPath entries are allowed (which are concatenated together), # as well as specifying multiple comma-separated entries in one FontPath # command (or a combination of both methods) # FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/local/" # FontPath "/usr/local/lib/X11/fonts/TrueType/" # FontPath "/usr/local/lib/X11/fonts/freefont/" # The module search path. The default path is shown here. # ModulePath "/usr/local/lib/modules" EndSection Section "ServerFlags" # Uncomment this to cause a core dump at the spot where a signal is # received. This may leave the console in an unusable state, but may # provide a better stack trace in the core dump to aid in debugging # Option "NoTrapSignals" # Uncomment this to disable the VT switch sequence # (where n is 1 through 12). This allows clients to receive these key # events. # Option "DontVTSwitch" # Uncomment this to disable the server abort sequence # This allows clients to receive this key event. # Option "DontZap" # Uncomment this to disable the / mode switching # sequences. This allows clients to receive these key events. # Option "Dont Zoom" # Uncomment this to disable tuning with the xvidtune client. With # it the client can still run and fetch card and monitor attributes, # but it will not be allowed to change them. If it tries it will # receive a protocol error. # Option "DisableVidModeExtension" # Uncomment this to enable the use of a non-local xvidtune client. # Option "AllowNonLocalXvidtune" # Uncomment this to disable dynamically modifying the input device # (mouse and keyboard) settings. # Option "DisableModInDev" # Uncomment this to enable the use of a non-local client to # change the keyboard or mouse settings (currently only xset). # Option "AllowNonLocalModInDev" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "AutoRepeat" "500 30" # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) # Option "Xleds" "1 2 3" # Option "LeftAlt" "Meta" # Option "RightAlt" "ModeShift" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. # keyboard, you will probably want to use: # Option "XkbModel" "pc105" # If you have a US Microsoft Natural keyboard, you can use: # Option "XkbModel" "microsoft" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # Option "XkbLayout" "de" # or: # Option "XkbLayout" "de" # Option "XkbVariant" "nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # Option "XkbOptions" "ctrl:swapcaps" # These are the default XKB settings for Xorg # Option "XkbRules" "xorg" # Option "XkbModel" "pc105" # Option "XkbLayout" "us" # Option "XkbVariant" "" # Option "XkbOptions" "" # Option "XkbDisable" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "de" Option "XkbVariant" "de" EndSection Section "InputDevice" # Identifier and driver Identifier "Mouse1" Driver "mouse" Option "Protocol" "Auto" # Auto detect Option "Device" "/dev/sysmouse" # Mouse-speed setting for PS/2 mouse. # Option "Resolution" "256" # Baudrate and SampleRate are only for some Logitech mice. In # almost every case these lines should be omitted. # Option "BaudRate" "9600" # Option "SampleRate" "150" # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5, # horizontal wheel to buttons 6 & 7. Change if your mouse has more than # 3 buttons and you need to map the wheel to different button ids to avoid # conflicts. Option "ZAxisMapping" "4 5 6 7" # Emulate3Buttons is an option for 2-button mice # Emulate3Timeout is the timeout in milliseconds (default is 50ms) Option "Emulate3Buttons" # Option "Emulate3Timeout" "50" # ChordMiddle is an option for some 3-button Logitech mice # Option "ChordMiddle" EndSection Section "Monitor" Identifier "monitor" # HorizSync is in kHz unless units are specified. # HorizSync may be a comma separated list of discrete values, or a # comma separated list of ranges of values. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S # USER MANUAL FOR THE CORRECT NUMBERS. HorizSync 31.5 - 57.0 # HorizSync 30-64 # multisync # HorizSync 31.5, 35.2 # multiple fixed sync frequencies # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies # VertRefresh is in Hz unless units are specified. # VertRefresh may be a comma separated list of discrete values, or a # comma separated list of ranges of values. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S # USER MANUAL FOR THE CORRECT NUMBERS. VertRefresh 50-100 EndSection # ********************************************************************** # Graphics device section # ********************************************************************** # Any number of graphics device sections may be present # Standard VGA Device: Section "Device" Identifier "Standard VGA" VendorName "Unknown" BoardName "Unknown" # The chipset line is optional in most cases. It can be used to override # the driver's chipset detection, and should not normally be specified. # Chipset "generic" # The Driver line must be present. When using run-time loadable driver # modules, this line instructs the server to load the specified driver # module. Even when not using loadable driver modules, this line # indicates which driver should interpret the information in this section. Driver "vga" # The BusID line is used to specify which of possibly multiple devices # this section is intended for. When this line isn't present, a device # section can only match up with the primary video device. For PCI # devices a line like the following could be used. This line should not # normally be included unless there is more than one video device # intalled. # BusID "PCI:0:10:0" # VideoRam 256 # Clocks 25.2 28.3 EndSection # Device configured by xorgconfig: Section "Device" Identifier "videocard" Driver "vesa" #VideoRam 131072 # Insert Clocks lines here if appropriate EndSection # ********************************************************************** # Screen sections # ********************************************************************** # Any number of screen sections may be present. Each describes # the configuration of a single screen. A single specific screen section # may be specified from the X server command line with the "-screen" # option. Section "Screen" Identifier "Screen 1" Device "videocard" Monitor "monitor" DefaultDepth 24 Subsection "Display" Depth 8 Modes "1024x768" ViewPort 0 0 EndSubsection Subsection "Display" Depth 16 Modes "1024x768" ViewPort 0 0 EndSubsection Subsection "Display" Depth 24 Modes "1024x768" ViewPort 0 0 EndSubsection EndSection # ********************************************************************** # ServerLayout sections. # ********************************************************************** # Any number of ServerLayout sections may be present. Each describes # the way multiple screens are organised. A specific ServerLayout # section may be specified from the X server command line with the # "-layout" option. In the absence of this, the first section is used. # When now ServerLayout section is present, the first Screen section # is used alone. Section "ServerLayout" # The Identifier line must be present Identifier "Simple Layout" # Each Screen line specifies a Screen section name, and optionally # the relative position of other screens. The four names after # primary screen name are the screens to the top, bottom, left and right # of the primary screen. In this example, screen 2 is located to the # right of screen 1. Screen "Screen 1" # Each InputDevice line specifies an InputDevice section name and # optionally some options to specify the way the device is to be # used. Those options include "CorePointer", "CoreKeyboard" and # "SendCoreEvents". InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" EndSection # Section "DRI" # Mode 0666 # EndSection regards, levon -- Name: Levon Kayan E-Mail: levonkayan@gmx.net GPG key: 0xabb93abc Key fingerprint: A8F4 5EA1 CF0B D663 B5EE F06D C203 64BB ABB9 3ABC Homepage: http://www.lamergarten.de/ From David.Snyder at turner.com Fri Feb 6 06:00:13 2009 From: David.Snyder at turner.com (Snyder, David (TBS-CNNia)) Date: Fri Feb 6 06:00:20 2009 Subject: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Message-ID: <200902061400.n16E0Cou063406@freefall.freebsd.org> The following reply was made to PR ports/131016; it has been noted by GNATS. From: "Snyder, David (TBS-CNNia)" To: , Cc: Subject: Re: ports/131016: x11/xorg - xorg-7.4 renders system unusable! Date: Fri, 6 Feb 2009 08:22:00 -0500 Hello, For what it's worth, I seem to be having similar problems on FreeBSD 7.1-RELEASE-p2. In my case; however, I can use the mouse (a generic PS/2 style wheel mouse) but the keyboard beeps and sends random characters (mostly "d"'s...lots of them). I _am_ able to hit CTRL-ALT-F1 to escape out of the X Server and kill it. The keyboard works fine in console mode, and no O/S level panicks or crashes so far. I'm kind-of bummed that X is broken since this is my primary workstation. I guess I'll be using my laptop running Windows XP until this is sorted out. Thankfully the TightVNC server works fine, so I can access my X desktop via the TightVNC client on my notebook and still get work done. Good luck to the guys/gals who are (hopefully) busy fixing this. -- David C. Snyder, CISSP Turner - Digital Media Technologies Desk: 404 827 1679 Skype/AIM: dsnyder0cnn Cell: 404 545 6211 SMS: 4045456211@txt.att.net From yuri at rawbw.com Fri Feb 6 12:23:04 2009 From: yuri at rawbw.com (Yuri) Date: Fri Feb 6 12:23:11 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" Message-ID: <498C97EF.7060609@rawbw.com> I upgraded my 71-PRERELEASE system and couldn't start xserver any more (see log below). googling this problem I found that many people had the same issue without the clear solution. "NVidia has to fix it's driver" is the solution, This is the major stability breach. There is really no reason to upgrade xorg-server to 1.5.3 if nvidia driver can't work with it since nvidia is the major card provider and maybe half of all systems run nvidia. I believe xorg should be downgraded back to 1.4.X until the issue with NVidia driver is resolved. Yuri --- error log --- Current Operating System: FreeBSD xxx.xxx.xxx 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #6: Sun Dec 21 13:41:31 PST 2008 yuri@xxx.xxx:/usr/obj/usr/src/sys/GENERIC i386 Build Date: 05 February 2009 12:07:33PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 6 10:28:43 2009 (==) Using config file: "/etc/X11/xorg.conf" (EE) Failed to load module "type1" (module does not exist, 0) dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol "miZeroLineScre enIndex" (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so (EE) Failed to load module "wfb" (loader failed, 7) From yuri at rawbw.com Fri Feb 6 12:55:57 2009 From: yuri at rawbw.com (Yuri) Date: Fri Feb 6 12:56:04 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: References: <498C97EF.7060609@rawbw.com> Message-ID: <498CA3DB.2020609@rawbw.com> Matt wrote: > Temporary workaround for this is to revert the > /usr/local/lib/xorg/modules/libwfb.so file back to the version that > was installed with the xorg-server port (the nvidia-driver port > changes that file to a symlink to the nvidia version, and leaves the > original version backed up in the same directory). > I did this but KDE3 still didn't hanged during start. Yuri From cyberbotx at cyberbotx.com Fri Feb 6 12:59:06 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Fri Feb 6 12:59:13 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498C97EF.7060609@rawbw.com> References: <498C97EF.7060609@rawbw.com> Message-ID: <498CA17B.9080001@cyberbotx.com> Yuri wrote: > I upgraded my 71-PRERELEASE system and couldn't start xserver any more > (see log below). > > googling this problem I found that many people had the same issue > without the clear solution. > "NVidia has to fix it's driver" is the solution, > > This is the major stability breach. > > There is really no reason to upgrade xorg-server to 1.5.3 if nvidia > driver can't work with it since nvidia is the major card provider and > maybe half of all systems run nvidia. > > I believe xorg should be downgraded back to 1.4.X until the issue with > NVidia driver is resolved. > > Yuri > > > --- error log --- > Current Operating System: FreeBSD xxx.xxx.xxx 7.1-PRERELEASE FreeBSD > 7.1-PRERELEASE #6: Sun Dec 21 13:41:31 PST 2008 > yuri@xxx.xxx:/usr/obj/usr/src/sys/GENERIC i386 > Build Date: 05 February 2009 12:07:33PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 6 10:28:43 2009 > (==) Using config file: "/etc/X11/xorg.conf" > (EE) Failed to load module "type1" (module does not exist, 0) > dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol > "miZeroLineScre > enIndex" > (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so > (EE) Failed to load module "wfb" (loader failed, 7) I've seen the same error, but it appears to be a minor thing and doesn't stop the Xorg server from starting, as I'm running it just fine without that module loading. If your Xorg server isn't loading, it's probably something unrelated to that module failing to load. Naram Qashat From datahead4 at gmail.com Fri Feb 6 13:03:00 2009 From: datahead4 at gmail.com (Matt) Date: Fri Feb 6 13:03:07 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498C97EF.7060609@rawbw.com> References: <498C97EF.7060609@rawbw.com> Message-ID: On Fri, Feb 6, 2009 at 2:05 PM, Yuri wrote: > I upgraded my 71-PRERELEASE system and couldn't start xserver any more (see > log below). > > googling this problem I found that many people had the same issue without > the clear solution. > "NVidia has to fix it's driver" is the solution, Temporary workaround for this is to revert the /usr/local/lib/xorg/modules/libwfb.so file back to the version that was installed with the xorg-server port (the nvidia-driver port changes that file to a symlink to the nvidia version, and leaves the original version backed up in the same directory). This is obviously not a "fix" for the issue, but it does enable X to start and glx to operate with the accelerated nvidia binary driver. Native glxgears, KDE42 with compositing effects and Linux-emulated OpenGL applications are all still working for me with the workaround. Matt > This is the major stability breach. > > There is really no reason to upgrade xorg-server to 1.5.3 if nvidia driver > can't work with it since nvidia is the major card provider and maybe half > of all systems run nvidia. > > I believe xorg should be downgraded back to 1.4.X until the issue with > NVidia driver is resolved. > > Yuri > > > --- error log --- > Current Operating System: FreeBSD xxx.xxx.xxx 7.1-PRERELEASE FreeBSD > 7.1-PRERELEASE #6: Sun Dec 21 13:41:31 PST 2008 > yuri@xxx.xxx:/usr/obj/usr/src/sys/GENERIC i386 > Build Date: 05 February 2009 12:07:33PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 6 10:28:43 2009 > (==) Using config file: "/etc/X11/xorg.conf" > (EE) Failed to load module "type1" (module does not exist, 0) > dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol > "miZeroLineScre > enIndex" > (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so > (EE) Failed to load module "wfb" (loader failed, 7) > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > From marcus at freebsd.org Fri Feb 6 13:52:59 2009 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Fri Feb 6 13:53:05 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902051352.08132.jkim@FreeBSD.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> <200902051352.08132.jkim@FreeBSD.org> Message-ID: <498CAB46.7020408@freebsd.org> Jung-uk Kim wrote: > [Sorry for spamming y'all but I thought it is very important that > everyone understands the situation clearly.] > > On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: >> The following reply was made to PR ports/131124; it has been noted >> by GNATS. >> >> From: Serge Shilov >> To: bug-followup@freebsd.org, >> xelah-freebsd-pr@xelah.com >> Cc: >> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until >> mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb >> 2009 19:40:29 +0300 >> >> I perform some experiments. Results is here. >> >> I. Test other mice . >> The 1st is >> ums0: on >> uhub0 ums0: 8 buttons and Z dir. >> >> and the 2nd is >> ums0: > 2> on uhub0 ums0: 3 buttons and Z dir. >> >> Bug still exist >> >> II. Test direct connection mouse without hub. >> >> Bug still exist. >> >> Resume: It's not mice or hub or connection-via-hub problem. (But >> it may be some usb host problem) >> >> III. Hot plug out and plug in mouse in X environment >> >> After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be >> recommended as workaround. >> >> Notice: >> 1. After plug out mouse cursor may still disappeared. In this case >> you can switch to VT0-VT7 terminals, move mouse and switch back to >> X session. 2. This advice is provided 'as is' without any >> warranties of usefulness, capacity to work with your hardware or >> software and other sorts of warranties. >> >> IV. After hot X session restart (without OS and hardware restart) >> mouse still work. >> >> V. Other cases: >> Hot plug out and plug in mouse in text mode environment before >> start X session. >> Start OS mouseless and plug in mouse before or after start X >> session. Hot OS restart after my workaround appliing. >> >> In all this cases mouse behaviour was still buggy. >> >> I'll be glad if my info help to resolve this problem. > > > A short answer: > > Please remove "AllowEmptyInput" from your xorg.conf. > > A longer answer: > > http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim > > A technical answer: > > Some devices are safe to be opened multiple times and shared by > different input drivers (e.g., Linux evdev, I think) and some devices > are not (e.g., our sysmouse). > > Possible solutions (for ports maintainers): > > - When hald probes mice, exclude all moused users > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo > device UDI for /dev/sysmouse and set x11_driver property if moused(8) > is running and /dev/sysmouse is not being used by Xserver. If > Xserver tries to open /dev/sysmouse, then the UDI has to be removed > immediately. When Xserver closes /dev/sysmouse, the fake UDI has to > be restored immediately. > > - Before Xserver starts auto-adding process, send a hint message to > hald that the device is configured and enabled by static user > configuration if CONFIG_HAL is defined and "AutoAddDevices" or > "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober) > excludes all sysmouse users from x11_driver and sends ACK/NACK > message. Then, Xserver continues/stops auto-adding process depending > on it. > > - Implement an ioctl command for sysmouse to report actual devices > that it is controlling. Let each input driver veto automagic > configuration process if it is being used or unsafe. > > - Some combinations of the above... > > The first solution is the least intrusive but it is not bulletproof > because of an unavoidable race condition. The second solution is > IMHO, a correct way but it requires Xserver change first. The third > solution is too platform-specific and it requires significant (and > ugly) hacks for Xserver and input drivers, I think. > > Any more ideas? What about modifying the sysmouse driver to more gracefully handle multiple open attempts (e.g. fail on subsequent attempts). What effect would that have on X? Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From adamk at voicenet.com Fri Feb 6 13:58:37 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Fri Feb 6 13:58:43 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498C97EF.7060609@rawbw.com> References: <498C97EF.7060609@rawbw.com> Message-ID: <20090206164529.2db3e6a2@sorrow.ashke.com> First of all, this thread suggests that it is possible to get the nvidia driver working with xorg-server 1.5.3: http://nvnews.net/vbulletin/showthread.php?t=126815 Second, if your estimate of "maybe half of all systems run nvidia" is accurate, that's still "maybe half" of all systems that do not run nvidia, and would likely benefit from an upgrade to xorg-server 1.5.3. I know I do. Third, if you use a binary only driver that has problems with an updated x server, you are certainly not forced to upgrade. You could have just as easily stayed with 1.4.* till nvidia fixed their drivers (which, by most accounts, already work with xorg-server 1.5.3). Adam On Fri, 06 Feb 2009 12:05:03 -0800 Yuri wrote: > I upgraded my 71-PRERELEASE system and couldn't start xserver any more > (see log below). > > googling this problem I found that many people had the same issue > without the clear solution. > "NVidia has to fix it's driver" is the solution, > > This is the major stability breach. > > There is really no reason to upgrade xorg-server to 1.5.3 if nvidia > driver can't work with it since nvidia is the major card provider and > maybe half of all systems run nvidia. > > I believe xorg should be downgraded back to 1.4.X until the issue with > NVidia driver is resolved. > > Yuri > > > --- error log --- > Current Operating System: FreeBSD xxx.xxx.xxx 7.1-PRERELEASE FreeBSD > 7.1-PRERELEASE #6: Sun Dec 21 13:41:31 PST 2008 > yuri@xxx.xxx:/usr/obj/usr/src/sys/GENERIC i386 > Build Date: 05 February 2009 12:07:33PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 6 10:28:43 2009 > (==) Using config file: "/etc/X11/xorg.conf" > (EE) Failed to load module "type1" (module does not exist, 0) > dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol > "miZeroLineScre > enIndex" > (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so > (EE) Failed to load module "wfb" (loader failed, 7) > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From marcus at freebsd.org Fri Feb 6 14:00:17 2009 From: marcus at freebsd.org (Joe Marcus Clarke) Date: Fri Feb 6 14:00:23 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902062200.n16M0GnH027387@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Joe Marcus Clarke To: Jung-uk Kim Cc: freebsd-x11@freebsd.org, Serge Shilov , Peter Zehm , rnoland@freebsd.org, freebsd-gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Fri, 06 Feb 2009 16:27:34 -0500 Jung-uk Kim wrote: > [Sorry for spamming y'all but I thought it is very important that > everyone understands the situation clearly.] > > On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: >> The following reply was made to PR ports/131124; it has been noted >> by GNATS. >> >> From: Serge Shilov >> To: bug-followup@freebsd.org, >> xelah-freebsd-pr@xelah.com >> Cc: >> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until >> mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb >> 2009 19:40:29 +0300 >> >> I perform some experiments. Results is here. >> >> I. Test other mice . >> The 1st is >> ums0: on >> uhub0 ums0: 8 buttons and Z dir. >> >> and the 2nd is >> ums0: > 2> on uhub0 ums0: 3 buttons and Z dir. >> >> Bug still exist >> >> II. Test direct connection mouse without hub. >> >> Bug still exist. >> >> Resume: It's not mice or hub or connection-via-hub problem. (But >> it may be some usb host problem) >> >> III. Hot plug out and plug in mouse in X environment >> >> After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be >> recommended as workaround. >> >> Notice: >> 1. After plug out mouse cursor may still disappeared. In this case >> you can switch to VT0-VT7 terminals, move mouse and switch back to >> X session. 2. This advice is provided 'as is' without any >> warranties of usefulness, capacity to work with your hardware or >> software and other sorts of warranties. >> >> IV. After hot X session restart (without OS and hardware restart) >> mouse still work. >> >> V. Other cases: >> Hot plug out and plug in mouse in text mode environment before >> start X session. >> Start OS mouseless and plug in mouse before or after start X >> session. Hot OS restart after my workaround appliing. >> >> In all this cases mouse behaviour was still buggy. >> >> I'll be glad if my info help to resolve this problem. > > > A short answer: > > Please remove "AllowEmptyInput" from your xorg.conf. > > A longer answer: > > http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim > > A technical answer: > > Some devices are safe to be opened multiple times and shared by > different input drivers (e.g., Linux evdev, I think) and some devices > are not (e.g., our sysmouse). > > Possible solutions (for ports maintainers): > > - When hald probes mice, exclude all moused users > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo > device UDI for /dev/sysmouse and set x11_driver property if moused(8) > is running and /dev/sysmouse is not being used by Xserver. If > Xserver tries to open /dev/sysmouse, then the UDI has to be removed > immediately. When Xserver closes /dev/sysmouse, the fake UDI has to > be restored immediately. > > - Before Xserver starts auto-adding process, send a hint message to > hald that the device is configured and enabled by static user > configuration if CONFIG_HAL is defined and "AutoAddDevices" or > "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober) > excludes all sysmouse users from x11_driver and sends ACK/NACK > message. Then, Xserver continues/stops auto-adding process depending > on it. > > - Implement an ioctl command for sysmouse to report actual devices > that it is controlling. Let each input driver veto automagic > configuration process if it is being used or unsafe. > > - Some combinations of the above... > > The first solution is the least intrusive but it is not bulletproof > because of an unavoidable race condition. The second solution is > IMHO, a correct way but it requires Xserver change first. The third > solution is too platform-specific and it requires significant (and > ugly) hacks for Xserver and input drivers, I think. > > Any more ideas? What about modifying the sysmouse driver to more gracefully handle multiple open attempts (e.g. fail on subsequent attempts). What effect would that have on X? Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From chat95 at mac.com Fri Feb 6 14:32:17 2009 From: chat95 at mac.com (Maho NAKATA) Date: Fri Feb 6 14:32:27 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.071848.193785503.chat95@mac.com> References: <20090207.071848.193785503.chat95@mac.com> Message-ID: <20090207.072411.71183618.chat95@mac.com> Hi, it seems DRI is not working on i386, RADEON X1650 FreBSD 7-stable, Xorg 7.4 1. if we enable DRI, screen is garbled. 2. without DRI, works, it works, and no problem. 3. I have DRM loaded at /boot/loader.conf drm0: on vgapci0 info: [drm] Initialized radeon 1.29.0 20080613 Here is the links to the Xorg.0.logs and xorg.conf * http://people.freebsd.org/~maho/xorg/Xorg.0.log.i386.X1650.DRI.failed * http://people.freebsd.org/~mah/xorg/xorg.conf.i386.X1650.DRI.failed DRI has been enabled, and garbled. * http://people.freebsd.org/~maho/xorg/Xorg.0.log.i386.X1650.noDRI * http://people.freebsd.org/~mah/xorg/xorg.conf.i386.X1650.noDRI DIR has been disabled, and works, but no compiz http://blog.livedoor.jp/maho_nakata/archives/51115172.html Helps are really appreciated! thanks! -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ From jkim at FreeBSD.org Fri Feb 6 14:38:35 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Fri Feb 6 14:38:46 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <498CAB46.7020408@freebsd.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> <200902051352.08132.jkim@FreeBSD.org> <498CAB46.7020408@freebsd.org> Message-ID: <200902061738.24574.jkim@FreeBSD.org> On Friday 06 February 2009 04:27 pm, Joe Marcus Clarke wrote: > What about modifying the sysmouse driver to more gracefully handle > multiple open attempts (e.g. fail on subsequent attempts). What > effect would that have on X? I thought about that. In fact, I implemented something along the line but threw it away because 1) I was not sure of its expected behavior, 2) it is intertwined with syscons and I was afraid of breaking it, 3) it just hides Xserver problem (i.e., mixed uses of static/auto configurations) from an OS driver, 4) it does not provide fix for release users, 5) possible POLA violations, etc. Jung-uk Kim From jkim at FreeBSD.org Fri Feb 6 14:40:09 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Fri Feb 6 14:40:15 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902062240.n16Me85q058739@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Jung-uk Kim To: Joe Marcus Clarke Cc: freebsd-x11@freebsd.org, Serge Shilov , Peter Zehm , rnoland@freebsd.org, freebsd-gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse =?iso-8859-1?q?is=09moved_when_AllowEmptyInput_turned?= off Date: Fri, 6 Feb 2009 17:37:57 -0500 On Friday 06 February 2009 04:27 pm, Joe Marcus Clarke wrote: > What about modifying the sysmouse driver to more gracefully handle > multiple open attempts (e.g. fail on subsequent attempts). What > effect would that have on X? I thought about that. In fact, I implemented something along the line but threw it away because 1) I was not sure of its expected behavior, 2) it is intertwined with syscons and I was afraid of breaking it, 3) it just hides Xserver problem (i.e., mixed uses of static/auto configurations) from an OS driver, 4) it does not provide fix for release users, 5) possible POLA violations, etc. Jung-uk Kim From nox at jelal.kn-bremen.de Fri Feb 6 14:40:32 2009 From: nox at jelal.kn-bremen.de (Juergen Lock) Date: Fri Feb 6 14:40:40 2009 Subject: astro/google-earth do not work with recent Xorg In-Reply-To: <1233906496.1746.28.camel@localhost> References: <1233906496.1746.28.camel@localhost> Message-ID: <20090206222042.GB14653@saturn.kn-bremen.de> On Fri, Feb 06, 2009 at 10:48:16AM +0300, Vladimir Grebenschikov wrote: > Hi Hi! > > It starts, then shows on console: > -- > unknown chip id 0x7145, can't guess. > libGL warning: 3D driver returned no fbconfigs. > libGL error: InitDriver failed > libGL error: reverting to (slow) indirect rendering > -- > > Then shows pop-up with "Google Earth can't runon your machine as it > could not access the graphics card. ..." > > Then crashes with: > > terminate called after throwing an instance of 'QString' > Google Earth has caught signal 6. > > Stacktrace from glibc: > ./googleearth-bin [0x806c3a3] > ./googleearth-bin [0x806c916] > [0xbfbfffbb] > /lib/libc.so.6(abort+0x101) [0x493d0301] > ./libstdc++.so.6(_ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x179) [0x4816a019] > ./libstdc++.so.6 [0x481679a5] > ./libstdc++.so.6 [0x481679e2] > ./libstdc++.so.6 [0x48167b4a] > ./librender.so(_ZN12RenderWidget6SetApiEPN5earth4evll3APIE+0x34e) [0x49f3b57e] > ./librender.so(_ZN5earth6render12RenderWindow12createWidgetEv+0xb2) [0x49f1cf62] > ./libgoogleearth_lib.so(_ZN5earth6client12ModuleWidget9showEventEP10QShowEvent+0x8e) [0x4931af6e] > ./libQtGui.so.4(_ZN7QWidget5eventEP6QEvent+0x7cf) [0x4851715f] > ... (full crash log attached) > > I have working openGL for FreeBSD applications (radeonhd driver, ATI X1400 card): > > $ glinfo > Xlib: extension "Generic Event Extension" missing on display ":0.0". > Xlib: extension "Generic Event Extension" missing on display ":0.0". > GL_VERSION: 1.3 Mesa 7.3 > GL_EXTENSIONS: GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_MESAX_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_gpu_program_parameters GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_c! > olor GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow_ambient GL_SUN_multi_draw_! > arrays > GL_RENDERER: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL > GL_VENDOR: DRI R300 Project > GLU_VERSION: 1.3 > GLU_EXTENSIONS: GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess > GLUT_API_VERSION: 5 > GLUT_XLIB_IMPLEMENTATION: 15 > $ > > Probably reason is in outdated X libraries: > > xorg-7.4 X.Org complete distribution metaport > xorg-apps-7.4_1 X.org apps meta-port > xorg-drivers-7.4 X.org drivers meta-port > xorg-libraries-7.4 X.org libraries meta-port > xorg-server-1.5.3_4,1 X.Org X server and related programs > dri-7.3,2 OpenGL hardware acceleration drivers for the DRI > libGL-7.3_1 OpenGL library that renders using GLX or DRI > libGLU-7.3 OpenGL utility library > ... > linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries > linux_base-f8-8_11 Base set of packages needed in Linux mode (for i386/amd64) > linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of > > ... > > Any hints will be very appreciated. > Hmm. does this work for anyone else? Did the old version work for you? I must say I only tested the update on the old xorg with the nvidia blob so far where it worked, and we can't really go back to the old googleearth version now because they only give out the new distfile now... > PPS: > Also, looks like binary get lost in home on non-first start: > $ googleearth > Warning: Unable to create prefs directory '/home/vova/.googleearth'. File exists. Yeah I now get that too, seems to be harmless. (I guess it does a mkdir w/o checking first whether that dir already exists...) > ... > > $ file /home/vova /home/vova/.googleearth /compat/linux/home/vova > /home/vova: directory > /home/vova/.googleearth: directory > /compat/linux/home/vova: cannot open `/compat/linux/home/vova' (No such file or directory) > > -- > Vladimir B. Grebenschikov > vova@fbsd.ru > CRASHLOGVER 1 > CRASHLOGID 0xC3886AC0 > APPVERMAJOR 5 > APPVERMINOR 0 > APPVERBUILD 11337 > APPBUILDDATE Jan 28 2009 > APPBUILDTIME 15:42:23 > OSTYPE 11 > OSVERMAJOR 2 > OSVERMINOR 6 > OSVERBUILD 16 > OSVERPATCH 0 > PID 2580 > CRASHSIGNAL 6 > CRASHTIME 1233905118 > PROGRAMUPTIME 142 > > STACK 0x806c3a3 > STACK 0x806c916 > STACK 0xbfbfffbb > STACK 0x493d0301 > STACK 0x4816a019 > STACK 0x481679a5 > STACK 0x481679e2 > STACK 0x48167b4a > STACK 0x49f3b57e > STACK 0x49f1cf62 > STACK 0x4931af6e > STACK 0x4851715f > STACK 0x484d5130 > STACK 0x484dc916 > STACK 0x482a82f2 > STACK 0x48519fc3 > STACK 0x48519d0f > STACK 0x48519e98 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x48519e82 > STACK 0x48519ee6 > STACK 0x48519d0f > STACK 0x48519e98 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x48519e82 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x48519e82 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x48519e82 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x48519e82 > STACK 0x48519ee6 > STACK 0x4851a4bb > STACK 0x4850f865 > STACK 0x492ec6ed > STACK 0x493547d0 > STACK 0x49357140 > STACK 0x806da3a > STACK 0x493bb390 > STACK 0x806bb31 > > DSO googleearth-bin/0x8048000/298704 > DSO libgcc_s.so.1/0x480af000/39096 > DSO libstdc++.so.6/0x480ba000/849472 > DSO libQtCore.so.4/0x48194000/2207040 > DSO libQtGui.so.4/0x483b8000/7148520 > DSO libQtNetwork.so.4/0x48aaf000/759340 > DSO libQtWebKit.so.4/0x48b6e000/6704984 > DSO libgoogleearth_lib.so/0x49260000/1111581 > DSO libm.so.6/0x4937c000/159236 > DSO libc.so.6/0x493a5000/1400956 > DSO libpthread.so.0/0x49502000/81340 > DSO libbase.so/0x4951b000/708424 > DSO libge_net.so/0x495ce000/313988 > DSO libgeobase.so/0x4961d000/3167376 > DSO libz.so.1/0x49940000/86972 > DSO libgthread-2.0.so.0/0x49957000/13260 > DSO librt.so.1/0x4995d000/26320 > DSO libglib-2.0.so.0/0x49966000/825192 > DSO libdl.so.2/0x49a31000/8440 > DSO libfreetype.so.6/0x49a36000/555108 > DSO libSM.so.6/0x49ac2000/30508 > DSO libICE.so.6/0x49acb000/90184 > DSO libXi.so.6/0x49ae6000/27232 > DSO libXrender.so.1/0x49aee000/28052 > DSO libXrandr.so.2/0x49af6000/9040 > DSO libXext.so.6/0x49afa000/55420 > DSO libX11.so.6/0x49b09000/846860 > DSO libIGCore.so/0x49bdd000/953748 > DSO libIGUtils.so/0x49cd4000/146568 > DSO libapiloader.so/0x49cfb000/11404 > DSO libauth.so/0x49cff000/595472 > DSO libcommon.so/0x49d97000/908532 > DSO libcomponentframework.so/0x49e7c000/34568 > DSO libmath.so/0x49e86000/210756 > DSO libmoduleframework.so/0x49ebb000/52172 > DSO libport.so/0x49ec9000/35032 > DSO librender.so/0x49ed4000/587066 > DSO ld-linux.so.2/0x48091000/106644 > DSO libIGMath.so/0x49f69000/278124 > DSO libminizip.so/0x49fb2000/21592 > DSO libfusioncommon.so/0x49fba000/14260 > DSO libcurl.so.4/0x49fbf000/201204 > DSO libGL.so.1/0x49ff2000/357564 > DSO libGLU.so.1/0x4a04d000/507779 > DSO libXxf86vm.so.1/0x4a0cc000/15428 > DSO libXdamage.so.1/0x4a0d1000/5044 > DSO libXfixes.so.3/0x4a0d4000/13696 > DSO libdrm.so.2/0x4a0d9000/31240 > DSO libXcursor.so.1/0x4e2e5000/33196 > DSO libXinerama.so.1/0x4e2ef000/5428 > DSO libnss_files.so.2/0x4e2f2000/38440 > DSO libqgif.so/0x522fe000/17104 > DSO libqjpeg.so/0x52304000/139652 > DSO xlcDef.so.2/0x49379000/6468 > DSO libIGGfx.so/0x52328000/2970232 > DSO libevll.so/0x52615000/8667396 > DSO libalchemyext.so/0x52e71000/11492 > DSO libIGAttrs.so/0x52e75000/382324 > DSO libIGSg.so/0x52edb000/1035108 > DSO libicuuc.so.38/0x5304f000/1052797 > DSO libcollada.so/0x5315a000/3292858 > DSO libIGExportCommon.so/0x53482000/517320 > DSO libIGOpt.so/0x5350a000/841416 > DSO libIGDisplay.so/0x535e5000/70544 > DSO libIGGui.so/0x535f9000/246068 > DSO ximcp.so.2/0x5374b000/116084 > DSO libnss_dns.so.2/0x5b76e000/15240 > DSO libresolv.so.2/0x5b774000/64564 > DSO libgobject-2.0.so.0/0x5b799000/254432 > DSO libnavigate.so/0x637d9000/1302424 > DSO liblayer.so/0x6f922000/1737990 > DSO libwmsbase.so/0x6fad6000/323232 > DSO libmeasure.so/0x6fb29000/483408 > DSO libbasicingest.so/0x6fba5000/783603 > DSO libgps.so/0x6fc6e000/471920 > DSO libgooglesearch.so/0x6fce7000/553680 > DSO libinput_plugin.so/0x6fd74000/280415 > DSO libflightsim.so/0x6fdbc000/1236438 > DSO r300_dri.so/0x70359000/2122344 > DSO libexpat.so.1/0x7057a000/119304 > > From chat95 at mac.com Fri Feb 6 14:43:21 2009 From: chat95 at mac.com (Maho NAKATA) Date: Fri Feb 6 14:43:31 2009 Subject: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 Message-ID: <20090207.071848.193785503.chat95@mac.com> Hi all, thanks kudos! http://blog.livedoor.jp/maho_nakata/archives/51115172.html ---------------------------------------------------------------- Note: it won't work with i386. Please let me know if it works for you. 1. Update to 7-stable (both kernel and userland) As drm information for RADEON X1650 (etc) are not updated, in the 7.1-RELEASE, first, update the kernel and userland to later than SVN rev 187021 (2009/1/10) version. 2. load radeon module at the boot time. add following in /boot/loader.conf radeon_load="YES" make sure that radeon drm is activated at the boot time. $ dmesg | grep radeon info: [drm] Initialized radeon 1.29.0 20080613 3. patch /etc/X11/xorg.conf --- xorg.conf 2009-02-03 19:28:25.000000000 +0900 +++ xorg.conf 2009-02-05 15:55:41.000000000 +0900 @@ -3,6 +3,7 @@ Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" + Option "AIGLX" "true" EndSection Section "Files" ---------------------------------- In my case hald somehow doesn't work well, so I added > Option "AllowEmptyInput" "false" as well. 4. install compiz portinstall x11-wm/compiz-fusion portinstall x11-wm/emerald 5. start compiz+emerald by: $ LIBGL_ALWAYS_INDIRECT=1 compiz --replace ccp & $ emerald --replace & ---------------------------------------------------------------- Best, -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ From adamk at voicenet.com Fri Feb 6 14:53:07 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Fri Feb 6 14:53:14 2009 Subject: astro/google-earth do not work with recent Xorg In-Reply-To: <1233906496.1746.28.camel@localhost> References: <1233906496.1746.28.camel@localhost> Message-ID: <20090206175141.7e7938e3@scroll> What GPU is this? If it's an r500 card (x1300 through x1950) linux apps will not work properly since graphics/linux_dri has not yet been updated to Mesa 7.2 or 7.3. Adam On Fri, 06 Feb 2009 10:48:16 +0300 Vladimir Grebenschikov wrote: > Hi > > It starts, then shows on console: > -- > unknown chip id 0x7145, can't guess. > libGL warning: 3D driver returned no fbconfigs. > libGL error: InitDriver failed > libGL error: reverting to (slow) indirect rendering > -- > > Then shows pop-up with "Google Earth can't runon your machine as it > could not access the graphics card. ..." > > Then crashes with: > > terminate called after throwing an instance of 'QString' > Google Earth has caught signal 6. > > Stacktrace from glibc: > ./googleearth-bin [0x806c3a3] > ./googleearth-bin [0x806c916] > [0xbfbfffbb] > /lib/libc.so.6(abort+0x101) [0x493d0301] > ./libstdc++.so.6(_ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x179) [0x4816a019] > ./libstdc++.so.6 [0x481679a5] > ./libstdc++.so.6 [0x481679e2] > ./libstdc++.so.6 [0x48167b4a] > ./librender.so(_ZN12RenderWidget6SetApiEPN5earth4evll3APIE+0x34e) [0x49f3b57e] > ./librender.so(_ZN5earth6render12RenderWindow12createWidgetEv+0xb2) [0x49f1cf62] > ./libgoogleearth_lib.so(_ZN5earth6client12ModuleWidget9showEventEP10QShowEvent+0x8e) [0x4931af6e] > ./libQtGui.so.4(_ZN7QWidget5eventEP6QEvent+0x7cf) [0x4851715f] > ... (full crash log attached) > > I have working openGL for FreeBSD applications (radeonhd driver, ATI X1400 card): > > $ glinfo > Xlib: extension "Generic Event Extension" missing on display ":0.0". > Xlib: extension "Generic Event Extension" missing on display ":0.0". > GL_VERSION: 1.3 Mesa 7.3 > GL_EXTENSIONS: GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_MESAX_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_gpu_program_parameters GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_ c! > olor GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow_ambient GL_SUN_multi_draw _! > arrays > GL_RENDERER: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL > GL_VENDOR: DRI R300 Project > GLU_VERSION: 1.3 > GLU_EXTENSIONS: GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess > GLUT_API_VERSION: 5 > GLUT_XLIB_IMPLEMENTATION: 15 > $ > > Probably reason is in outdated X libraries: > > xorg-7.4 X.Org complete distribution metaport > xorg-apps-7.4_1 X.org apps meta-port > xorg-drivers-7.4 X.org drivers meta-port > xorg-libraries-7.4 X.org libraries meta-port > xorg-server-1.5.3_4,1 X.Org X server and related programs > dri-7.3,2 OpenGL hardware acceleration drivers for the DRI > libGL-7.3_1 OpenGL library that renders using GLX or DRI > libGLU-7.3 OpenGL utility library > ... > linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries > linux_base-f8-8_11 Base set of packages needed in Linux mode (for i386/amd64) > linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of > > ... > > Any hints will be very appreciated. > > PPS: > Also, looks like binary get lost in home on non-first start: > $ googleearth > Warning: Unable to create prefs directory '/home/vova/.googleearth'. File exists. > ... > > $ file /home/vova /home/vova/.googleearth /compat/linux/home/vova > /home/vova: directory > /home/vova/.googleearth: directory > /compat/linux/home/vova: cannot open `/compat/linux/home/vova' (No such file or directory) > > -- > Vladimir B. Grebenschikov > vova@fbsd.ru -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From adamk at voicenet.com Fri Feb 6 15:02:48 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Fri Feb 6 15:02:55 2009 Subject: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.071848.193785503.chat95@mac.com> References: <20090207.071848.193785503.chat95@mac.com> Message-ID: <20090206180053.13165459@scroll> On Sat, 07 Feb 2009 07:18:48 +0900 (JST) Maho NAKATA wrote: > Hi all, > thanks kudos! > http://blog.livedoor.jp/maho_nakata/archives/51115172.html > > ---------------------------------------------------------------- > Note: it won't work with i386. Please let me know if it works for you. FYI, it works for me on two separate machines, one tested with an x1950 and an x1650 (both PCIe), and the other with an AGP x1300. Adam -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From jkim at FreeBSD.org Fri Feb 6 15:12:40 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Fri Feb 6 15:12:51 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <200902061738.24574.jkim@FreeBSD.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> <498CAB46.7020408@freebsd.org> <200902061738.24574.jkim@FreeBSD.org> Message-ID: <200902061812.30056.jkim@FreeBSD.org> On Friday 06 February 2009 05:37 pm, Jung-uk Kim wrote: > On Friday 06 February 2009 04:27 pm, Joe Marcus Clarke wrote: > > What about modifying the sysmouse driver to more gracefully > > handle multiple open attempts (e.g. fail on subsequent attempts). > > What effect would that have on X? > > I thought about that. In fact, I implemented something along the > line but threw it away because 1) I was not sure of its expected > behavior, 2) it is intertwined with syscons and I was afraid of > breaking it, 3) it just hides Xserver problem (i.e., mixed uses of > static/auto configurations) from an OS driver, 4) it does not > provide fix for release users, 5) possible POLA violations, etc. If my memory serves, there is another important reason: 6) Xserver and mouse driver open/close same device multiple times (at least twice), one for SetupAuto and one for enabling the device, I think. Depending on timing, the previous device may not be what HAL is expecting. Jung-uk Kim From jkim at FreeBSD.org Fri Feb 6 15:20:04 2009 From: jkim at FreeBSD.org (Jung-uk Kim) Date: Fri Feb 6 15:20:10 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902062320.n16NK30P087551@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Jung-uk Kim To: Joe Marcus Clarke Cc: freebsd-x11@freebsd.org, Serge Shilov , Peter Zehm , rnoland@freebsd.org, freebsd-gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse =?iso-8859-1?q?is=09moved_when_AllowEmptyInput_turned?= off Date: Fri, 6 Feb 2009 18:12:27 -0500 On Friday 06 February 2009 05:37 pm, Jung-uk Kim wrote: > On Friday 06 February 2009 04:27 pm, Joe Marcus Clarke wrote: > > What about modifying the sysmouse driver to more gracefully > > handle multiple open attempts (e.g. fail on subsequent attempts). > > What effect would that have on X? > > I thought about that. In fact, I implemented something along the > line but threw it away because 1) I was not sure of its expected > behavior, 2) it is intertwined with syscons and I was afraid of > breaking it, 3) it just hides Xserver problem (i.e., mixed uses of > static/auto configurations) from an OS driver, 4) it does not > provide fix for release users, 5) possible POLA violations, etc. If my memory serves, there is another important reason: 6) Xserver and mouse driver open/close same device multiple times (at least twice), one for SetupAuto and one for enabling the device, I think. Depending on timing, the previous device may not be what HAL is expecting. Jung-uk Kim From joe at zircon.seattle.wa.us Fri Feb 6 15:50:04 2009 From: joe at zircon.seattle.wa.us (Joe Kelsey) Date: Fri Feb 6 15:50:10 2009 Subject: ports/131313: x11/xorg cannot find mouse and keyboard Message-ID: <200902062350.n16No3U8010213@freefall.freebsd.org> The following reply was made to PR ports/131313; it has been noted by GNATS. From: Joe Kelsey To: bug-followup@FreeBSD.org, joe@zircon.seattle.wa.us Cc: Subject: Re: ports/131313: x11/xorg cannot find mouse and keyboard Date: Fri, 06 Feb 2009 15:42:54 -0800 This is a multi-part message in MIME format. --------------040707010204050006060304 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I updated ports with the new hal patches. I updated xorg.conf with the attached changes. Everything works now. --------------040707010204050006060304 Content-Type: text/plain; name="xorg.conf" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="xorg.conf" Section "ServerLayout" Identifier "X.org Configured" Screen "Screen0" 0 0 EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "glx" Load "GLcore" Load "xtrap" Load "dri" Load "freetype" Load "type1" EndSection Section "Monitor" #DisplaySize 380 300 # mm Identifier "Monitor0" VendorName "VSC" ModelName "VX910" ### Comment all HorizSync and VertRefresh values to use DDC: HorizSync 30.0 - 82.0 VertRefresh 50.0 - 85.0 Option "DPMS" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "Dac6Bit" # [] #Option "Dac8Bit" # [] #Option "BusType" # [] #Option "CPPIOMode" # [] #Option "CPusecTimeout" # #Option "AGPMode" # #Option "AGPFastWrite" # [] #Option "AGPSize" # #Option "GARTSize" # #Option "RingSize" # #Option "BufferSize" # #Option "EnableDepthMoves" # [] #Option "EnablePageFlip" # [] #Option "NoBackBuffer" # [] #Option "DMAForXv" # [] #Option "FBTexPercent" # #Option "DepthBits" # #Option "AccelDFS" # [] #Option "PanelOff" # [] #Option "DDCMode" # [] #Option "MonitorLayout" # [] #Option "IgnoreEDID" # [] #Option "UseFBDev" # [] #Option "MergedFB" # [] #Option "CRT2HSync" # [] #Option "CRT2VRefresh" # [] #Option "CRT2Position" # [] #Option "MetaModes" # [] #Option "MergedDPI" # [] #Option "MergedXinerama" # [] #Option "MergedXineramaCRT2IsScreen0" # [] #Option "MergedNonRectangular" # [] #Option "MergedMouseRestriction" # [] #Option "DisplayPriority" # [] #Option "PanelSize" # [] #Option "ForceMinDotClock" # #Option "ColorTiling" # [] #Option "VideoKey" # #Option "RageTheatreCrystal" # #Option "RageTheatreTunerPort" # #Option "RageTheatreCompositePort" # #Option "RageTheatreSVideoPort" # #Option "TunerType" # #Option "RageTheatreMicrocPath" # #Option "RageTheatreMicrocType" # #Option "RenderAccel" # [] #Option "SubPixelOrder" # [] #Option "ShowCache" # [] #Option "DynamicClocks" # [] #Option "BIOSHotkeys" # [] #Option "VGAAccess" # [] #Option "ReverseDDC" # [] #Option "LVDSProbePLL" # [] #Option "AccelMethod" # #Option "ConstantDPI" # [] Identifier "Card0" Driver "ati" VendorName "ATI Technologies Inc" BoardName "RV280 [Radeon 9200 PRO]" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection Section "DRI" Mode 0666 EndSection --------------040707010204050006060304-- From uwe at laverenz.de Fri Feb 6 15:57:46 2009 From: uwe at laverenz.de (Uwe Laverenz) Date: Fri Feb 6 15:57:53 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.072411.71183618.chat95@mac.com> References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> Message-ID: <498CCE74.9020709@laverenz.de> Maho NAKATA schrieb: > it seems DRI is not working on i386, RADEON X1650 FreBSD 7-stable, Xorg 7.4 > > 1. if we enable DRI, screen is garbled. Your logfiles say you are running RELENG_7_1, which would explain the garbled screen. Robert Noland has updated sys/drm after 7.1 was released, so if you update to RELENG_7 your problems should be solved. I've tested RELENG_7 on amd64 with a X1600 and on i386 with a FireGL 3200 quite successfully. Everything worked great, including dual-head with xrandr and dri/drm. bye, Uwe From rnoland at FreeBSD.org Fri Feb 6 16:21:28 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Fri Feb 6 16:21:35 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off In-Reply-To: <498CAB46.7020408@freebsd.org> References: <200902051650.n15Go2Ob074222@freefall.freebsd.org> <200902051352.08132.jkim@FreeBSD.org> <498CAB46.7020408@freebsd.org> Message-ID: <1233966078.1562.28.camel@ferret.2hip.net> On Fri, 2009-02-06 at 16:27 -0500, Joe Marcus Clarke wrote: > Jung-uk Kim wrote: > > [Sorry for spamming y'all but I thought it is very important that > > everyone understands the situation clearly.] > > > > On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: > >> The following reply was made to PR ports/131124; it has been noted > >> by GNATS. > >> > >> From: Serge Shilov > >> To: bug-followup@freebsd.org, > >> xelah-freebsd-pr@xelah.com > >> Cc: > >> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until > >> mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb > >> 2009 19:40:29 +0300 > >> > >> I perform some experiments. Results is here. > >> > >> I. Test other mice . > >> The 1st is > >> ums0: on > >> uhub0 ums0: 8 buttons and Z dir. > >> > >> and the 2nd is > >> ums0: >> 2> on uhub0 ums0: 3 buttons and Z dir. > >> > >> Bug still exist > >> > >> II. Test direct connection mouse without hub. > >> > >> Bug still exist. > >> > >> Resume: It's not mice or hub or connection-via-hub problem. (But > >> it may be some usb host problem) > >> > >> III. Hot plug out and plug in mouse in X environment > >> > >> After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be > >> recommended as workaround. > >> > >> Notice: > >> 1. After plug out mouse cursor may still disappeared. In this case > >> you can switch to VT0-VT7 terminals, move mouse and switch back to > >> X session. 2. This advice is provided 'as is' without any > >> warranties of usefulness, capacity to work with your hardware or > >> software and other sorts of warranties. > >> > >> IV. After hot X session restart (without OS and hardware restart) > >> mouse still work. > >> > >> V. Other cases: > >> Hot plug out and plug in mouse in text mode environment before > >> start X session. > >> Start OS mouseless and plug in mouse before or after start X > >> session. Hot OS restart after my workaround appliing. > >> > >> In all this cases mouse behaviour was still buggy. > >> > >> I'll be glad if my info help to resolve this problem. > > > > > > A short answer: > > > > Please remove "AllowEmptyInput" from your xorg.conf. > > > > A longer answer: > > > > http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim > > > > A technical answer: > > > > Some devices are safe to be opened multiple times and shared by > > different input drivers (e.g., Linux evdev, I think) and some devices > > are not (e.g., our sysmouse). > > > > Possible solutions (for ports maintainers): > > > > - When hald probes mice, exclude all moused users > > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo > > device UDI for /dev/sysmouse and set x11_driver property if moused(8) > > is running and /dev/sysmouse is not being used by Xserver. If > > Xserver tries to open /dev/sysmouse, then the UDI has to be removed > > immediately. When Xserver closes /dev/sysmouse, the fake UDI has to > > be restored immediately. > > > > - Before Xserver starts auto-adding process, send a hint message to > > hald that the device is configured and enabled by static user > > configuration if CONFIG_HAL is defined and "AutoAddDevices" or > > "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober) > > excludes all sysmouse users from x11_driver and sends ACK/NACK > > message. Then, Xserver continues/stops auto-adding process depending > > on it. > > > > - Implement an ioctl command for sysmouse to report actual devices > > that it is controlling. Let each input driver veto automagic > > configuration process if it is being used or unsafe. > > > > - Some combinations of the above... > > > > The first solution is the least intrusive but it is not bulletproof > > because of an unavoidable race condition. The second solution is > > IMHO, a correct way but it requires Xserver change first. The third > > solution is too platform-specific and it requires significant (and > > ugly) hacks for Xserver and input drivers, I think. > > > > Any more ideas? > > What about modifying the sysmouse driver to more gracefully handle > multiple open attempts (e.g. fail on subsequent attempts). What effect > would that have on X? I think X would be fine with that... That is what happens now with the psm and ums devices. At least if they are statically configured and hald is in use. robert. > Joe > > -- > Joe Marcus Clarke > FreeBSD GNOME Team :: gnome@FreeBSD.org > FreeNode / #freebsd-gnome > http://www.FreeBSD.org/gnome -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/67c85ff5/attachment.pgp From rnoland at FreeBSD.org Fri Feb 6 16:30:09 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Fri Feb 6 16:30:16 2009 Subject: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Message-ID: <200902070030.n170U97F039087@freefall.freebsd.org> The following reply was made to PR ports/131124; it has been noted by GNATS. From: Robert Noland To: Joe Marcus Clarke Cc: Jung-uk Kim , freebsd-x11@freebsd.org, Serge Shilov , Peter Zehm , freebsd-gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until mouse is moved when AllowEmptyInput turned off Date: Fri, 06 Feb 2009 19:21:18 -0500 --=-ochrBuFLMmqqvqx+Zp/J Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2009-02-06 at 16:27 -0500, Joe Marcus Clarke wrote: > Jung-uk Kim wrote: > > [Sorry for spamming y'all but I thought it is very important that=20 > > everyone understands the situation clearly.] > >=20 > > On Thursday 05 February 2009 11:50 am, Serge Shilov wrote: > >> The following reply was made to PR ports/131124; it has been noted > >> by GNATS. > >> > >> From: Serge Shilov > >> To: bug-followup@freebsd.org, > >> xelah-freebsd-pr@xelah.com > >> Cc: > >> Subject: Re: ports/131124: x11/xorg - New xorg 7.4 hangs until > >> mouse is moved when AllowEmptyInput turned off Date: Thu, 5 Feb > >> 2009 19:40:29 +0300 > >> > >> I perform some experiments. Results is here. > >> > >> I. Test other mice . > >> The 1st is > >> ums0: on > >> uhub0 ums0: 8 buttons and Z dir. > >> > >> and the 2nd is > >> ums0: >> 2> on uhub0 ums0: 3 buttons and Z dir. > >> > >> Bug still exist > >> > >> II. Test direct connection mouse without hub. > >> > >> Bug still exist. > >> > >> Resume: It's not mice or hub or connection-via-hub problem. (But > >> it may be some usb host problem) > >> > >> III. Hot plug out and plug in mouse in X environment > >> > >> After plug in mouse gehaviour BEGAN CONVENTIONAL. This can be > >> recommended as workaround. > >> > >> Notice: > >> 1. After plug out mouse cursor may still disappeared. In this case > >> you can switch to VT0-VT7 terminals, move mouse and switch back to > >> X session. 2. This advice is provided 'as is' without any > >> warranties of usefulness, capacity to work with your hardware or > >> software and other sorts of warranties. > >> > >> IV. After hot X session restart (without OS and hardware restart) > >> mouse still work. > >> > >> V. Other cases: > >> Hot plug out and plug in mouse in text mode environment before > >> start X session. > >> Start OS mouseless and plug in mouse before or after start X > >> session. Hot OS restart after my workaround appliing. > >> > >> In all this cases mouse behaviour was still buggy. > >> > >> I'll be glad if my info help to resolve this problem. > >=20 > >=20 > > A short answer: > >=20 > > Please remove "AllowEmptyInput" from your xorg.conf. > >=20 > > A longer answer: > >=20 > > http://docs.freebsd.org/cgi/mid.cgi?200902041908.50270.jkim > >=20 > > A technical answer: > >=20 > > Some devices are safe to be opened multiple times and shared by=20 > > different input drivers (e.g., Linux evdev, I think) and some devices=20 > > are not (e.g., our sysmouse). > >=20 > > Possible solutions (for ports maintainers): > >=20 > > - When hald probes mice, exclude all moused users=20 > > (e.g., /dev/psm0, /dev/ums1, ...) from x11_driver and create a pseudo=20 > > device UDI for /dev/sysmouse and set x11_driver property if moused(8)=20 > > is running and /dev/sysmouse is not being used by Xserver. If=20 > > Xserver tries to open /dev/sysmouse, then the UDI has to be removed=20 > > immediately. When Xserver closes /dev/sysmouse, the fake UDI has to=20 > > be restored immediately. > >=20 > > - Before Xserver starts auto-adding process, send a hint message to=20 > > hald that the device is configured and enabled by static user=20 > > configuration if CONFIG_HAL is defined and "AutoAddDevices" or=20 > > "AutoEnableDevices" is on. hald (i.e., FreeBSD mouse prober)=20 > > excludes all sysmouse users from x11_driver and sends ACK/NACK=20 > > message. Then, Xserver continues/stops auto-adding process depending=20 > > on it. > >=20 > > - Implement an ioctl command for sysmouse to report actual devices=20 > > that it is controlling. Let each input driver veto automagic=20 > > configuration process if it is being used or unsafe. > >=20 > > - Some combinations of the above... > >=20 > > The first solution is the least intrusive but it is not bulletproof=20 > > because of an unavoidable race condition. The second solution is=20 > > IMHO, a correct way but it requires Xserver change first. The third=20 > > solution is too platform-specific and it requires significant (and=20 > > ugly) hacks for Xserver and input drivers, I think. > >=20 > > Any more ideas? >=20 > What about modifying the sysmouse driver to more gracefully handle > multiple open attempts (e.g. fail on subsequent attempts). What effect > would that have on X? I think X would be fine with that... That is what happens now with the psm and ums devices. At least if they are statically configured and hald is in use. robert. > Joe >=20 > --=20 > Joe Marcus Clarke > FreeBSD GNOME Team :: gnome@FreeBSD.org > FreeNode / #freebsd-gnome > http://www.FreeBSD.org/gnome --=20 Robert Noland FreeBSD --=-ochrBuFLMmqqvqx+Zp/J Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) iEYEABECAAYFAkmM0/4ACgkQM4TrQ4qfRONEVQCfcZutylPs/0YhQVEdL8SOCx5O UGcAn2uxIBkjjxyX42fLq4L4fzH5P7c8 =Koy1 -----END PGP SIGNATURE----- --=-ochrBuFLMmqqvqx+Zp/J-- From adamk at voicenet.com Fri Feb 6 17:03:42 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Fri Feb 6 17:03:49 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498CD997.3020800@rawbw.com> References: <498C97EF.7060609@rawbw.com> <20090206164529.2db3e6a2@sorrow.ashke.com> <498CD997.3020800@rawbw.com> Message-ID: <20090206200213.7470cd16@scroll> On Fri, 06 Feb 2009 16:45:11 -0800 Yuri wrote: > Benefit of one users shouldn't be sacrificed for the benefit of others. > Why tens of thousands (?) of people all of the sudden should be figuring > out how to work around this issue? So why should those of us who benefit from Xorg 1.5.3 be sacrificed for those of you who need/want to stick with 1.4.*? Adam -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From yuri at rawbw.com Fri Feb 6 17:14:34 2009 From: yuri at rawbw.com (Yuri) Date: Fri Feb 6 17:14:42 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <20090206200213.7470cd16@scroll> References: <498C97EF.7060609@rawbw.com> <20090206164529.2db3e6a2@sorrow.ashke.com> <498CD997.3020800@rawbw.com> <20090206200213.7470cd16@scroll> Message-ID: <498CE076.6080800@rawbw.com> Adam K Kirchhoff wrote: > So why should those of us who benefit from Xorg 1.5.3 be sacrificed for > those of you who need/want to stick with 1.4.*? > > Adam > You didn't get the point. Nobody should be sacrificed. Testing should be done and such accidents should be prevented. Yuri From yuri at rawbw.com Fri Feb 6 17:23:48 2009 From: yuri at rawbw.com (Yuri) Date: Fri Feb 6 17:24:00 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <20090206164529.2db3e6a2@sorrow.ashke.com> References: <498C97EF.7060609@rawbw.com> <20090206164529.2db3e6a2@sorrow.ashke.com> Message-ID: <498CD997.3020800@rawbw.com> Adam K Kirchhoff wrote: > First of all, this thread suggests that it is possible to get the > nvidia driver working with xorg-server 1.5.3: > > http://nvnews.net/vbulletin/showthread.php?t=126815 > I learned from here that it only works in nvidia-driver-180.25 which isn't in the ports yet: "180.25 works perfectly. Thanks for getting something out so quickly, zander and co." > Second, if your estimate of "maybe half of all systems run nvidia" is > accurate, that's still "maybe half" of all systems that do not run > nvidia, and would likely benefit from an upgrade to xorg-server 1.5.3. > I know I do. > Benefit of one users shouldn't be sacrificed for the benefit of others. Why tens of thousands (?) of people all of the sudden should be figuring out how to work around this issue? > Third, if you use a binary only driver that has problems with an > updated x server, you are certainly not forced to upgrade. You > could have just as easily stayed with 1.4.* till nvidia fixed their > drivers (which, by most accounts, already work with xorg-server 1.5.3). > I do portupgrade periodically. I do not know what are he potential pitfalls of all the new versions that come with update. People who place new versions into CVS do. That's why only limited set of people can commit there. And they have to do testing I believe this system is sufficient as long as all parts work. But testing didn't work this time. Yuri From amvandemore at gmail.com Fri Feb 6 17:23:53 2009 From: amvandemore at gmail.com (Adam Vande More) Date: Fri Feb 6 17:24:01 2009 Subject: konsole on xorg 7.4 Message-ID: <498CDD9D.7030703@gmail.com> xorg 7.4 seems to have greatly improve response times when moving, or resizing konsole windows, but now they hang when I'm pasting large amounts of text into them. From jimmiejaz at gmail.com Fri Feb 6 23:16:54 2009 From: jimmiejaz at gmail.com (Jimmie James) Date: Fri Feb 6 23:17:02 2009 Subject: [mi] EQ overflowing mieqEnequeue: out-of-order valuator event Message-ID: <498D3560.5080004@gmail.com> No idea the steps to reproduce this hard lockup, ssh'ing in and killing X resulted in a "test pattern" look to my monitor. While it was hung, keyboard caps/num lock wouldn't respond, nor would the mouse move. The ]mi] lines repeate about 600 times in the log at the end. Shall I submit a PR for this? (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. FreeBSD fortytwo.zapto.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Tue Jan 6 03:43:02 EST 2009 jimmie@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 pciconf, xorg.conf and Xorg.0.log included. vgapci0@pci0:0:2:0: class=0x030000 card=0x25821043 chip=0x25828086 rev=0x04 hdr=0x00 vendor = 'Intel Corporation' device = '82915G/GV/GL, 82910GL Integrated Graphics Device' class = display subclass = VGA vgapci1@pci0:0:2:1: class=0x038000 card=0x25821043 chip=0x27828086 rev=0x04 hdr=0x00 vendor = 'Intel Corporation' device = '82915G Graphics device: 82915G/GV/910GL Express Chipset Family' class = display Section "ServerLayout" Identifier "Simple Layout" Screen "Screen 1" 0 0 InputDevice "Mouse1" "CorePointer" InputDevice "Keyboard1" "CoreKeyboard" Option "AllowEmptyInput" "OFF" Option "AutoAddDevices" "OFF" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/local/" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/75dpi/:unscaled" FontPath "/usr/local/lib/X11/fonts/100dpi/:unscaled" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/artwiz-fonts/" FontPath "/usr/local/lib/X11/fonts/webfonts/" FontPath "/usr/local/lib/X11/fonts/URW/" FontPath "/usr/local/lib/X11/fonts/jmk" FontPath "/usr/local/lib/X11/fonts/terminus-font" FontPath "/usr/local/lib/X11/fonts/artwiz-fonts" EndSection Section "ServerFlags" Option "AIGLX" "true" EndSection Section "Module" Load "GLcore" Load "glx" Load "dri" Load "drm" Load "vbe" Load "int10" EndSection Section "InputDevice" Identifier "Keyboard1" Driver "kbd" Option "pc101" EndSection Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "AUTO" Option "Device" "/dev/sysmouse" Option "Buttons" "10" Option "ZAxisMapping" "4 5" Option "ButtonMapping" "1 2 3 6 7 8 9 10 4 5" Option "Emulate3Buttons" "no" EndSection Section "Monitor" HorizSync 31-65 VertRefresh 55-100 Identifier "monitor0" EndSection Section "Device" Identifier "i810" Driver "intel" VendorName "Intel" BoardName "82915G/GV/910GL Express Chipset Family Graphics Controller" BusID "PCI:0:2:0" EndSection Section "Screen" Identifier "Screen 1" Device "i810" Monitor "monitor0" DefaultDepth 16 Subsection "Display" Modes "1280x1024" "1024x768" Depth 16 EndSubSection EndSection Section "DRI" Mode 0666 EndSection X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE i386 Current Operating System: FreeBSD fortytwo.zapto.org 7.1-STABLE FreeBSD 7.1-STABLE #0: Tue Jan 6 03:43:02 EST 2009 jimmie@fortytwo.zapto.org:/usr/obj/usr/src/sys/FORTYTWO i386 Build Date: 29 January 2009 11:53:48AM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jan 30 10:14:19 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "monitor0" (**) | |-->Device "i810" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AIGLX" "true" (**) Option "AllowEmptyInput" "OFF" (**) Option "AutoAddDevices" "OFF" (**) Not automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/local/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/75dpi/:unscaled, /usr/local/lib/X11/fonts/100dpi/:unscaled, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/artwiz-fonts/, /usr/local/lib/X11/fonts/webfonts/, /usr/local/lib/X11/fonts/URW/, /usr/local/lib/X11/fonts/jmk, /usr/local/lib/X11/fonts/terminus-font, /usr/local/lib/X11/fonts/artwiz-fonts, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Loader magic: 0x81b2de0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82915G/GV/910GL Integrated Graphics Controller rev 4, Mem @ 0xcfd80000/0, 0xd0000000/0, 0xcfe80000/0, I/O @ 0x00006800/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation 82915G Integrated Graphics Controller rev 4, Mem @ 0xcfe00000/0 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded by default. (II) "dbe" will be loaded by default. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded by default. (II) "record" will be loaded by default. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (**) AIGLX enabled (**) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "vbe" (II) Loading /usr/local/lib/xorg/modules//libvbe.so (II) Module vbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.1.0 ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (**) intel(0): Depth 16, (--) framebuffer bpp 16 (==) intel(0): RGB weight 565 (==) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 915G (--) intel(0): Chipset: "915G" (--) intel(0): Linear framebuffer at 0xD0000000 (--) intel(0): IO registers at addr 0xCFD80000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section monitor0 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Using hsync ranges from config file (II) intel(0): Using vrefresh ranges from config file (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1600x1200"x0.0 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (81.2 kHz) (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) (II) intel(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz) (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) intel(0): Modeline "1024x768"x0.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz) (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) intel(0): Modeline "640x480"x85.0 35.71 640 672 736 832 480 481 484 505 -hsync +vsync (42.9 kHz) (II) intel(0): Modeline "800x600"x85.0 56.55 800 840 928 1056 600 601 604 630 -hsync +vsync (53.5 kHz) (II) intel(0): Modeline "1024x768"x85.0 94.39 1024 1088 1200 1376 768 769 772 807 -hsync +vsync (68.6 kHz) (II) intel(0): Modeline "1152x864"x85.0 119.65 1152 1224 1352 1552 864 865 868 907 -hsync +vsync (77.1 kHz) (II) intel(0): Modeline "1280x960"x60.0 102.10 1280 1360 1496 1712 960 961 964 994 -hsync +vsync (59.6 kHz) (II) intel(0): Modeline "1280x1024"x75.0 138.54 1280 1368 1504 1728 1024 1025 1028 1069 -hsync +vsync (80.2 kHz) (II) intel(0): Modeline "1600x1200"x65.0 176.23 1600 1712 1888 2176 1200 1201 1204 1246 -hsync +vsync (81.0 kHz) (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Output VGA connected (II) intel(0): Using user preference for initial modes (II) intel(0): Output VGA using initial mode 1280x1024 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): detected 256 kB GTT. (II) intel(0): detected 7932 kB stolen memory. (==) intel(0): video overlay key set to 0x83e (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (**) intel(0): Display dimensions: (320, 240) mm (**) intel(0): DPI set to (111, 148) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 241152 total, 0 used (II) intel(0): I830CheckAvailableMemory: 964608 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers = 0xcfd80000 (II) intel(0): [drm] ring buffer = 0xd0000000 (II) intel(0): [drm] mapped front buffer at 0xd0800000, handle = 0xd0800000 (II) intel(0): [drm] mapped back buffer at 0xd2800000, handle = 0xd2800000 (II) intel(0): [drm] mapped depth buffer at 0xd3000000, handle = 0xd3000000 (II) intel(0): [drm] mapped classic textures at 0xd3800000, handle = 0xd3800000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 17203200 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 12, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 12, (OK) drmOpenByBusid: drmOpenMinor returns 12 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) AIGLX: enabled GLX_MESA_copy_sub_buffer (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control (II) AIGLX: enabled GLX_texture_from_pixmap with driver support (II) AIGLX: Loaded and initialized /usr/local/lib/dri/i915_dri.so (II) GLX: Initialized DRI GL provider for screen 0 (II) intel(0): Setting screen physical size to 306 x 230 (**) Option "Protocol" "AUTO" (**) Mouse1: Device: "/dev/sysmouse" (**) Mouse1: Protocol: "AUTO" (**) Option "CorePointer" (**) Mouse1: always reports core events (**) Option "Device" "/dev/sysmouse" (**) Option "Buttons" "10" (**) Option "Emulate3Buttons" "no" (**) Option "ZAxisMapping" "4 5" (**) Mouse1: ZAxisMapping: buttons 4 and 5 (**) Option "ButtonMapping" "1 2 3 6 7 8 9 10 4 5" (**) Mouse1: Buttons: 10 (**) Mouse1: Sensitivity: 1 (**) Option "CoreKeyboard" (**) Keyboard1: always reports core events (**) Option "Protocol" "standard" (**) Keyboard1: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) Keyboard1: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) Keyboard1: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) Keyboard1: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) Keyboard1: CustomKeycodes disabled (II) evaluating device (Mouse1) (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE) (II) evaluating device (Keyboard1) (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD) (II) Mouse1: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse1: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device USB-PS/2 Optical Mouse (EE) config/hal: NewInputDeviceRequest failed (II) config/hal: Adding input device Natural? Ergonomic Keyboard 4000 (EE) config/hal: NewInputDeviceRequest failed (II) config/hal: Adding input device AT Keyboard (EE) config/hal: NewInputDeviceRequest failed (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "NEC", prod id 17450 (II) intel(0): Using hsync ranges from config file (II) intel(0): Using vrefresh ranges from config file (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "1600x1200"x0.0 175.50 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (81.2 kHz) (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz) (II) intel(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x0.0 35.50 720 738 846 900 400 421 423 449 -hsync -vsync (39.4 kHz) (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) (II) intel(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) intel(0): Modeline "1024x768"x0.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz) (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) intel(0): Modeline "640x480"x85.0 35.71 640 672 736 832 480 481 484 505 -hsync +vsync (42.9 kHz) (II) intel(0): Modeline "800x600"x85.0 56.55 800 840 928 1056 600 601 604 630 -hsync +vsync (53.5 kHz) (II) intel(0): Modeline "1024x768"x85.0 94.39 1024 1088 1200 1376 768 769 772 807 -hsync +vsync (68.6 kHz) (II) intel(0): Modeline "1152x864"x85.0 119.65 1152 1224 1352 1552 864 865 868 907 -hsync +vsync (77.1 kHz) (II) intel(0): Modeline "1280x960"x60.0 102.10 1280 1360 1496 1712 960 961 964 994 -hsync +vsync (59.6 kHz) (II) intel(0): Modeline "1280x1024"x75.0 138.54 1280 1368 1504 1728 1024 1025 1028 1069 -hsync +vsync (80.2 kHz) (II) intel(0): Modeline "1600x1200"x65.0 176.23 1600 1712 1888 2176 1200 1201 1204 1246 -hsync +vsync (81.0 kHz) (II) intel(0): EDID vendor "NEC", prod id 17450 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] mapped front buffer at 0xd0800000, handle = 0xd0800000 (II) intel(0): [drm] dma control initialized, using IRQ 255 (**) Option "BaudRate" "1200" (**) Option "StopBits" "2" (**) Option "DataBits" "8" (**) Option "Parity" "None" (**) Option "Vmin" "1" (**) Option "Vtime" "0" (**) Option "FlowControl" "None" (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 AUDIT: Wed Feb 4 05:03:59 2009: 99951 X: client 25 rejected from IP 64.62.181.2 (II) AIGLX: Suspending AIGLX clients for VT switch (II) intel(0): xf86UnbindGARTMemory: unbind key 11 (II) intel(0): xf86UnbindGARTMemory: unbind key 12 (II) intel(0): xf86UnbindGARTMemory: unbind key 13 (II) intel(0): xf86UnbindGARTMemory: unbind key 14 (II) intel(0): xf86UnbindGARTMemory: unbind key 15 (II) AIGLX: Resuming AIGLX clients after VT switch (II) intel(0): xf86BindGARTMemory: bind key 11 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 12 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 13 at 0x02800000 (pgoffset 10240) (II) intel(0): xf86BindGARTMemory: bind key 14 at 0x03000000 (pgoffset 12288) (II) intel(0): xf86BindGARTMemory: bind key 15 at 0x03800000 (pgoffset 14336) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB, 0x000000003f820000 physical ) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB, 0x000000003f932000 physical ) (II) intel(0): 0x00133000-0x0015bfff: xv buffer (164 kB) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00ffffff: front buffer (5600 kB) X tiled (II) intel(0): 0x01000000-0x02067fff: exa offscreen (16800 kB) (II) intel(0): 0x02800000-0x02ffffff: back buffer (5632 kB) X tiled (II) intel(0): 0x03000000-0x037fffff: depth buffer (5632 kB) X tiled (II) intel(0): 0x03800000-0x057fffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): [drm] dma control initialized, using IRQ 255 [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. [mi] EQ overflowing. The server is probably stuck in an infinite loop. [mi] mieqEnequeue: out-of-order valuator event; dropping. -- Over the years I've come to regard you as people I've met. From adamk at voicenet.com Sat Feb 7 04:30:26 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Sat Feb 7 04:30:34 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498CE076.6080800@rawbw.com> References: <498C97EF.7060609@rawbw.com> <20090206164529.2db3e6a2@sorrow.ashke.com> <498CD997.3020800@rawbw.com> <20090206200213.7470cd16@scroll> <498CE076.6080800@rawbw.com> Message-ID: <20090207072826.53e59ffc@sorrow.ashke.com> On Fri, 06 Feb 2009 17:14:30 -0800 Yuri wrote: > Adam K Kirchhoff wrote: > > So why should those of us who benefit from Xorg 1.5.3 be sacrificed for > > those of you who need/want to stick with 1.4.*? > > > > Adam > > > > You didn't get the point. > Nobody should be sacrificed. Testing should be done and such accidents > should be prevented. > > Yuri > > > No one was sacrificed. You can get X up and running with the 'nv' driver and even upgrade the nvidia driver. Feel free to e-mail the nvidia port maintainer and ask him to update it. Adam -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From rnoland at FreeBSD.org Sat Feb 7 08:11:55 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 08:12:01 2009 Subject: astro/google-earth do not work with recent Xorg In-Reply-To: <1233906496.1746.28.camel@localhost> References: <1233906496.1746.28.camel@localhost> Message-ID: <1234023100.1562.30.camel@ferret.2hip.net> On Fri, 2009-02-06 at 10:48 +0300, Vladimir Grebenschikov wrote: > Hi > > It starts, then shows on console: > -- > unknown chip id 0x7145, can't guess. > libGL warning: 3D driver returned no fbconfigs. > libGL error: InitDriver failed > libGL error: reverting to (slow) indirect rendering > -- > > Then shows pop-up with "Google Earth can't runon your machine as it > could not access the graphics card. ..." Try setting LIBGL_ALWAYS_INDIRECT=1 It is usually required to run google-earth. robert. > Then crashes with: > > terminate called after throwing an instance of 'QString' > Google Earth has caught signal 6. > > Stacktrace from glibc: > ./googleearth-bin [0x806c3a3] > ./googleearth-bin [0x806c916] > [0xbfbfffbb] > /lib/libc.so.6(abort+0x101) [0x493d0301] > ./libstdc++.so.6(_ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x179) [0x4816a019] > ./libstdc++.so.6 [0x481679a5] > ./libstdc++.so.6 [0x481679e2] > ./libstdc++.so.6 [0x48167b4a] > ./librender.so(_ZN12RenderWidget6SetApiEPN5earth4evll3APIE+0x34e) [0x49f3b57e] > ./librender.so(_ZN5earth6render12RenderWindow12createWidgetEv+0xb2) [0x49f1cf62] > ./libgoogleearth_lib.so(_ZN5earth6client12ModuleWidget9showEventEP10QShowEvent+0x8e) [0x4931af6e] > ./libQtGui.so.4(_ZN7QWidget5eventEP6QEvent+0x7cf) [0x4851715f] > ... (full crash log attached) > > I have working openGL for FreeBSD applications (radeonhd driver, ATI X1400 card): > > $ glinfo > Xlib: extension "Generic Event Extension" missing on display ":0.0". > Xlib: extension "Generic Event Extension" missing on display ":0.0". > GL_VERSION: 1.3 Mesa 7.3 > GL_EXTENSIONS: GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_MESAX_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_gpu_program_parameters GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_c! > olor GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow_ambient GL_SUN_multi_draw_! > arrays > GL_RENDERER: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL > GL_VENDOR: DRI R300 Project > GLU_VERSION: 1.3 > GLU_EXTENSIONS: GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess > GLUT_API_VERSION: 5 > GLUT_XLIB_IMPLEMENTATION: 15 > $ > > Probably reason is in outdated X libraries: > > xorg-7.4 X.Org complete distribution metaport > xorg-apps-7.4_1 X.org apps meta-port > xorg-drivers-7.4 X.org drivers meta-port > xorg-libraries-7.4 X.org libraries meta-port > xorg-server-1.5.3_4,1 X.Org X server and related programs > dri-7.3,2 OpenGL hardware acceleration drivers for the DRI > libGL-7.3_1 OpenGL library that renders using GLX or DRI > libGLU-7.3 OpenGL utility library > ... > linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries > linux_base-f8-8_11 Base set of packages needed in Linux mode (for i386/amd64) > linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of > > ... > > Any hints will be very appreciated. > > PPS: > Also, looks like binary get lost in home on non-first start: > $ googleearth > Warning: Unable to create prefs directory '/home/vova/.googleearth'. File exists. > ... > > $ file /home/vova /home/vova/.googleearth /compat/linux/home/vova > /home/vova: directory > /home/vova/.googleearth: directory > /compat/linux/home/vova: cannot open `/compat/linux/home/vova' (No such file or directory) > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/54f3508c/attachment.pgp From ewinter at ewinter.org Sat Feb 7 08:13:29 2009 From: ewinter at ewinter.org (Ernst W. Winter) Date: Sat Feb 7 08:13:35 2009 Subject: DISPLAY Message-ID: <20090207161420.GA2340@lobo.ewinter.org> Hello, well I suppose some had this problem alrady and I have it too: Press ENTER or type command to continueXlib: extension "Generic Event Extension" missing on display ":0.0". has this been dealt with? Thanls for info. Ernst Winter From rnoland at FreeBSD.org Sat Feb 7 08:32:11 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 08:32:18 2009 Subject: xorg-server-1.5.3 or xf86-video-intel problem In-Reply-To: <20090206140905.0fea0b9c@hack4> References: <20090206140905.0fea0b9c@hack4> Message-ID: <1234024320.1562.38.camel@ferret.2hip.net> On Fri, 2009-02-06 at 14:09 +0000, Levon Kayan wrote: > hi there, > > since i have upgraded my xorg-server and xf86-video-intel driver > using "portupgrade -a", i can't use X anymore. > i'm using: ibm x41 thinkpad (graphic card: Intel Corporation Mobile > 915GM/GMS/910GML), with 7.1-RELEASE-p2. > when i start X i only get a blank screen and even i'm not able to kill > x, only hit "ctrl+alt+del" to reboot the machine. hal and dbus were > running. i loaded the drm kernel module. i also tested without hal > and dbus and followed /usr/ports/UPDATING. also, i used > both configuration types: my own /etc/X11/xorg.conf using "xorgconfig" > and my /etc/X11/xorg.conf using "X -configure". I find configs from xorgconfig very hard to read. It is also gone as of server 1.6. FWIW, I have an i915 that seems to be working ok. I'll need to see the config and log from the failed session. You could also try the 2.6.1 version of the intel driver. It is included in http://people.freebsd.org/~rnoland/xserver-1.6rc.patch Updating the server is not required, though performance may not be great in some cases. robert. > there were no error or warnings reported in /var/log/Xorg.0.log. > currently i'm using the vesa driver to use X, which is in fact a cramp. > what is the problem? how can i solve this? > > here is my current xorg.conf: > > Section "Module" > > # This loads the DBE extension module. > > Load "dbe" # Double buffer extension > > # This loads the miscellaneous extensions module, and disables > # initialisation of the XFree86-DGA extension within that module. > SubSection "extmod" > Option "omit xfree86-dga" # don't initialise the DGA > extension EndSubSection > > # This loads the font modules > # Load "type1" > Load "freetype" > # Load "xtt" > > # This loads the GLX module > Load "glx" > # This loads the DRI module > Load "dri" > > EndSection > > # ********************************************************************** > # Files section. This allows default font and rgb paths to be set > # ********************************************************************** > > Section "Files" > > # Multiple FontPath entries are allowed (which are concatenated > together), # as well as specifying multiple comma-separated entries in > one FontPath # command (or a combination of both methods) > # > > FontPath "/usr/local/lib/X11/fonts/misc/" > FontPath "/usr/local/lib/X11/fonts/TTF/" > FontPath "/usr/local/lib/X11/fonts/OTF" > FontPath "/usr/local/lib/X11/fonts/Type1/" > FontPath "/usr/local/lib/X11/fonts/100dpi/" > FontPath "/usr/local/lib/X11/fonts/75dpi/" > FontPath "/usr/local/lib/X11/fonts/local/" > # FontPath "/usr/local/lib/X11/fonts/TrueType/" > # FontPath "/usr/local/lib/X11/fonts/freefont/" > > # The module search path. The default path is shown here. > > # ModulePath "/usr/local/lib/modules" > > EndSection > > Section "ServerFlags" > > # Uncomment this to cause a core dump at the spot where a signal is > # received. This may leave the console in an unusable state, but may > # provide a better stack trace in the core dump to aid in debugging > > # Option "NoTrapSignals" > > # Uncomment this to disable the VT switch sequence > # (where n is 1 through 12). This allows clients to receive these key > # events. > > # Option "DontVTSwitch" > > # Uncomment this to disable the server abort sequence > # This allows clients to receive this key event. > > # Option "DontZap" > > # Uncomment this to disable the / mode switching > # sequences. This allows clients to receive these key events. > > # Option "Dont Zoom" > > # Uncomment this to disable tuning with the xvidtune client. With > # it the client can still run and fetch card and monitor attributes, > # but it will not be allowed to change them. If it tries it will > # receive a protocol error. > > # Option "DisableVidModeExtension" > > # Uncomment this to enable the use of a non-local xvidtune client. > > # Option "AllowNonLocalXvidtune" > > # Uncomment this to disable dynamically modifying the input device > # (mouse and keyboard) settings. > > # Option "DisableModInDev" > > # Uncomment this to enable the use of a non-local client to > # change the keyboard or mouse settings (currently only xset). > > # Option "AllowNonLocalModInDev" > > EndSection > > Section "InputDevice" > > Identifier "Keyboard1" > Driver "kbd" > > Option "AutoRepeat" "500 30" > > # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) > # Option "Xleds" "1 2 3" > > # Option "LeftAlt" "Meta" > # Option "RightAlt" "ModeShift" > > # To customise the XKB settings to suit your keyboard, modify the > # lines below (which are the defaults). For example, for a non-U.S. > # keyboard, you will probably want to use: > # Option "XkbModel" "pc105" > # If you have a US Microsoft Natural keyboard, you can use: > # Option "XkbModel" "microsoft" > # > # Then to change the language, change the Layout setting. > # For example, a german layout can be obtained with: > # Option "XkbLayout" "de" > # or: > # Option "XkbLayout" "de" > # Option "XkbVariant" "nodeadkeys" > # > # If you'd like to switch the positions of your capslock and > # control keys, use: > # Option "XkbOptions" "ctrl:swapcaps" > > # These are the default XKB settings for Xorg > # Option "XkbRules" "xorg" > # Option "XkbModel" "pc105" > # Option "XkbLayout" "us" > # Option "XkbVariant" "" > # Option "XkbOptions" "" > > # Option "XkbDisable" > > Option "XkbRules" "xorg" > Option "XkbModel" "pc105" > Option "XkbLayout" "de" > Option "XkbVariant" "de" > > EndSection > > Section "InputDevice" > > # Identifier and driver > > Identifier "Mouse1" > Driver "mouse" > Option "Protocol" "Auto" # Auto detect > Option "Device" "/dev/sysmouse" > > # Mouse-speed setting for PS/2 mouse. > > # Option "Resolution" "256" > > # Baudrate and SampleRate are only for some Logitech mice. In > # almost every case these lines should be omitted. > > # Option "BaudRate" "9600" > # Option "SampleRate" "150" > > # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & > 5, # horizontal wheel to buttons 6 & 7. Change if your mouse has more > than # 3 buttons and you need to map the wheel to different button ids > to avoid # conflicts. > > Option "ZAxisMapping" "4 5 6 7" > > # Emulate3Buttons is an option for 2-button mice > # Emulate3Timeout is the timeout in milliseconds (default is 50ms) > > Option "Emulate3Buttons" > # Option "Emulate3Timeout" "50" > > # ChordMiddle is an option for some 3-button Logitech mice > > # Option "ChordMiddle" > > EndSection > > Section "Monitor" > > Identifier "monitor" > > # HorizSync is in kHz unless units are specified. > # HorizSync may be a comma separated list of discrete values, or a > # comma separated list of ranges of values. > # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S > # USER MANUAL FOR THE CORRECT NUMBERS. > > HorizSync 31.5 - 57.0 > > # HorizSync 30-64 # multisync > # HorizSync 31.5, 35.2 # multiple fixed sync frequencies > # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies > > # VertRefresh is in Hz unless units are specified. > # VertRefresh may be a comma separated list of discrete values, or a > # comma separated list of ranges of values. > # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S > # USER MANUAL FOR THE CORRECT NUMBERS. > > VertRefresh 50-100 > > EndSection > > > # ********************************************************************** > # Graphics device section > # ********************************************************************** > > # Any number of graphics device sections may be present > > # Standard VGA Device: > > Section "Device" > Identifier "Standard VGA" > VendorName "Unknown" > BoardName "Unknown" > > # The chipset line is optional in most cases. It can be used to > override # the driver's chipset detection, and should not normally be > specified. > > # Chipset "generic" > > # The Driver line must be present. When using run-time loadable driver > # modules, this line instructs the server to load the specified driver > # module. Even when not using loadable driver modules, this line > # indicates which driver should interpret the information in this > section. > > > Driver "vga" > # The BusID line is used to specify which of possibly multiple devices > # this section is intended for. When this line isn't present, a device > # section can only match up with the primary video device. For PCI > # devices a line like the following could be used. This line should not > # normally be included unless there is more than one video device > # intalled. > > # BusID "PCI:0:10:0" > > # VideoRam 256 > > # Clocks 25.2 28.3 > > EndSection > > # Device configured by xorgconfig: > > Section "Device" > Identifier "videocard" > Driver "vesa" > #VideoRam 131072 > # Insert Clocks lines here if appropriate > EndSection > > > # ********************************************************************** > # Screen sections > # ********************************************************************** > > # Any number of screen sections may be present. Each describes > # the configuration of a single screen. A single specific screen > section # may be specified from the X server command line with the > "-screen" # option. > Section "Screen" > Identifier "Screen 1" > Device "videocard" > Monitor "monitor" > DefaultDepth 24 > > Subsection "Display" > Depth 8 > Modes "1024x768" > ViewPort 0 0 > EndSubsection > Subsection "Display" > Depth 16 > Modes "1024x768" > ViewPort 0 0 > EndSubsection > Subsection "Display" > Depth 24 > Modes "1024x768" > ViewPort 0 0 > EndSubsection > EndSection > > # ********************************************************************** > # ServerLayout sections. > # ********************************************************************** > > # Any number of ServerLayout sections may be present. Each describes > # the way multiple screens are organised. A specific ServerLayout > # section may be specified from the X server command line with the > # "-layout" option. In the absence of this, the first section is used. > # When now ServerLayout section is present, the first Screen section > # is used alone. > > Section "ServerLayout" > > # The Identifier line must be present > Identifier "Simple Layout" > > # Each Screen line specifies a Screen section name, and optionally > # the relative position of other screens. The four names after > # primary screen name are the screens to the top, bottom, left and right > # of the primary screen. In this example, screen 2 is located to the > # right of screen 1. > > Screen "Screen 1" > > # Each InputDevice line specifies an InputDevice section name and > # optionally some options to specify the way the device is to be > # used. Those options include "CorePointer", "CoreKeyboard" and > # "SendCoreEvents". > > InputDevice "Mouse1" "CorePointer" > InputDevice "Keyboard1" "CoreKeyboard" > > EndSection > > # Section "DRI" > # Mode 0666 > # EndSection > > > > regards, > levon -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/cdfb3bf9/attachment.pgp From rnoland at FreeBSD.org Sat Feb 7 08:46:54 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 08:47:01 2009 Subject: xorg-server-1.5.3 doesn; t work with nvidia driver: Undefined symbol "miZeroLineScreenIndex" In-Reply-To: <498C97EF.7060609@rawbw.com> References: <498C97EF.7060609@rawbw.com> Message-ID: <1234025204.1562.42.camel@ferret.2hip.net> On Fri, 2009-02-06 at 12:05 -0800, Yuri wrote: > I upgraded my 71-PRERELEASE system and couldn't start xserver any more > (see log below). > > googling this problem I found that many people had the same issue > without the clear solution. > "NVidia has to fix it's driver" is the solution, > > This is the major stability breach. > > There is really no reason to upgrade xorg-server to 1.5.3 if nvidia > driver can't work with it since nvidia is the major card provider and > maybe half of all systems run nvidia. This assumption is totally bogus. > I believe xorg should be downgraded back to 1.4.X until the issue with > NVidia driver is resolved. You can use the nv driver. Xorg can't wait on Nvidia to decide to play nice. Other major vendors are supporting open source and their drivers work. robert. > Yuri > > > --- error log --- > Current Operating System: FreeBSD xxx.xxx.xxx 7.1-PRERELEASE FreeBSD > 7.1-PRERELEASE #6: Sun Dec 21 13:41:31 PST 2008 > yuri@xxx.xxx:/usr/obj/usr/src/sys/GENERIC i386 > Build Date: 05 February 2009 12:07:33PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 6 10:28:43 2009 > (==) Using config file: "/etc/X11/xorg.conf" > (EE) Failed to load module "type1" (module does not exist, 0) > dlopen: /usr/local/lib/xorg/modules//libwfb.so: Undefined symbol > "miZeroLineScre > enIndex" > (EE) Failed to load /usr/local/lib/xorg/modules//libwfb.so > (EE) Failed to load module "wfb" (loader failed, 7) > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/2624cfdb/attachment.pgp From rnoland at FreeBSD.org Sat Feb 7 09:03:15 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 09:03:23 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.072411.71183618.chat95@mac.com> References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> Message-ID: <1234026184.1562.47.camel@ferret.2hip.net> On Sat, 2009-02-07 at 07:24 +0900, Maho NAKATA wrote: > Hi, > it seems DRI is not working on i386, RADEON X1650 FreBSD 7-stable, Xorg 7.4 > > 1. if we enable DRI, screen is garbled. > 2. without DRI, works, it works, and no problem. > 3. I have DRM loaded at /boot/loader.conf > drm0: on vgapci0 > info: [drm] Initialized radeon 1.29.0 20080613 Please make sure that your -STABLE is up to date. The garbled screen should be resolved with the new drm code. If you are up to date. (your xserver at least was built against the old kernel), try rebuilding graphics/libdrm. robert. > Here is the links to the Xorg.0.logs and xorg.conf > * http://people.freebsd.org/~maho/xorg/Xorg.0.log.i386.X1650.DRI.failed > * http://people.freebsd.org/~mah/xorg/xorg.conf.i386.X1650.DRI.failed > DRI has been enabled, and garbled. > > * http://people.freebsd.org/~maho/xorg/Xorg.0.log.i386.X1650.noDRI > * http://people.freebsd.org/~mah/xorg/xorg.conf.i386.X1650.noDRI > DIR has been disabled, and works, but no compiz > > http://blog.livedoor.jp/maho_nakata/archives/51115172.html > > Helps are really appreciated! > thanks! > -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/7e22a19c/attachment.pgp From rnoland at FreeBSD.org Sat Feb 7 09:06:26 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 09:06:37 2009 Subject: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.071848.193785503.chat95@mac.com> References: <20090207.071848.193785503.chat95@mac.com> Message-ID: <1234026376.1562.49.camel@ferret.2hip.net> On Sat, 2009-02-07 at 07:18 +0900, Maho NAKATA wrote: > Hi all, > thanks kudos! > http://blog.livedoor.jp/maho_nakata/archives/51115172.html > > ---------------------------------------------------------------- > Note: it won't work with i386. Please let me know if it works for you. > > 1. Update to 7-stable (both kernel and userland) > > As drm information for RADEON X1650 (etc) are not updated, in the 7.1-RELEASE, first, update the kernel and userland to later than SVN rev 187021 (2009/1/10) version. > > 2. load radeon module at the boot time. > add following in /boot/loader.conf > radeon_load="YES" > make sure that radeon drm is activated at the boot time. > $ dmesg | grep radeon > info: [drm] Initialized radeon 1.29.0 20080613 X will autoload drm, so this is not usually needed. > 3. patch /etc/X11/xorg.conf > --- xorg.conf 2009-02-03 19:28:25.000000000 +0900 > +++ xorg.conf 2009-02-05 15:55:41.000000000 +0900 > @@ -3,6 +3,7 @@ > Screen 0 "Screen0" 0 0 > InputDevice "Mouse0" "CorePointer" > InputDevice "Keyboard0" "CoreKeyboard" > + Option "AIGLX" "true" > EndSection > > Section "Files" > ---------------------------------- > In my case hald somehow doesn't work well, so I added > > Option "AllowEmptyInput" "false" > as well. > > 4. install compiz > portinstall x11-wm/compiz-fusion > portinstall x11-wm/emerald > > 5. start compiz+emerald by: > $ LIBGL_ALWAYS_INDIRECT=1 compiz --replace ccp & > $ emerald --replace & > ---------------------------------------------------------------- > Best, > -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/2bbf3043/attachment.pgp From peter at vk2pj.dyndns.org Sat Feb 7 13:13:26 2009 From: peter at vk2pj.dyndns.org (Peter Jeremy) Date: Sat Feb 7 13:13:34 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <1233467909.1534.24.camel@ferret.2hip.net> References: <1233456742.1534.14.camel@ferret.2hip.net> <1233467909.1534.24.camel@ferret.2hip.net> Message-ID: <20090207203039.GA9969@test71.vk2pj.dyndns.org> On Sat, 2009-01-31 at 21:52 -0500, Robert Noland wrote: > Ok, I'm expecting Xserver 1.6 final to release sometime on Monday. I'm > planning to commit this sometime next week. This patch includes the > following Xserver 1.6rc2, randrproto rc, libXrandr rc, xrandr rc, and > the 2.6.1 release of the intel driver. I notice that this timeline hasn't eventuated. Given the ongoing problems with the X.org 7.4 upgrade, could you please release the patch you intend to commit and wait for people to test it before committing it. It is much easier to undo an uncommitted patch than try to roll back the ports tree. >> The patch is http://people.freebsd.org/~rnoland/xserver-1.6rc.patch > >I also failed to update my cvs on a couple of them when importing from >git... So I have respun the patch, should apply cleanly now. This patch has two failures against the current ports tree: |Index: x11-servers/xorg-server/Makefile |=================================================================== |RCS file: /home/ncvs/ports/x11-servers/xorg-server/Makefile,v |retrieving revision 1.64 |diff -u -r1.64 Makefile |--- x11-servers/xorg-server/Makefile 27 Jan 2009 09:31:22 -0000 1.64 |+++ x11-servers/xorg-server/Makefile 1 Feb 2009 05:47:52 -0000 -------------------------- Patching file x11-servers/xorg-server/Makefile using Plan A... Hunk #1 failed at 6. Hunk #2 succeeded at 36. 1 out of 2 hunks failed--saving rejects to x11-servers/xorg-server/Makefile.rej ... |Index: x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c |=================================================================== |RCS file: x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c |diff -N x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c |--- x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c 15 Apr 2008 18:01:15 -0000 1.2 |+++ /dev/null 1 Jan 1970 00:00:00 -0000 -------------------------- Patching file x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c using Plan A... Hunk #1 failed at 0. 1 out of 1 hunks failed--saving rejects to x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c.rej The patch to Makefile is just a PORTREVISION mismatch and easy to fix. The bsd_mouse.c patch is more problematic. Your patch is intented to completely remove the patch file but you have since updated the patchfile to fix problems with multiple mouse opens and it's not clear whether those changes are still required. -- Peter Jeremy -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090207/368dc659/attachment.pgp From vova at fbsd.ru Sat Feb 7 13:57:52 2009 From: vova at fbsd.ru (Vladimir Grebenschikov) Date: Sat Feb 7 13:57:59 2009 Subject: astro/google-earth do not work with recent Xorg In-Reply-To: <1234023100.1562.30.camel@ferret.2hip.net> References: <1233906496.1746.28.camel@localhost> <1234023100.1562.30.camel@ferret.2hip.net> Message-ID: <1234043859.3298.44.camel@localhost> On Sat, 2009-02-07 at 11:11 -0500, Robert Noland wrote: > On Fri, 2009-02-06 at 10:48 +0300, Vladimir Grebenschikov wrote: > > Hi > > > > It starts, then shows on console: > > -- > > unknown chip id 0x7145, can't guess. > > libGL warning: 3D driver returned no fbconfigs. > > libGL error: InitDriver failed > > libGL error: reverting to (slow) indirect rendering > > -- > > > > Then shows pop-up with "Google Earth can't runon your machine as it > > could not access the graphics card. ..." > > Try setting LIBGL_ALWAYS_INDIRECT=1 > > It is usually required to run google-earth. Unfortunately, it does not helps, everything the same. > robert. > > > Then crashes with: > > > > terminate called after throwing an instance of 'QString' > > Google Earth has caught signal 6. > > > > Stacktrace from glibc: > > ./googleearth-bin [0x806c3a3] > > ./googleearth-bin [0x806c916] > > [0xbfbfffbb] > > /lib/libc.so.6(abort+0x101) [0x493d0301] > > ./libstdc++.so.6(_ZN9__gnu_cxx27__verbose_terminate_handlerEv+0x179) [0x4816a019] > > ./libstdc++.so.6 [0x481679a5] > > ./libstdc++.so.6 [0x481679e2] > > ./libstdc++.so.6 [0x48167b4a] > > ./librender.so(_ZN12RenderWidget6SetApiEPN5earth4evll3APIE+0x34e) [0x49f3b57e] > > ./librender.so(_ZN5earth6render12RenderWindow12createWidgetEv+0xb2) [0x49f1cf62] > > ./libgoogleearth_lib.so(_ZN5earth6client12ModuleWidget9showEventEP10QShowEvent+0x8e) [0x4931af6e] > > ./libQtGui.so.4(_ZN7QWidget5eventEP6QEvent+0x7cf) [0x4851715f] > > ... (full crash log attached) > > > > I have working openGL for FreeBSD applications (radeonhd driver, ATI X1400 card): > > > > $ glinfo > > Xlib: extension "Generic Event Extension" missing on display ":0.0". > > Xlib: extension "Generic Event Extension" missing on display ":0.0". > > GL_VERSION: 1.3 Mesa 7.3 > > GL_EXTENSIONS: GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_MESAX_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_logic_op GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_gpu_program_parameters GL_EXT_histogram GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_seconda! ry_c! > > olor GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_NV_vertex_program GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow_ambient GL_SUN_multi_d! raw_! > > arrays > > GL_RENDERER: Mesa DRI R300 20060815 x86/MMX/SSE2 TCL > > GL_VENDOR: DRI R300 Project > > GLU_VERSION: 1.3 > > GLU_EXTENSIONS: GLU_EXT_nurbs_tessellator GLU_EXT_object_space_tess > > GLUT_API_VERSION: 5 > > GLUT_XLIB_IMPLEMENTATION: 15 > > $ > > > > Probably reason is in outdated X libraries: > > > > xorg-7.4 X.Org complete distribution metaport > > xorg-apps-7.4_1 X.org apps meta-port > > xorg-drivers-7.4 X.org drivers meta-port > > xorg-libraries-7.4 X.org libraries meta-port > > xorg-server-1.5.3_4,1 X.Org X server and related programs > > dri-7.3,2 OpenGL hardware acceleration drivers for the DRI > > libGL-7.3_1 OpenGL library that renders using GLX or DRI > > libGLU-7.3 OpenGL utility library > > ... > > linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries > > linux_base-f8-8_11 Base set of packages needed in Linux mode (for i386/amd64) > > linux_dri-7.0 Binary Linux DRI libraries for 3D hardware acceleration of > > > > ... > > > > Any hints will be very appreciated. > > > > PPS: > > Also, looks like binary get lost in home on non-first start: > > $ googleearth > > Warning: Unable to create prefs directory '/home/vova/.googleearth'. File exists. > > ... > > > > $ file /home/vova /home/vova/.googleearth /compat/linux/home/vova > > /home/vova: directory > > /home/vova/.googleearth: directory > > /compat/linux/home/vova: cannot open `/compat/linux/home/vova' (No such file or directory) > > > > _______________________________________________ > > freebsd-x11@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Vladimir B. Grebenschikov vova@fbsd.ru From saper at system.pl Sat Feb 7 16:04:41 2009 From: saper at system.pl (Marcin Cieslak) Date: Sat Feb 7 16:04:48 2009 Subject: DISPLAY In-Reply-To: <20090207161420.GA2340@lobo.ewinter.org> References: <20090207161420.GA2340@lobo.ewinter.org> Message-ID: <498E2186.9060309@system.pl> Ernst W. Winter wrote: > Hello, > > well I suppose some had this problem alrady and I have it too: > > Press ENTER or type command to continueXlib: extension "Generic > Event Extension" missing on display ":0.0". > > has this been dealt with? Please ignore this message, see the archives. --Marcin From nakaji at jp.freebsd.org Sat Feb 7 16:52:16 2009 From: nakaji at jp.freebsd.org (NAKAJI Hiroyuki) Date: Sat Feb 7 16:52:23 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <1234026184.1562.47.camel@ferret.2hip.net> (Robert Noland's message of "Sat, 07 Feb 2009 12:03:04 -0500") References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> <1234026184.1562.47.camel@ferret.2hip.net> Message-ID: <86iqnlss4b.fsf@ra333.heimat.gr.jp> >>>>> In <1234026184.1562.47.camel@ferret.2hip.net> >>>>> Robert Noland wrote: > On Sat, 2009-02-07 at 07:24 +0900, Maho NAKATA wrote: > > it seems DRI is not working on i386, RADEON X1650 FreBSD 7-stable, Xorg 7.4 > > > > 1. if we enable DRI, screen is garbled. > > 2. without DRI, works, it works, and no problem. > > 3. I have DRM loaded at /boot/loader.conf > > drm0: on vgapci0 > > info: [drm] Initialized radeon 1.29.0 20080613 > Please make sure that your -STABLE is up to date. The garbled screen > should be resolved with the new drm code. If you are up to date. (your > xserver at least was built against the old kernel), try rebuilding > graphics/libdrm. Robert, I'd like to make a summary about "How to update xorg". Is it right in general? 0. prepare to accept any troubles 1. update /usr/src and /usr/ports tree to the latest -STABLE or -CURRENT 2. build and install the latest kernel, and reboot 3. update xorg and related all packages using portupdate or portmaster 4. update /etc/X11/xorg.conf 5. enjoy the new xorg world And then, I have some questions. 2. Do we need to update the userland, too? 3. If using portupgrade, is "portupgrade -af" better than "portupgrade -rf xorg"? Thanks. -- NAKAJI Hiroyuki From subscr1024 at mail.ru Sat Feb 7 19:22:08 2009 From: subscr1024 at mail.ru (Subscriber) Date: Sat Feb 7 19:22:14 2009 Subject: bluetooth not worked after upgrade to xorg 7.4 Message-ID: <498E4ED9.7010903@mail.ru> I'm not sure about proper mail list... After update xorg my bluetooth mouse (Logitech v470) won't work in graphic mode. Just after boot up, when in console, mouse work as expected, but after typing 'startx\n' I can use only built-in touchpad. However randomly (with probability, say, 1/10) it work in graphic mode too - until next reboot. If mouse not work, I tried to restart hcsecd and bthidd, bring mouse visible via 'connect' button. All this actions seems no effect in graphic mode. -- Best regards. From rnoland at FreeBSD.org Sat Feb 7 21:46:34 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sat Feb 7 21:46:41 2009 Subject: [HEADS UP/CFT] Xserver 1.6 + randr + intel In-Reply-To: <20090207203039.GA9969@test71.vk2pj.dyndns.org> References: <1233456742.1534.14.camel@ferret.2hip.net> <1233467909.1534.24.camel@ferret.2hip.net> <20090207203039.GA9969@test71.vk2pj.dyndns.org> Message-ID: <1234071983.1562.54.camel@ferret.2hip.net> On Sun, 2009-02-08 at 07:30 +1100, Peter Jeremy wrote: > On Sat, 2009-01-31 at 21:52 -0500, Robert Noland wrote: > > Ok, I'm expecting Xserver 1.6 final to release sometime on Monday. I'm > > planning to commit this sometime next week. This patch includes the > > following Xserver 1.6rc2, randrproto rc, libXrandr rc, xrandr rc, and > > the 2.6.1 release of the intel driver. > > I notice that this timeline hasn't eventuated. Given the ongoing > problems with the X.org 7.4 upgrade, could you please release the > patch you intend to commit and wait for people to test it before > committing it. It is much easier to undo an uncommitted patch than > try to roll back the ports tree. > > >> The patch is http://people.freebsd.org/~rnoland/xserver-1.6rc.patch > > > >I also failed to update my cvs on a couple of them when importing from > >git... So I have respun the patch, should apply cleanly now. > > This patch has two failures against the current ports tree: > > |Index: x11-servers/xorg-server/Makefile > |=================================================================== > |RCS file: /home/ncvs/ports/x11-servers/xorg-server/Makefile,v > |retrieving revision 1.64 > |diff -u -r1.64 Makefile > |--- x11-servers/xorg-server/Makefile 27 Jan 2009 09:31:22 -0000 1.64 > |+++ x11-servers/xorg-server/Makefile 1 Feb 2009 05:47:52 -0000 > -------------------------- > Patching file x11-servers/xorg-server/Makefile using Plan A... > Hunk #1 failed at 6. > Hunk #2 succeeded at 36. > 1 out of 2 hunks failed--saving rejects to x11-servers/xorg-server/Makefile.rej > ... > |Index: x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c > |=================================================================== > |RCS file: x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c > |diff -N x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c > |--- x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c 15 Apr 2008 18:01:15 -0000 1.2 > |+++ /dev/null 1 Jan 1970 00:00:00 -0000 > -------------------------- > Patching file x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c using Plan A... > Hunk #1 failed at 0. > 1 out of 1 hunks failed--saving rejects to x11-servers/xorg-server/files/patch-Xserver-hw-xfree86-os-support-bsd-bsd_mouse.c.rej > > The patch to Makefile is just a PORTREVISION mismatch and easy to fix. > The bsd_mouse.c patch is more problematic. Your patch is intented to > completely remove the patch file but you have since updated the patchfile > to fix problems with multiple mouse opens and it's not clear whether > those changes are still required. I'll respin the patch, but the os-support has been removed from the server in 1.6. It now lives in the mouse driver itself, so that patch is just entirely removed. robert. > -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090208/17645c78/attachment.pgp From wsk at gddsn.org.cn Sat Feb 7 22:14:08 2009 From: wsk at gddsn.org.cn (wsk) Date: Sat Feb 7 22:14:17 2009 Subject: Xorg 7.4 eat 100% CPU with nv driver on 7.1 STABLE Message-ID: <498CE63C.3040008@gddsn.org.cn> list help: X eat 100% CPU with xf86-videio-nv2.1.12 driver with no error mesgs and cause screen blanking, ctrl+alt+backspace not useful .keyboard seams worknormally and can access via ssh to see X eat high 90% CPU. my videio card is Nvidia NVS 140M and attach my Xorg.conf and Xorg.0.log -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #20: Wed Feb 4 22:33:58 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 7 09:08:58 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path built-ins. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/TrueType/, /usr/local/lib/X11/fonts/bitstream-vera/, /usr/local/lib/X11/fonts/cyrillic/, /usr/local/lib/X11/fonts/encodings/, /usr/local/lib/X11/fonts/util/, /usr/local/share/fonts/amspsfont/type1/, /usr/local/share/fonts/cmpsfont/type1/, built-ins (**) ModulePath set to "/usr/local/lib/xorg/modules" (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. (WW) Disabling Mouse0 (WW) Disabling Keyboard0 (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "xtrap" (WW) Warning, couldn't open module xtrap (II) UnloadModule: "xtrap" (EE) Failed to load module "xtrap" (module does not exist, 0) (II) LoadModule: "freetype" (WW) Warning, couldn't open module freetype (II) UnloadModule: "freetype" (EE) Failed to load module "freetype" (module does not exist, 0) (II) LoadModule: "nv" (II) Loading /usr/local/lib/xorg/modules/drivers//nv_drv.so (II) Module nv: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 2.1.12 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2, Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64, Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400, GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go, GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra, Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420, GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go, GeForce4 420 Go 32M, GeForce4 460 Go, Quadro4 550 XGL, GeForce4 440 Go 64M, Quadro NVS, Quadro4 500 GoGL, GeForce4 410 Go 16M, GeForce4 MX 440 with AGP8X, GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X, GeForce4 MX 4000, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL, Quadro4 NVS 280 SD, Quadro4 380 XGL, Quadro NVS 50 PCI, GeForce4 448 Go, GeForce4 MX Integrated GPU, GeForce3, GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600, GeForce4 Ti 4400, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL, Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X, GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL, Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra, GeForce FX 5800, Quadro FX 2000, Quadro FX 1000, GeForce FX 5600 Ultra, GeForce FX 5600, GeForce FX 5600XT, GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700, GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200, GeForce FX 5200LE, GeForce FX Go5200, GeForce FX Go5250, GeForce FX 5500, GeForce FX 5100, GeForce FX Go5200 32M/64M, Quadro NVS 55/280 PCI, Quadro FX 500/600 PCI, GeForce FX Go53xx Series, GeForce FX Go5100, GeForce FX 5900 Ultra, GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra, GeForce FX 5900ZT, Quadro FX 3000, Quadro FX 700, GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE, GeForce FX 5700VE, GeForce FX Go5700, GeForce FX Go5700, Quadro FX Go1000, Quadro FX 1100, GeForce 6800 Ultra, GeForce 6800, GeForce 6800 LE, GeForce 6800 XE, GeForce 6800 XT, GeForce 6800 GT, GeForce 6800 GT, GeForce 6800 GS, GeForce 6800 XT, Quadro FX 4000, GeForce 6800 GS, GeForce 6800, GeForce 6800 LE, GeForce 6800 XT, GeForce Go 6800, GeForce Go 6800 Ultra, Quadro FX Go1400, Quadro FX 3450/4000 SDI, Quadro FX 1400, GeForce 6600 GT, GeForce 6600, GeForce 6600 LE, GeForce 6600 VE, GeForce Go 6600, GeForce 6610 XL, GeForce Go 6600 TE/6200 TE, GeForce 6700 XL, GeForce Go 6600, GeForce Go 6600 GT, Quadro FX 550, Quadro FX 550, Quadro FX 540, GeForce 6200, GeForce 6500, GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM), GeForce 6200 LE, GeForce Go 6200, Quadro NVS 285, GeForce Go 6400, GeForce Go 6200, GeForce Go 6400, GeForce 6250, GeForce 6800, GeForce 6800 LE, GeForce 6800 GT, GeForce 6800 XT, GeForce 6200, GeForce 6200 A-LE, GeForce 7800 GTX, GeForce 7800 GTX, GeForce 7800 GT, GeForce 7800 GS, GeForce 7800 SLI, GeForce Go 7800, GeForce Go 7800 GTX, Quadro FX 4500, GeForce 7300 LE, GeForce 7300 SE, GeForce Go 7200, GeForce Go 7300, GeForce Go 7400, GeForce Go 7400 GS, Quadro NVS 110M, Quadro NVS 120M, Quadro FX 350M, GeForce 7500 LE, Quadro FX 350, GeForce 7300 GS, GeForce 7600 GT, GeForce 7600 GS, GeForce 7300 GT, GeForce 7600 LE, GeForce 7300 GT, GeForce Go 7700, GeForce Go 7600, GeForce Go 7600 GT, Quadro NVS 300M, GeForce Go 7900 SE, Quadro FX 550M, Quadro FX 560, GeForce 7900 GTX, GeForce 7900 GT, GeForce 7900 GS, GeForce Go 7900 GS, GeForce Go 7900 GTX, Quadro FX 2500M, Quadro FX 1500M, Quadro FX 5500, Quadro FX 3500, Quadro FX 1500, Quadro FX 4500 X2, GeForce 6150, GeForce 6150 LE, GeForce 6100, GeForce Go 6150, GeForce Go 6100, GeForce 8800 GTX, GeForce 8800 GTS, GeForce 8800 Ultra, Quadro FX 5600, Quadro FX 4600, GeForce 8600 GTS, GeForce 8600 GT, GeForce 8600 GT, GeForce 8600 GS, GeForce 8400 GS, GeForce 9500M GS, GeForce 8600M GT, GeForce 9650M GS, GeForce 8700M GT, Quadro FX 370, Quadro NVS 320M, Quadro FX 570M, Quadro FX 1600M, Quadro FX 570, Quadro FX 1700, GeForce 8400 SE, GeForce 8500 GT, GeForce 8400 GS, GeForce 8300 GS, GeForce 8400 GS, GeForce 8600M GS, GeForce 8400M GT, GeForce 8400M GS, GeForce 8400M G, Quadro NVS 140M, Quadro NVS 130M, Quadro NVS 135M, GeForce 9400 GT, Quadro FX 360M, GeForce 9300M G, Quadro NVS 290, GeForce GTX 280, GeForce GTX 260, GeForce 8800 GTS 512, GeForce 8800 GT, GeForce 9800 GX2, GeForce 8800 GS, GeForce 8800M GTS, GeForce 8800M GTX, GeForce 8800 GS, GeForce 9600 GSO, GeForce 8800 GT, GeForce 9800 GTX, GeForce 9800 GTK+, GeForce 9800 GT, Quadro FX 3700, Quadro FX 3600M, GeForce 9600 GT, GeForce 9600 GS, GeForce 9800M GTS, GeForce 9700M GTS, GeForce 9800M GTS, GeForce 9500 GT, GeForce 9600M GT, GeForce 9600M GS, GeForce 9600M GT, GeForce 9500M G, GeForce 9300 GS, GeForce 8400 GS, GeForce 9300M GS, GeForce 9200M GS, GeForce 9300M GS, Quadro NVS 150M, Quadro NVS 160M (II) Primary Device is: PCI 01@00:00:0 (--) NV: Found NVIDIA Quadro NVS 140M at 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NV(0): Initializing int10 (==) NV(0): Write-combining range (0xa0000,0x20000) was already clear (==) NV(0): Write-combining range (0xc0000,0x40000) was already clear (II) NV(0): Primary V_BIOS segment is: 0xc000 (==) NV(0): Write-combining range (0x0,0x1000) was already clear (--) NV(0): Console is VGA mode 0x3 (**) NV(0): Depth 24, (--) framebuffer bpp 32 (==) NV(0): RGB weight 888 (==) NV(0): Default visual is TrueColor (==) NV(0): Using hardware cursor (==) NV(0): Using gamma correction (1.0, 1.0, 1.0) (II) NV(0): MMIO registers mapped at 0x802700000 (--) NV(0): Total video RAM: 256.0 MB (--) NV(0): BAR1 size: 256.0 MB (--) NV(0): Mapped memory: 255.0 MB (II) NV(0): Linear framebuffer mapped at 0x803700000 (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (--) NV(0): Connector map: (--) NV(0): Bus 3 -> SOR0 (LVDS) (--) NV(0): Bus 0 -> DAC1 (--) NV(0): Bus 1 -> SOR1 (--) NV(0): Load detection: 279 (II) NV(0): I2C bus "I2C0" initialized. (II) NV(0): Output VGA1 using monitor section Monitor0 (II) NV(0): I2C bus "I2C1" initialized. (II) NV(0): Output DVI1 has no monitor section (II) NV(0): LVDS native size 1920x1200 (II) NV(0): Output LVDS has no monitor section (II) NV(0): I2C bus "I2C3 (LVDS)" initialized. (II) NV(0): Probing for EDID on I2C bus 0... (II) NV(0): I2C device "I2C0:E-EDID segment register" registered at address 0x60. (II) NV(0): I2C device "I2C0:ddc2" registered at address 0xA0. (II) NV(0): ... none found (--) NV(0): Trying load detection on VGA1 ... nothing. (II) NV(0): Probing for EDID on I2C bus 1... (II) NV(0): I2C device "I2C1:E-EDID segment register" registered at address 0x60. (II) NV(0): I2C device "I2C1:ddc2" registered at address 0xA0. (II) NV(0): ... none found (II) NV(0): Probing for EDID on I2C bus 3... (II) NV(0): I2C device "I2C3 (LVDS):E-EDID segment register" registered at address 0x60. (II) NV(0): I2C device "I2C3 (LVDS):ddc2" registered at address 0xA0. (--) NV(0): DDC detected a DFP: (II) NV(0): Manufacturer: SEC Model: 3255 Serial#: 0 (II) NV(0): Year: 2007 Week: 0 (II) NV(0): EDID Version: 1.3 (II) NV(0): Digital Display Input (II) NV(0): Max Image Size [cm]: horiz.: 33 vert.: 21 (II) NV(0): Gamma: 2.20 (II) NV(0): No DPMS capabilities specified (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) NV(0): First detailed timing is preferred mode (II) NV(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550 (II) NV(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329 (II) NV(0): Manufacturer's mask: 0 (II) NV(0): Supported additional Video Mode: (II) NV(0): clock: 167.8 MHz Image Size: 331 x 207 mm (II) NV(0): h_active: 1920 h_sync: 2020 h_sync_end 2052 h_blank_end 2264 h_border: 0 (II) NV(0): v_active: 1200 v_sync: 1202 v_sync_end 1208 v_blanking: 1235 v_border: 0 (WW) NV(0): Unknown vendor-specific block f (II) NV(0): RP784154U2 (II) NV(0): '/?_—¯ÿ (II) NV(0): EDID (in hex): (II) NV(0): 00ffffffffffff004ca3553200000000 (II) NV(0): 00110103802115780a87f594574f8c27 (II) NV(0): 27505400000001010101010101010101 (II) NV(0): 0101010101018c41805871b023406420 (II) NV(0): 26004bcf100000190000000f00000000 (II) NV(0): 000000000046d2026400000000fe0052 (II) NV(0): 503738340231353455320a20000000fe (II) NV(0): 0017272f3f5f97afff02010a20200031 (II) NV(0): EDID vendor "SEC", prod id 12885 (II) NV(0): Output VGA1 disconnected (II) NV(0): Output DVI1 disconnected (II) NV(0): Output LVDS connected (II) NV(0): Using user preference for initial modes (II) NV(0): Output LVDS using initial mode 1920x1200 (--) NV(0): Virtual size is 1920x1920 (pitch 2048) (**) NV(0): Driver mode "1920x1200": 167.8 MHz (scaled from 0.0 MHz), 74.1 kHz, 60.0 Hz (II) NV(0): Modeline "1920x1200"x60.0 167.80 1920 2020 2052 2264 1200 1202 1208 1235 -hsync -vsync (74.1 kHz) (==) NV(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/local/lib/xorg/modules//libxaa.so (II) Module xaa: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.2.1 ABI class: X.Org Video Driver, version 5.0 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NV(0): 239.95 MB available for offscreen pixmaps (II) NV(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Scanline Image Writes Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (==) NV(0): Backing store disabled (==) NV(0): Silken mouse enabled (II) NV(0): DPMS enabled (II) NV(0): RandR 1.2 enabled, ignore the following RandR disabled message. (--) RandR disabled (II) Initializing built-in extension Generic Event Extension (II) Initializing built-in extension SHAPE (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension BIG-REQUESTS (II) Initializing built-in extension SYNC (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XC-MISC (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) NV(0): Setting screen physical size to 331 x 207 [dix] Could not init font path element /usr/local/lib/X11/fonts/misc/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/TTF/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/OTF, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/Type1/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/100dpi/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/75dpi/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/TrueType/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/bitstream-vera/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/cyrillic/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/encodings/, removing from list! [dix] Could not init font path element /usr/local/lib/X11/fonts/util/, removing from list! [dix] Could not init font path element /usr/local/share/fonts/amspsfont/type1/, removing from list! [dix] Could not init font path element /usr/local/share/fonts/cmpsfont/type1/, removing from list! (II) config/hal: Adding input device Comfort Optical Mouse 1000 (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (**) Comfort Optical Mouse 1000: Device: "/dev/ums0" (==) Comfort Optical Mouse 1000: Protocol: "Auto" (**) Comfort Optical Mouse 1000: always reports core events (**) Option "Device" "/dev/ums0" (==) Comfort Optical Mouse 1000: Emulate3Buttons, Emulate3Timeout: 50 (**) Comfort Optical Mouse 1000: ZAxisMapping: buttons 4 and 5 (**) Comfort Optical Mouse 1000: Buttons: 9 (**) Comfort Optical Mouse 1000: Sensitivity: 1 (II) XINPUT: Adding extended input device "Comfort Optical Mouse 1000" (type: MOUSE) (**) Comfort Optical Mouse 1000: (accel) keeping acceleration scheme 1 (**) Comfort Optical Mouse 1000: (accel) filter chain progression: 2.00 (**) Comfort Optical Mouse 1000: (accel) filter stage 0: 20.00 ms (**) Comfort Optical Mouse 1000: (accel) set acceleration profile 0 (II) Comfort Optical Mouse 1000: SetupAuto: hw.iftype is 5, hw.model is 0 (II) Comfort Optical Mouse 1000: SetupAuto: protocol is SysMouse (WW) fcntl(11, O_ASYNC): Inappropriate ioctl for device (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 4.0 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) AT Keyboard: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) config/hal: Adding input device PS/2 Mouse (**) PS/2 Mouse: Device: "/dev/sysmouse" (==) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 (**) PS/2 Mouse: Buttons: 9 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (**) PS/2 Mouse: (accel) keeping acceleration scheme 1 (**) PS/2 Mouse: (accel) filter chain progression: 2.00 (**) PS/2 Mouse: (accel) filter stage 0: 20.00 ms (**) PS/2 Mouse: (accel) set acceleration profile 0 (II) PS/2 Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) PS/2 Mouse: SetupAuto: protocol is SysMouse (II) NV(0): Probing for EDID on I2C bus 0... (II) NV(0): ... none found (--) NV(0): Trying load detection on VGA1 ... nothing. (II) NV(0): Probing for EDID on I2C bus 1... (II) NV(0): ... none found (II) NV(0): Probing for EDID on I2C bus 3... (--) NV(0): DDC detected a DFP: (II) NV(0): Manufacturer: SEC Model: 3255 Serial#: 0 (II) NV(0): Year: 2007 Week: 0 (II) NV(0): EDID Version: 1.3 (II) NV(0): Digital Display Input (II) NV(0): Max Image Size [cm]: horiz.: 33 vert.: 21 (II) NV(0): Gamma: 2.20 (II) NV(0): No DPMS capabilities specified (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) NV(0): First detailed timing is preferred mode (II) NV(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550 (II) NV(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329 (II) NV(0): Manufacturer's mask: 0 (II) NV(0): Supported additional Video Mode: (II) NV(0): clock: 167.8 MHz Image Size: 331 x 207 mm (II) NV(0): h_active: 1920 h_sync: 2020 h_sync_end 2052 h_blank_end 2264 h_border: 0 (II) NV(0): v_active: 1200 v_sync: 1202 v_sync_end 1208 v_blanking: 1235 v_border: 0 (WW) NV(0): Unknown vendor-specific block f (II) NV(0): RP784154U2 (II) NV(0): '/?_—¯ÿ (II) NV(0): EDID (in hex): (II) NV(0): 00ffffffffffff004ca3553200000000 (II) NV(0): 00110103802115780a87f594574f8c27 (II) NV(0): 27505400000001010101010101010101 (II) NV(0): 0101010101018c41805871b023406420 (II) NV(0): 26004bcf100000190000000f00000000 (II) NV(0): 000000000046d2026400000000fe0052 (II) NV(0): 503738340231353455320a20000000fe (II) NV(0): 0017272f3f5f97afff02010a20200031 (II) NV(0): EDID vendor "SEC", prod id 12885 (II) NV(0): Printing DDC gathered Modelines: (II) NV(0): Modeline "1920x1200"x0.0 167.80 1920 2020 2052 2264 1200 1202 1208 1235 -hsync -vsync (74.1 kHz) (II) NV(0): EDID vendor "SEC", prod id 12885 (II) NV(0): Probing for EDID on I2C bus 0... (II) NV(0): ... none found (--) NV(0): Trying load detection on VGA1 ... nothing. (II) NV(0): Probing for EDID on I2C bus 1... (II) NV(0): ... none found (II) NV(0): Probing for EDID on I2C bus 3... (--) NV(0): DDC detected a DFP: (II) NV(0): Manufacturer: SEC Model: 3255 Serial#: 0 (II) NV(0): Year: 2007 Week: 0 (II) NV(0): EDID Version: 1.3 (II) NV(0): Digital Display Input (II) NV(0): Max Image Size [cm]: horiz.: 33 vert.: 21 (II) NV(0): Gamma: 2.20 (II) NV(0): No DPMS capabilities specified (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) NV(0): First detailed timing is preferred mode (II) NV(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550 (II) NV(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329 (II) NV(0): Manufacturer's mask: 0 (II) NV(0): Supported additional Video Mode: (II) NV(0): clock: 167.8 MHz Image Size: 331 x 207 mm (II) NV(0): h_active: 1920 h_sync: 2020 h_sync_end 2052 h_blank_end 2264 h_border: 0 (II) NV(0): v_active: 1200 v_sync: 1202 v_sync_end 1208 v_blanking: 1235 v_border: 0 (WW) NV(0): Unknown vendor-specific block f (II) NV(0): RP784154U2 (II) NV(0): '/?_—¯ÿ (II) NV(0): EDID (in hex): (II) NV(0): 00ffffffffffff004ca3553200000000 (II) NV(0): 00110103802115780a87f594574f8c27 (II) NV(0): 27505400000001010101010101010101 (II) NV(0): 0101010101018c41805871b023406420 (II) NV(0): 26004bcf100000190000000f00000000 (II) NV(0): 000000000046d2026400000000fe0052 (II) NV(0): 503738340231353455320a20000000fe (II) NV(0): 0017272f3f5f97afff02010a20200031 (II) NV(0): EDID vendor "SEC", prod id 12885 (II) NV(0): Printing DDC gathered Modelines: (II) NV(0): Modeline "1920x1200"x0.0 167.80 1920 2020 2052 2264 1200 1202 1208 1235 -hsync -vsync (74.1 kHz) (II) NV(0): EDID vendor "SEC", prod id 12885 -------------- next part -------------- Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/TrueType/" FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" FontPath "/usr/local/lib/X11/fonts/cyrillic/" FontPath "/usr/local/lib/X11/fonts/encodings/" FontPath "/usr/local/lib/X11/fonts/util/" FontPath "/usr/local/share/fonts/amspsfont/type1/" FontPath "/usr/local/share/fonts/cmpsfont/type1/" EndSection Section "Module" Load "glx" Load "extmod" Load "dbe" Load "dri" Load "record" Load "xtrap" Load "freetype" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" HorizSync 30.0-81.0 VertRefresh 56.0-76.0 Modeline "1920x1200_60.00" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "NoAccel" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "Rotate" # [] #Option "VideoKey" # #Option "FlatPanel" # [] #Option "FPDither" # [] #Option "CrtcNumber" # #Option "FPScale" # [] #Option "FPTweak" # #Option "DualHead" # [] Identifier "Card0" Driver "vesa" VendorName "nVidia Corporation" BoardName "Quadro NVS 140M" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 16 Modes "1920x1200" EndSubSection SubSection "Display" Viewport 0 0 Depth 24 Modes "1920x1200" EndSubSection EndSection From jau at iki.fi Sat Feb 7 23:20:03 2009 From: jau at iki.fi (Jukka A. Ukkonen) Date: Sat Feb 7 23:20:11 2009 Subject: Problems building xorg-server-1.5.3_4,1 Message-ID: <200902080649.n186n6Ru012252@jau.iki.fi> Hi, I tried building xorg-server-1.5.3_4,1 on FreeBSD-7.1-stable. The outcome was the errors shown at the end of the message. The things start going wrong with the attempt to include a missing GL/internal/dri_interface.h. Does anyone have an idea what might be the reason and how to remedy the situation? Cheers, // jau .--- ..- -.- -.- .- .- .-.-.- ..- -.- -.- --- -. . -. / Jukka A. Ukkonen, Oxit Ltd, Finland /__ M.Sc. (sw-eng & cs) (Phone) +358-500-606-671 / Internet: Jukka.Ukkonen(a)Oxit.Fi (Home) +358-9-6215-280 / Internet: jau(a)iki.fi v .--- .- ..- ...-.- .. -.- .. .-.-.- ..-. .. + + + + My opinions are mine and mine alone, not my employers. + + + + ===> Building for xorg-server-1.5.3_4,1 Making all in doc make all-am Making all in include make all-am Making all in dix make all-am Making all in fb Making all in mi Making all in Xext Making all in miext Making all in damage Making all in shadow Making all in cw Making all in os Making all in randr Making all in render Making all in Xi Making all in xkb Making all in dbe Making all in mfb Making all in afb Making all in cfb Making all in cfb32 Making all in record Making all in xfixes Making all in damageext Making all in XTrap Making all in composite Making all in glx /bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. \ -I../include -I../hw/xfree86/os-support -I../hw/xfree86/os-support/bus \ -I../hw/xfree86/common -I../hw/xfree86/dri -I../hw/xfree86/dri2 \ -I../mi -DHAVE_DIX_CONFIG_H -Wall -Wpointer-arith -Wstrict-prototypes \ -Wmissing-prototypes -Wmissing-declarations -Wnested-externs \ -fno-strict-aliasing -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT \ -D_THREAD_SAFE -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/local/include \ -I/usr/local/include/freetype2 -I/usr/local/include/pixman-1 \ -I/usr/local/include/hal -I/usr/local/include/dbus-1.0 \ -I/usr/local/include/dbus-1.0/include -I/usr/local/include \ -I../include -I../include -I../Xext -I../composite -I../damageext \ -I../xfixes -I../Xi -I../mi -I../miext/shadow -I../miext/damage \ -I../render -I../randr -I../fb -D_THREAD_SAFE -I/usr/local/include \ -I/usr/local/include/drm -D_THREAD_SAFE -I/usr/local/include \ -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include/X11/dri \ -DXFree86Server -O2 -pipe -march=pentium2 -fno-strict-aliasing \ -MT glxdriswrast.lo -MD -MP -MF .deps/glxdriswrast.Tpo -c \ -o glxdriswrast.lo glxdriswrast.c cc -DHAVE_CONFIG_H -I. -I../include -I../hw/xfree86/os-support \ -I../hw/xfree86/os-support/bus -I../hw/xfree86/common -I../hw/xfree86/dri \ -I../hw/xfree86/dri2 -I../mi -DHAVE_DIX_CONFIG_H -Wall -Wpointer-arith \ -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \ -Wnested-externs -fno-strict-aliasing -D_BSD_SOURCE -DHAS_FCHOWN \ -DHAS_STICKY_DIR_BIT -D_THREAD_SAFE -DDBUS_API_SUBJECT_TO_CHANGE \ -I/usr/local/include -I/usr/local/include/freetype2 \ -I/usr/local/include/pixman-1 -I/usr/local/include/hal \ -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include \ -I/usr/local/include -I../include -I../include -I../Xext -I../composite \ -I../damageext -I../xfixes -I../Xi -I../mi -I../miext/shadow \ -I../miext/damage -I../render -I../randr -I../fb -D_THREAD_SAFE \ -I/usr/local/include -I/usr/local/include/drm -D_THREAD_SAFE \ -I/usr/local/include -I/usr/local/include -I/usr/local/include/drm \ -I/usr/local/include/X11/dri -DXFree86Server -O2 -pipe -march=pentium2 \ -fno-strict-aliasing -MT glxdriswrast.lo -MD -MP -MF \ .deps/glxdriswrast.Tpo -c glxdriswrast.c -fPIC -DPIC -o .libs/glxdriswrast.o glxdriswrast.c:39:39: error: GL/internal/dri_interface.h: No such file or directory In file included from glxdriswrast.c:49: glxdricommon.h:32: error: expected ':', ',', ';', '}' or '__attribute__' before '*' token glxdricommon.h:36: warning: type defaults to 'int' in declaration of '__DRIcoreExtension' glxdricommon.h:36: error: expected ';', ',' or ')' before '*' token glxdricommon.h:38: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'systemTimeExtension' glxdriswrast.c:64: error: expected specifier-qualifier-list before '__DRIscreen' glxdriswrast.c:75: error: expected specifier-qualifier-list before '__DRIcontext' glxdriswrast.c:80: error: expected specifier-qualifier-list before '__DRIdrawable' glxdriswrast.c: In function '__glXDRIdrawableDestroy': glxdriswrast.c:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:92: error: 'core' undeclared (first use in this function) glxdriswrast.c:92: error: (Each undeclared identifier is reported only once glxdriswrast.c:92: error: for each function it appears in.) glxdriswrast.c:92: error: '__GLXDRIdrawable' has no member named 'screen' glxdriswrast.c:94: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c:96: error: '__GLXDRIdrawable' has no member named 'gc' glxdriswrast.c:97: error: '__GLXDRIdrawable' has no member named 'cleargc' glxdriswrast.c:98: error: '__GLXDRIdrawable' has no member named 'swapgc' glxdriswrast.c: In function '__glXDRIdrawableSwapBuffers': glxdriswrast.c:116: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:116: error: 'core' undeclared (first use in this function) glxdriswrast.c:116: error: '__GLXDRIdrawable' has no member named 'screen' glxdriswrast.c:118: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c: In function '__glXDRIdrawableCopySubBuffer': glxdriswrast.c:128: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:128: error: 'copySubBuffer' undeclared (first use in this function) glxdriswrast.c:129: error: '__GLXDRIdrawable' has no member named 'screen' glxdriswrast.c:132: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c: In function '__glXDRIcontextDestroy': glxdriswrast.c:141: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:141: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c: In function '__glXDRIcontextMakeCurrent': glxdriswrast.c:154: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:154: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c:155: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c:156: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c: In function '__glXDRIcontextLoseCurrent': glxdriswrast.c:165: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:165: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c: In function '__glXDRIcontextCopy': glxdriswrast.c:176: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:176: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c:177: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c: In function '__glXDRIcontextForceCurrent': glxdriswrast.c:188: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:188: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c:189: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c:190: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c: In function '__glXDRIscreenDestroy': glxdriswrast.c:253: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:253: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c:255: error: '__GLXDRIscreen' has no member named 'driver' glxdriswrast.c: In function '__glXDRIscreenCreateContext': glxdriswrast.c:270: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:270: error: 'core' undeclared (first use in this function) glxdriswrast.c:270: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:271: error: '__DRIcontext' undeclared (first use in this function) glxdriswrast.c:271: error: 'driShare' undeclared (first use in this function) glxdriswrast.c:275: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c:291: error: '__GLXDRIcontext' has no member named 'driContext' glxdriswrast.c:292: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c:293: error: '__GLXDRIconfig' has no member named 'driConfig' glxdriswrast.c: In function '__glXDRIscreenCreateDrawable': glxdriswrast.c:325: error: '__GLXDRIdrawable' has no member named 'screen' glxdriswrast.c:337: error: '__GLXDRIdrawable' has no member named 'gc' glxdriswrast.c:338: error: '__GLXDRIdrawable' has no member named 'cleargc' glxdriswrast.c:339: error: '__GLXDRIdrawable' has no member named 'swapgc' glxdriswrast.c:341: error: '__GLXDRIdrawable' has no member named 'gc' glxdriswrast.c:342: error: '__GLXDRIdrawable' has no member named 'cleargc' glxdriswrast.c:343: error: '__GLXDRIdrawable' has no member named 'swapgc' glxdriswrast.c:344: error: '__GLXDRIdrawable' has no member named 'swapgc' glxdriswrast.c:346: error: '__GLXDRIdrawable' has no member named 'driDrawable' glxdriswrast.c:347: error: '__GLXDRIscreen' has no member named 'swrast' glxdriswrast.c:347: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c:348: error: '__GLXDRIconfig' has no member named 'driConfig' glxdriswrast.c: At top level: glxdriswrast.c:355: error: expected ')' before '*' token glxdriswrast.c:369: error: expected ')' before '*' token glxdriswrast.c:398: error: expected ')' before '*' token glxdriswrast.c:409: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'swrastLoaderExtension' glxdriswrast.c:416: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c: In function 'initializeExtensions': glxdriswrast.c:425: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:425: error: 'extensions' undeclared (first use in this function) glxdriswrast.c:428: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:428: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c: In function '__glXDRIscreenProbe': glxdriswrast.c:458: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:458: error: 'extensions' undeclared (first use in this function) glxdriswrast.c:459: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token glxdriswrast.c:459: error: 'driConfigs' undeclared (first use in this function) glxdriswrast.c:476: error: '__GLXDRIscreen' has no member named 'driver' glxdriswrast.c:477: error: '__GLXDRIscreen' has no member named 'driver' glxdriswrast.c:483: error: '__GLXDRIscreen' has no member named 'driver' glxdriswrast.c:483: error: '__DRI_DRIVER_EXTENSIONS' undeclared (first use in this function) glxdriswrast.c:491: error: '__DRI_CORE' undeclared (first use in this function) glxdriswrast.c:492: error: '__DRI_CORE_VERSION' undeclared (first use in this function) glxdriswrast.c:493: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:493: error: expected ')' before '__DRIcoreExtension' glxdriswrast.c:493: warning: type defaults to 'int' in declaration of 'type name' glxdriswrast.c:495: error: '__DRI_SWRAST' undeclared (first use in this function) glxdriswrast.c:496: error: '__DRI_SWRAST_VERSION' undeclared (first use in this function) glxdriswrast.c:497: error: '__GLXDRIscreen' has no member named 'swrast' glxdriswrast.c:497: error: expected ')' before '__DRIswrastExtension' glxdriswrast.c:497: warning: type defaults to 'int' in declaration of 'type name' glxdriswrast.c:501: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:501: error: '__GLXDRIscreen' has no member named 'swrast' glxdriswrast.c:507: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c:508: error: '__GLXDRIscreen' has no member named 'swrast' glxdriswrast.c:509: error: 'loader_extensions' undeclared (first use in this function) glxdriswrast.c:513: error: '__GLXDRIscreen' has no member named 'driScreen' glxdriswrast.c:520: warning: implicit declaration of function 'glxConvertConfigs' glxdriswrast.c:520: warning: nested extern declaration of 'glxConvertConfigs' glxdriswrast.c:520: error: '__GLXDRIscreen' has no member named 'core' glxdriswrast.c:520: warning: assignment makes pointer from integer without a cast glxdriswrast.c:530: error: '__GLXDRIscreen' has no member named 'driver' glxdriswrast.c:531: error: '__GLXDRIscreen' has no member named 'driver' *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server/work/xorg-server-1.5.3/glx. *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server/work/xorg-server-1.5.3. *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server. *** Error code 1 Stop in /usr/ports/x11-servers/xorg-server. From rnoland at FreeBSD.org Sun Feb 8 00:24:58 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 8 00:25:04 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <86iqnlss4b.fsf@ra333.heimat.gr.jp> References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> <1234026184.1562.47.camel@ferret.2hip.net> <86iqnlss4b.fsf@ra333.heimat.gr.jp> Message-ID: <1234081486.1562.74.camel@ferret.2hip.net> On Sun, 2009-02-08 at 09:13 +0900, NAKAJI Hiroyuki wrote: > >>>>> In <1234026184.1562.47.camel@ferret.2hip.net> > >>>>> Robert Noland wrote: > > On Sat, 2009-02-07 at 07:24 +0900, Maho NAKATA wrote: > > > > it seems DRI is not working on i386, RADEON X1650 FreBSD 7-stable, Xorg 7.4 > > > > > > 1. if we enable DRI, screen is garbled. > > > 2. without DRI, works, it works, and no problem. > > > 3. I have DRM loaded at /boot/loader.conf > > > drm0: on vgapci0 > > > info: [drm] Initialized radeon 1.29.0 20080613 > > > Please make sure that your -STABLE is up to date. The garbled screen > > should be resolved with the new drm code. If you are up to date. (your > > xserver at least was built against the old kernel), try rebuilding > > graphics/libdrm. > > Robert, I'd like to make a summary about "How to update xorg". > Is it right in general? > > 0. prepare to accept any troubles Yes, hopefully minimal, but Xorg is a big and complex project and there are only a couple of us that work on FreeBSD right now, so... > 1. update /usr/src and /usr/ports tree to the latest -STABLE or -CURRENT For the latest agp/drm bits yes, this is advised. > 2. build and install the latest kernel, and reboot > 3. update xorg and related all packages using portupdate or portmaster I personally use "portmanager -u -p -l -y", but yes, the tool of your choice. In my experience, portupgrade allows the most foot shooting... > 4. update /etc/X11/xorg.conf This is sometimes needed. Often it is not needed unless specific features/options change. > 5. enjoy the new xorg world Hopefully, life is good at this point. 8-) > And then, I have some questions. > > 2. Do we need to update the userland, too? This depends on whether or not any specific API/ABI has been broken. Normally this should only be observed if shared library versions change. The above portmanager usage will just deal with it, even if PORTREVISIONS aren't bumped, though we attempt to bump all needed ports. > 3. If using portupgrade, is "portupgrade -af" better than > "portupgrade -rf xorg"? I haven't used portupgrade in a long time, so I'm not the best person to answer this. The primary concern is ensuring that all the needed ports are updated in dependency order. Unless I'm mistaken, portupgrade -rf xorg is not what you want, as that would try to rebuild everything that depends on the xorg meta port, which is pretty much nothing. robert. > Thanks. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090208/9fa4ff10/attachment.pgp From rnoland at FreeBSD.org Sun Feb 8 00:37:43 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 8 00:37:49 2009 Subject: bluetooth not worked after upgrade to xorg 7.4 In-Reply-To: <498E4ED9.7010903@mail.ru> References: <498E4ED9.7010903@mail.ru> Message-ID: <1234082252.1562.76.camel@ferret.2hip.net> On Sun, 2009-02-08 at 06:17 +0300, Subscriber wrote: > I'm not sure about proper mail list... > > After update xorg my bluetooth mouse (Logitech v470) won't work in graphic > mode. Just after boot up, when in console, mouse work as expected, but after > typing 'startx\n' I can use only built-in touchpad. However randomly (with > probability, say, 1/10) it work in graphic mode too - until next reboot. > > If mouse not work, I tried to restart hcsecd and bthidd, bring mouse visible > via 'connect' button. All this actions seems no effect in graphic mode. This sounds like it may be the hald/xorg race. I just committed a patch to the xserver that should address this. Try updating xorg-server and see if that helps. robert. > > -- > Best regards. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090208/786d712a/attachment.pgp From rnoland at FreeBSD.org Sun Feb 8 01:09:18 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 8 01:09:26 2009 Subject: Problems building xorg-server-1.5.3_4,1 In-Reply-To: <200902080649.n186n6Ru012252@jau.iki.fi> References: <200902080649.n186n6Ru012252@jau.iki.fi> Message-ID: <1234084145.1562.77.camel@ferret.2hip.net> On Sun, 2009-02-08 at 08:49 +0200, Jukka A. Ukkonen wrote: > Hi, > > I tried building xorg-server-1.5.3_4,1 on FreeBSD-7.1-stable. > The outcome was the errors shown at the end of the message. > The things start going wrong with the attempt to include a > missing GL/internal/dri_interface.h. > Does anyone have an idea what might be the reason and how to > remedy the situation? graphics/dri is either not installed or not updated. robert. > > Cheers, > // jau > .--- ..- -.- -.- .- .- .-.-.- ..- -.- -.- --- -. . -. > / Jukka A. Ukkonen, Oxit Ltd, Finland > /__ M.Sc. (sw-eng & cs) (Phone) +358-500-606-671 > / Internet: Jukka.Ukkonen(a)Oxit.Fi (Home) +358-9-6215-280 > / Internet: jau(a)iki.fi > v > .--- .- ..- ...-.- .. -.- .. .-.-.- ..-. .. > + + + + My opinions are mine and mine alone, not my employers. + + + + > > > > ===> Building for xorg-server-1.5.3_4,1 > Making all in doc > make all-am > Making all in include > make all-am > Making all in dix > make all-am > Making all in fb > Making all in mi > Making all in Xext > Making all in miext > Making all in damage > Making all in shadow > Making all in cw > Making all in os > Making all in randr > Making all in render > Making all in Xi > Making all in xkb > Making all in dbe > Making all in mfb > Making all in afb > Making all in cfb > Making all in cfb32 > Making all in record > Making all in xfixes > Making all in damageext > Making all in XTrap > Making all in composite > Making all in glx > /bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. \ > -I../include -I../hw/xfree86/os-support -I../hw/xfree86/os-support/bus \ > -I../hw/xfree86/common -I../hw/xfree86/dri -I../hw/xfree86/dri2 \ > -I../mi -DHAVE_DIX_CONFIG_H -Wall -Wpointer-arith -Wstrict-prototypes \ > -Wmissing-prototypes -Wmissing-declarations -Wnested-externs \ > -fno-strict-aliasing -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT \ > -D_THREAD_SAFE -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/local/include \ > -I/usr/local/include/freetype2 -I/usr/local/include/pixman-1 \ > -I/usr/local/include/hal -I/usr/local/include/dbus-1.0 \ > -I/usr/local/include/dbus-1.0/include -I/usr/local/include \ > -I../include -I../include -I../Xext -I../composite -I../damageext \ > -I../xfixes -I../Xi -I../mi -I../miext/shadow -I../miext/damage \ > -I../render -I../randr -I../fb -D_THREAD_SAFE -I/usr/local/include \ > -I/usr/local/include/drm -D_THREAD_SAFE -I/usr/local/include \ > -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include/X11/dri \ > -DXFree86Server -O2 -pipe -march=pentium2 -fno-strict-aliasing \ > -MT glxdriswrast.lo -MD -MP -MF .deps/glxdriswrast.Tpo -c \ > -o glxdriswrast.lo glxdriswrast.c > cc -DHAVE_CONFIG_H -I. -I../include -I../hw/xfree86/os-support \ > -I../hw/xfree86/os-support/bus -I../hw/xfree86/common -I../hw/xfree86/dri \ > -I../hw/xfree86/dri2 -I../mi -DHAVE_DIX_CONFIG_H -Wall -Wpointer-arith \ > -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \ > -Wnested-externs -fno-strict-aliasing -D_BSD_SOURCE -DHAS_FCHOWN \ > -DHAS_STICKY_DIR_BIT -D_THREAD_SAFE -DDBUS_API_SUBJECT_TO_CHANGE \ > -I/usr/local/include -I/usr/local/include/freetype2 \ > -I/usr/local/include/pixman-1 -I/usr/local/include/hal \ > -I/usr/local/include/dbus-1.0 -I/usr/local/include/dbus-1.0/include \ > -I/usr/local/include -I../include -I../include -I../Xext -I../composite \ > -I../damageext -I../xfixes -I../Xi -I../mi -I../miext/shadow \ > -I../miext/damage -I../render -I../randr -I../fb -D_THREAD_SAFE \ > -I/usr/local/include -I/usr/local/include/drm -D_THREAD_SAFE \ > -I/usr/local/include -I/usr/local/include -I/usr/local/include/drm \ > -I/usr/local/include/X11/dri -DXFree86Server -O2 -pipe -march=pentium2 \ > -fno-strict-aliasing -MT glxdriswrast.lo -MD -MP -MF \ > .deps/glxdriswrast.Tpo -c glxdriswrast.c -fPIC -DPIC -o .libs/glxdriswrast.o > glxdriswrast.c:39:39: error: GL/internal/dri_interface.h: No such file or directory > In file included from glxdriswrast.c:49: > glxdricommon.h:32: error: expected ':', ',', ';', '}' or '__attribute__' before '*' token > glxdricommon.h:36: warning: type defaults to 'int' in declaration of '__DRIcoreExtension' > glxdricommon.h:36: error: expected ';', ',' or ')' before '*' token > glxdricommon.h:38: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'systemTimeExtension' > glxdriswrast.c:64: error: expected specifier-qualifier-list before '__DRIscreen' > glxdriswrast.c:75: error: expected specifier-qualifier-list before '__DRIcontext' > glxdriswrast.c:80: error: expected specifier-qualifier-list before '__DRIdrawable' > glxdriswrast.c: In function '__glXDRIdrawableDestroy': > glxdriswrast.c:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:92: error: 'core' undeclared (first use in this function) > glxdriswrast.c:92: error: (Each undeclared identifier is reported only once > glxdriswrast.c:92: error: for each function it appears in.) > glxdriswrast.c:92: error: '__GLXDRIdrawable' has no member named 'screen' > glxdriswrast.c:94: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c:96: error: '__GLXDRIdrawable' has no member named 'gc' > glxdriswrast.c:97: error: '__GLXDRIdrawable' has no member named 'cleargc' > glxdriswrast.c:98: error: '__GLXDRIdrawable' has no member named 'swapgc' > glxdriswrast.c: In function '__glXDRIdrawableSwapBuffers': > glxdriswrast.c:116: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:116: error: 'core' undeclared (first use in this function) > glxdriswrast.c:116: error: '__GLXDRIdrawable' has no member named 'screen' > glxdriswrast.c:118: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c: In function '__glXDRIdrawableCopySubBuffer': > glxdriswrast.c:128: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:128: error: 'copySubBuffer' undeclared (first use in this function) > glxdriswrast.c:129: error: '__GLXDRIdrawable' has no member named 'screen' > glxdriswrast.c:132: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c: In function '__glXDRIcontextDestroy': > glxdriswrast.c:141: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:141: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c: In function '__glXDRIcontextMakeCurrent': > glxdriswrast.c:154: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:154: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c:155: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c:156: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c: In function '__glXDRIcontextLoseCurrent': > glxdriswrast.c:165: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:165: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c: In function '__glXDRIcontextCopy': > glxdriswrast.c:176: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:176: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c:177: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c: In function '__glXDRIcontextForceCurrent': > glxdriswrast.c:188: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:188: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c:189: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c:190: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c: In function '__glXDRIscreenDestroy': > glxdriswrast.c:253: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:253: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c:255: error: '__GLXDRIscreen' has no member named 'driver' > glxdriswrast.c: In function '__glXDRIscreenCreateContext': > glxdriswrast.c:270: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:270: error: 'core' undeclared (first use in this function) > glxdriswrast.c:270: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:271: error: '__DRIcontext' undeclared (first use in this function) > glxdriswrast.c:271: error: 'driShare' undeclared (first use in this function) > glxdriswrast.c:275: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c:291: error: '__GLXDRIcontext' has no member named 'driContext' > glxdriswrast.c:292: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c:293: error: '__GLXDRIconfig' has no member named 'driConfig' > glxdriswrast.c: In function '__glXDRIscreenCreateDrawable': > glxdriswrast.c:325: error: '__GLXDRIdrawable' has no member named 'screen' > glxdriswrast.c:337: error: '__GLXDRIdrawable' has no member named 'gc' > glxdriswrast.c:338: error: '__GLXDRIdrawable' has no member named 'cleargc' > glxdriswrast.c:339: error: '__GLXDRIdrawable' has no member named 'swapgc' > glxdriswrast.c:341: error: '__GLXDRIdrawable' has no member named 'gc' > glxdriswrast.c:342: error: '__GLXDRIdrawable' has no member named 'cleargc' > glxdriswrast.c:343: error: '__GLXDRIdrawable' has no member named 'swapgc' > glxdriswrast.c:344: error: '__GLXDRIdrawable' has no member named 'swapgc' > glxdriswrast.c:346: error: '__GLXDRIdrawable' has no member named 'driDrawable' > glxdriswrast.c:347: error: '__GLXDRIscreen' has no member named 'swrast' > glxdriswrast.c:347: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c:348: error: '__GLXDRIconfig' has no member named 'driConfig' > glxdriswrast.c: At top level: > glxdriswrast.c:355: error: expected ')' before '*' token > glxdriswrast.c:369: error: expected ')' before '*' token > glxdriswrast.c:398: error: expected ')' before '*' token > glxdriswrast.c:409: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'swrastLoaderExtension' > glxdriswrast.c:416: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c: In function 'initializeExtensions': > glxdriswrast.c:425: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:425: error: 'extensions' undeclared (first use in this function) > glxdriswrast.c:428: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:428: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c: In function '__glXDRIscreenProbe': > glxdriswrast.c:458: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:458: error: 'extensions' undeclared (first use in this function) > glxdriswrast.c:459: error: expected '=', ',', ';', 'asm' or '__attribute__' before '*' token > glxdriswrast.c:459: error: 'driConfigs' undeclared (first use in this function) > glxdriswrast.c:476: error: '__GLXDRIscreen' has no member named 'driver' > glxdriswrast.c:477: error: '__GLXDRIscreen' has no member named 'driver' > glxdriswrast.c:483: error: '__GLXDRIscreen' has no member named 'driver' > glxdriswrast.c:483: error: '__DRI_DRIVER_EXTENSIONS' undeclared (first use in this function) > glxdriswrast.c:491: error: '__DRI_CORE' undeclared (first use in this function) > glxdriswrast.c:492: error: '__DRI_CORE_VERSION' undeclared (first use in this function) > glxdriswrast.c:493: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:493: error: expected ')' before '__DRIcoreExtension' > glxdriswrast.c:493: warning: type defaults to 'int' in declaration of 'type name' > glxdriswrast.c:495: error: '__DRI_SWRAST' undeclared (first use in this function) > glxdriswrast.c:496: error: '__DRI_SWRAST_VERSION' undeclared (first use in this function) > glxdriswrast.c:497: error: '__GLXDRIscreen' has no member named 'swrast' > glxdriswrast.c:497: error: expected ')' before '__DRIswrastExtension' > glxdriswrast.c:497: warning: type defaults to 'int' in declaration of 'type name' > glxdriswrast.c:501: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:501: error: '__GLXDRIscreen' has no member named 'swrast' > glxdriswrast.c:507: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c:508: error: '__GLXDRIscreen' has no member named 'swrast' > glxdriswrast.c:509: error: 'loader_extensions' undeclared (first use in this function) > glxdriswrast.c:513: error: '__GLXDRIscreen' has no member named 'driScreen' > glxdriswrast.c:520: warning: implicit declaration of function 'glxConvertConfigs' > glxdriswrast.c:520: warning: nested extern declaration of 'glxConvertConfigs' > glxdriswrast.c:520: error: '__GLXDRIscreen' has no member named 'core' > glxdriswrast.c:520: warning: assignment makes pointer from integer without a cast > glxdriswrast.c:530: error: '__GLXDRIscreen' has no member named 'driver' > glxdriswrast.c:531: error: '__GLXDRIscreen' has no member named 'driver' > *** Error code 1 > > Stop in /usr/ports/x11-servers/xorg-server/work/xorg-server-1.5.3/glx. > *** Error code 1 > > Stop in /usr/ports/x11-servers/xorg-server/work/xorg-server-1.5.3. > *** Error code 1 > > Stop in /usr/ports/x11-servers/xorg-server. > *** Error code 1 > > Stop in /usr/ports/x11-servers/xorg-server. > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090208/7b2e97a1/attachment.pgp From linimon at FreeBSD.org Sun Feb 8 02:59:19 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 8 02:59:25 2009 Subject: ports/131313: x11/xorg cannot find mouse and keyboard Message-ID: <200902081059.n18AxIm0074506@freefall.freebsd.org> Synopsis: x11/xorg cannot find mouse and keyboard State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sun Feb 8 10:59:00 UTC 2009 State-Changed-Why: apparently the new hal patches fixed this problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=131313 From nakaji at jp.freebsd.org Sun Feb 8 03:44:07 2009 From: nakaji at jp.freebsd.org (NAKAJI Hiroyuki) Date: Sun Feb 8 03:44:14 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <1234081486.1562.74.camel@ferret.2hip.net> (Robert Noland's message of "Sun, 08 Feb 2009 03:24:45 -0500") References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> <1234026184.1562.47.camel@ferret.2hip.net> <86iqnlss4b.fsf@ra333.heimat.gr.jp> <1234081486.1562.74.camel@ferret.2hip.net> Message-ID: <86eiy9qhn2.fsf@ra333.heimat.gr.jp> Thanks, Robert. I'm now clear. >>>>> In <1234081486.1562.74.camel@ferret.2hip.net> >>>>> Robert Noland wrote: > > 2. Do we need to update the userland, too? > This depends on whether or not any specific API/ABI has been broken. > Normally this should only be observed if shared library versions change. > The above portmanager usage will just deal with it, even if > PORTREVISIONS aren't bumped, though we attempt to bump all needed ports. I updated kernel and userland to 7.1-STABLE anyway. # uname -a FreeBSD ML115.heimat.gr.jp 7.1-STABLE FreeBSD 7.1-STABLE #21: Sun Feb 8 09:49:36 JST 2009 root@ML115.heimat.gr.jp:/usr/obj/usr/src/sys/ML115 amd64 > > 3. If using portupgrade, is "portupgrade -af" better than > > "portupgrade -rf xorg"? > I haven't used portupgrade in a long time, so I'm not the best person to > answer this. The primary concern is ensuring that all the needed ports > are updated in dependency order. Unless I'm mistaken, portupgrade -rf > xorg is not what you want, as that would try to rebuild everything that > depends on the xorg meta port, which is pretty much nothing. Oh, my typo. It should be "portupgrade -fR". I choosed, then, "make -DALWAYS_BUILD_DEPENDS -DFORCE_PKG_REGISTER install" in x11/xorg. And things seems going well except xfce4, which is another problem. -- NAKAJI Hiroyuki From subscr1024 at mail.ru Sun Feb 8 04:19:12 2009 From: subscr1024 at mail.ru (Subscriber) Date: Sun Feb 8 04:19:27 2009 Subject: bluetooth not worked after upgrade to xorg 7.4 In-Reply-To: <498E4ED9.7010903@mail.ru> References: <498E4ED9.7010903@mail.ru> Message-ID: <498ECCB9.1020805@mail.ru> Excuse me for too short message. I use 8-CURRENT on MSI GX710 notebook. Basic info follows. Subscriber ?????: > I'm not sure about proper mail list... > > After update xorg my bluetooth mouse (Logitech v470) won't work in > graphic mode. Just after boot up, when in console, mouse work as > expected, but after typing 'startx\n' I can use only built-in touchpad. > However randomly (with probability, say, 1/10) it work in graphic mode > too - until next reboot. > > If mouse not work, I tried to restart hcsecd and bthidd, bring mouse > visible via 'connect' button. All this actions seems no effect in > graphic mode. > > > -- > Best regards. # uname -a FreeBSD user 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Fri Feb 6 04:25:02 MSK 2009 user@user:/usr/obj/usr/src/sys/GX710.8 amd64 #dmesg Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 8.0-CURRENT #0: Fri Feb 6 04:25:02 MSK 2009 user@user:/usr/obj/usr/src/sys/GX710.8 link_elf_obj: symbol unit2minor undefined KLD file kqemu.ko - could not finalize loading Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: AMD Turion(tm) 64 X2 Mobile Technology TL-64 (798.00-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x60f81 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Cores per package: 2 usable memory = 4284547072 (4086 MB) avail memory = 4120961024 (3930 MB) ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 ioapic0 irqs 0-23 on motherboard wlan: mac acl policy registered kbd1 at kbdmux0 acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (evregion-0427): No handler for Region [EC__] (0xffffff000166cc80) [EmbeddedControl] [20070320] ACPI Error (exfldio-0390): Region EmbeddedControl(3) has no handler [20070320] **** Exception AE_NOT_EXIST during execution of method [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880) Method Execution Stack: Method [_STA] executing: MBTS Local Variables for method [_STA]: Local0: 0 Local1: 0 Local2: 0 Local3: 0 Local4: 0 Local5: 0 Local6: 0 Local7: 0 Arguments for Method [_STA]: (0 arguments defined, max concurrency = 0) Arg0: 0 Arg1: 0 Arg2: 0 Arg3: 0 Arg4: 0 Arg5: 0 Arg6: 0 ACPI Error (psparse-0626): Method parse/execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST ACPI Error (uteval-0309): Method execution failed [\\_SB_.PCI0.SBRG.EC__.BAT1._STA] (Node 0xffffff000166f880), AE_NOT_EXIST acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, cff00000 (3) failed ACPI HPET table warning: Sequence is non-zero (2) Timecounter "ACPI-safe" frequency 3579545 Hz quality 850 acpi_timer0: <32-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 acpi_hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 900 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: at device 2.0 on pci0 pci1: on pcib1 vgapci0: port 0xb000-0xb0ff mem 0xd0000000-0xdfffffff,0xfd6f0000-0xfd6fffff irq 18 at device 0.0 on pci1 acpi_video0: on vgapci0 hdac0: mem 0xfd6ec000-0xfd6effff irq 19 at device 0.1 on pci1 hdac0: HDA Driver Revision: 20090131_0127 hdac0: [ITHREAD] pcib2: at device 4.0 on pci0 pci2: on pcib2 ath0: mem 0xfd7f0000-0xfd7fffff irq 16 at device 0.0 on pci2 ath0: [ITHREAD] ath0: WARNING: using obsoleted if_watchdog interface ath0: mac 14.2 phy 7.0 radio 10.2 pcib3: at device 6.0 on pci0 pci3: on pcib3 pcib4: at device 7.0 on pci0 pci5: on pcib4 re0: port 0xc800-0xc8ff mem 0xfe2ff000-0xfe2fffff irq 19 at device 0.0 on pci5 re0: turning off MSI enable bit. re0: Chip rev. 0x38000000 re0: MAC rev. 0x00000000 miibus0: on re0 rgephy0: PHY 1 on miibus0 rgephy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto re0: Ethernet address: 00:1d:92:4b:18:11 re0: [FILTER] atapci0: port 0xa000-0xa007,0x9000-0x9003,0x8000-0x8007,0x7000-0x7003,0x6000-0x600f mem 0xfd5ff800-0xfd5ffbff irq 22 at device 18.0 on pci0 atapci0: [ITHREAD] atapci0: AHCI Version 01.10 controller with 4 ports PM supported ata2: on atapci0 ata2: [ITHREAD] ata3: on atapci0 ata3: [ITHREAD] ata4: on atapci0 ata4: [ITHREAD] ata5: on atapci0 ata5: [ITHREAD] ohci0: mem 0xfd5fe000-0xfd5fefff irq 16 at device 19.0 on pci0 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 2 ports with 2 removable, self powered ohci1: mem 0xfd5fd000-0xfd5fdfff irq 17 at device 19.1 on pci0 ohci1: [GIANT-LOCKED] ohci1: [ITHREAD] usb1: OHCI version 1.0, legacy support usb1: on ohci1 usb1: USB revision 1.0 uhub1: on usb1 uhub1: 2 ports with 2 removable, self powered ohci2: mem 0xfd5fc000-0xfd5fcfff irq 18 at device 19.2 on pci0 ohci2: [GIANT-LOCKED] ohci2: [ITHREAD] usb2: OHCI version 1.0, legacy support usb2: on ohci2 usb2: USB revision 1.0 uhub2: on usb2 uhub2: 2 ports with 2 removable, self powered ohci3: mem 0xfd5fb000-0xfd5fbfff irq 17 at device 19.3 on pci0 ohci3: [GIANT-LOCKED] ohci3: [ITHREAD] usb3: OHCI version 1.0, legacy support usb3: on ohci3 usb3: USB revision 1.0 uhub3: on usb3 uhub3: 2 ports with 2 removable, self powered ohci4: mem 0xfd5fa000-0xfd5fafff irq 18 at device 19.4 on pci0 ohci4: [GIANT-LOCKED] ohci4: [ITHREAD] usb4: OHCI version 1.0, legacy support usb4: on ohci4 usb4: USB revision 1.0 uhub4: on usb4 uhub4: 2 ports with 2 removable, self powered ehci0: mem 0xfd5ff000-0xfd5ff0ff irq 19 at device 19.5 on pci0 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb5: EHCI version 1.0 usb5: companion controllers, 2 ports each: usb0 usb1 usb2 usb3 usb4 usb5: on ehci0 usb5: USB revision 2.0 uhub5: on usb5 uhub5: 10 ports with 10 removable, self powered ugen0: on uhub5 pci0: at device 20.0 (no driver attached) atapci1: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xff00-0xff0f at device 20.1 on pci0 ata0: on atapci1 ata0: [ITHREAD] hdac1: mem 0xfd5f4000-0xfd5f7fff irq 16 at device 20.2 on pci0 hdac1: HDA Driver Revision: 20090131_0127 hdac1: [ITHREAD] isab0: at device 20.3 on pci0 isa0: on isab0 pcib5: at device 20.4 on pci0 pci6: on pcib5 cbb0: irq 20 at device 4.0 on pci6 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb0: [FILTER] pci6: at device 4.2 (no driver attached) pci6: at device 4.3 (no driver attached) fwohci0: <1394 Open Host Controller Interface> mem 0xfe3fd000-0xfe3fdfff,0xfe3ff000-0xfe3ff7ff irq 20 at device 4.4 on pci6 fwohci0: [ITHREAD] fwohci0: OHCI version 1.10 (ROM=0) fwohci0: No. of Isochronous channels is 8. fwohci0: EUI64 00:dc:10:00:af:43:34:01 fwohci0: Phy 1394a available S400, 2 ports. fwohci0: Link S400, max_rec 2048 bytes. firewire0: on fwohci0 sbp0: on firewire0 dcons_crom0: on firewire0 dcons_crom0: bus_addr 0x15fc000 fwe0: on firewire0 if_fwe0: Fake Ethernet address: 02:dc:10:43:34:01 fwe0: Ethernet address: 02:dc:10:43:34:01 fwip0: on firewire0 fwip0: Firewire address: 00:dc:10:00:af:43:34:01 @ 0xfffe00000000, S400, maxrec 2048 fwohci0: Initiate bus reset fwohci0: BUS reset fwohci0: node_id=0x00000000, SelfID Count=1, CYCLEMASTER mode k8temp0: on hostb4 acpi_button0: on acpi0 acpi_tz0: on acpi0 atrtc0: port 0x70-0x71 irq 8 on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model IntelliMouse, device ID 3 acpi_acad0: on acpi0 battery0: on acpi0 acpi_lid0: on acpi0 cpu0: on acpi0 acpi_throttle0: on cpu0 acpi_throttle0: CLK_VAL field overlaps THT_EN bit device_attach: acpi_throttle0 attach returned 6 powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 orm0: at iomem 0xcf000-0xcffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ugen1: on uhub3 ubt0: on uhub3 ubt0: Interface 0 endpoints: interrupt=0x81, bulk-in=0x82, bulk-out=0x2 ubt0: Interface 1 (alt.config 5) endpoints: isoc-in=0x83, isoc-out=0x3; wMaxPacketSize=49; nframes=10, buffer size=490 Timecounters tick every 1.000 msec firewire0: 1 nodes, maxhop <= 0, cable IRM = 0 (me) firewire0: bus manager 0 (me) acd0: DVDR at ata0-master UDMA33 ad4: 238475MB at ata2-master SATA150 hdac0: HDA Codec #0: ATI R6xx HDMI pcm0: at cad 0 nid 1 on hdac0 hdac1: HDA Codec #0: Realtek ALC888 hdac1: HDA Codec #1: Lucent/Agere Systems (Unknown) pcm1: at cad 0 nid 1 on hdac1 pcm2: at cad 0 nid 1 on hdac1 GEOM: ad4s1: geometry does not match label (255h,63s != 16h,63s). acd0: FAILURE - INQUIRY ILLEGAL REQUEST asc=0x24 ascq=0x00 (probe7:ata0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 (probe7:ata0:0:0:0): CAM Status: SCSI Status Error (probe7:ata0:0:0:0): SCSI Status: Check Condition (probe7:ata0:0:0:0): NOT READY asc:3a,0 (probe7:ata0:0:0:0): Medium not present (probe7:ata0:0:0:0): Unretryable error SMP: AP CPU #1 Launched! cd0 at ata0 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 33.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Trying to mount root from ufs:/dev/ad4s1a This module (opensolaris) contains code covered by the Common Development and Distribution License (CDDL) see http://opensolaris.org/os/licensing/opensolaris_license/ WARNING: ZFS is considered to be an experimental feature in FreeBSD. ZFS filesystem version 13 ZFS storage pool version 13 wlan0: Ethernet address: 00:15:af:54:f6:25 wlan0: link state changed to UP acpi_ec0: wait timed out (response), forcing polled mode # pkg_info | grep "xorg\|xf86" libXxf86dga-1.0.2 X DGA Extension libXxf86misc-1.0.1 X XF86-Misc Extension libXxf86vm-1.0.2 X Vidmode Extension linux-xorg-libs-6.8.2_5 Xorg libraries, linux binaries xf86-input-keyboard-1.3.2 X.Org keyboard input driver xf86-input-mouse-1.4.0_3 X.Org mouse input driver xf86-video-radeonhd-1.2.4_1 X.Org ati RadeonHD display driver xf86-video-vesa-2.1.0 X.Org vesa display driver xf86bigfontproto-1.1.2 XFree86-Bigfont extension headers xf86dga-1.0.2_1 Test program for the XFree86-DGA extension xf86dgaproto-2.0.3 XFree86-DGA extension headers xf86driproto-2.0.4 XFree86-DRI extension headers xf86miscproto-0.9.2 XFree86-Misc extension headers xf86rushproto-1.1.2 XFree86-Rush extension headers xf86vidmodeproto-2.2.2 XFree86-VidModeExtension extension headers xorg-7.4 X.Org complete distribution metaport xorg-apps-7.4_1 X.org apps meta-port xorg-cf-files-1.0.2_3 X.org cf files for use with imake builds xorg-docs-1.4,1 X.org documentation files xorg-drivers-7.4 X.org drivers meta-port xorg-fonts-100dpi-7.4 X.Org 100dpi bitmap fonts xorg-fonts-7.4 X.org fonts meta-port xorg-fonts-75dpi-7.4 X.Org 75dpi bitmap fonts xorg-fonts-cyrillic-7.4 X.Org Cyrillic bitmap fonts xorg-fonts-miscbitmaps-7.4 X.Org miscellaneous bitmap fonts xorg-fonts-truetype-7.4 X.Org TrueType fonts xorg-fonts-type1-7.4 X.Org Type1 fonts xorg-libraries-7.4 X.org libraries meta-port xorg-macros-1.2.1 X.Org development aclocal macros xorg-server-1.5.3_4,1 X.Org X server and related programs From subscr1024 at mail.ru Sun Feb 8 04:34:38 2009 From: subscr1024 at mail.ru (Subscriber) Date: Sun Feb 8 04:34:45 2009 Subject: usb stick not detected under X In-Reply-To: <20090206114904.b3b6561a.drl@bsd.my> References: <20090206114904.b3b6561a.drl@bsd.my> Message-ID: <498ED03D.9010007@mail.ru> Same effect. Before 'startx' all seems OK. I attached USB stick to notebook, and appropriate messages displayed in console: > umass0: on > uhub5 > umass0: Get Max Lun not supported (STALLED) > (probe0:umass-sim0:0:0:0): TEST UNIT READY. CDB: 0 0 0 0 0 0 > (probe0:umass-sim0:0:0:0): CAM Status: SCSI Status Error > (probe0:umass-sim0:0:0:0): SCSI Status: Check Condition > (probe0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0 > (probe0:umass-sim0:0:0:0): Not ready to ready change, medium may have changed > (probe0:umass-sim0:0:0:0): Retrying Command (per Sense Data) > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Removable Direct Access SCSI-2 device > da0: 40.000MB/s transfers > da0: 1955MB (4005886 512 byte sectors: 255H 63S/T 249C) > GEOM_LABEL: Label for provider da0 is msdosfs/V90. But after starting graphic mode I tried to attach stick to three different USB ports and see in dmesg only: uhub5: device problem (TIMEOUT), disabling port 9 uhub5: device problem (TIMEOUT), disabling port 4 uhub5: device problem (TIMEOUT), disabling port 5 Darryl Yeoh ?????: > Hi Roland/lists, > > Sorry for cross-posting this. But I wasn't sure if this is a problem of USB or X11/HAL. I'm > experiencing something odd. Upon entering X, plugging in my usb stick doesn't get > detected. /var/log/messages don't show any related daX devices. It works If I exit X entirely. It > also works in single-mode. Oddly my external usb mouse works in X. Here's some info: > > OS: > FreeBSD matrix.bsd.my 7.1-STABLE FreeBSD 7.1-STABLE #0: Fri Jan 30 13:36:16 MYT 2009 > root@matrix.bsd.my:/usr/src/sys/i386/compile/INSP_1501 i386 > >>From /var/log/messages: > > Feb 6 10:59:54 matrix kernel: umass0: BBB reset failed, TIMEOUT > Feb 6 11:00:09 matrix kernel: umass0: BBB bulk-in clear stall failed, TIMEOUT > Feb 6 11:00:24 matrix kernel: umass0: BBB bulk-out clear stall failed, TIMEOUT > > Complete output of usbdevs -dv > > Controller /dev/usb0: > addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub0 > port 1 powered > port 2 powered > Controller /dev/usb1: > addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub1 > port 1 powered > port 2 powered > Controller /dev/usb2: > addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub2 > port 1 powered > port 2 powered > Controller /dev/usb3: > addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub3 > port 1 powered > port 2 powered > Controller /dev/usb4: > addr 1: full speed, self powered, config 1, OHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub4 > port 1 powered > port 2 powered > Controller /dev/usb5: > addr 1: high speed, self powered, config 1, EHCI root hub(0x0000), ATI(0x0000), rev 1.00 > uhub5 > port 1 powered > port 2 powered > port 3 addr 0 should never happen! > port 4 powered > port 5 powered > port 6 powered > port 7 powered > port 8 powered > port 9 powered > port 10 powered > > pkg_info for xorg-server and hal: > > $ pkg_info -c /var/db/pkg/xorg-server* > Information for xorg-server-1.5.3_4,1: > > $ pkg_info -c /var/db/pkg/hal* > Information for hal-0.5.11_17: > > /etc/rc.conf: > moused_enable="NO" > dbus_enable="YES" > hald_enable="YES" > > Let me know if you need anything else. > > Darryl > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > > From darcsis at gmail.com Sun Feb 8 05:19:31 2009 From: darcsis at gmail.com (Denise H. G.) Date: Sun Feb 8 05:19:38 2009 Subject: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <20090207.071848.193785503.chat95@mac.com> (Maho NAKATA's message of "Sat\, 07 Feb 2009 07\:18\:48 +0900 \(JST\)") References: <20090207.071848.193785503.chat95@mac.com> Message-ID: <86ab8xccv2.fsf@pluton.xbsd.name> Maho NAKATA writes: > Hi all, > thanks kudos! > http://blog.livedoor.jp/maho_nakata/archives/51115172.html > > ---------------------------------------------------------------- > Note: it won't work with i386. Please let me know if it works for you. It works for me. X1650 + latest 7.1-STABLE amd64 + latest xorg > > 1. Update to 7-stable (both kernel and userland) > > As drm information for RADEON X1650 (etc) are not updated, in the 7.1-RELEASE, first, update the kernel and userland to later than SVN rev 187021 (2009/1/10) version. > > 2. load radeon module at the boot time. > add following in /boot/loader.conf > radeon_load="YES" > make sure that radeon drm is activated at the boot time. > $ dmesg | grep radeon > info: [drm] Initialized radeon 1.29.0 20080613 > > 3. patch /etc/X11/xorg.conf > --- xorg.conf 2009-02-03 19:28:25.000000000 +0900 > +++ xorg.conf 2009-02-05 15:55:41.000000000 +0900 > @@ -3,6 +3,7 @@ > Screen 0 "Screen0" 0 0 > InputDevice "Mouse0" "CorePointer" > InputDevice "Keyboard0" "CoreKeyboard" > + Option "AIGLX" "true" > EndSection > > Section "Files" > ---------------------------------- > In my case hald somehow doesn't work well, so I added >> Option "AllowEmptyInput" "false" > as well. > > 4. install compiz > portinstall x11-wm/compiz-fusion > portinstall x11-wm/emerald > > 5. start compiz+emerald by: > $ LIBGL_ALWAYS_INDIRECT=1 compiz --replace ccp & > $ emerald --replace & > ---------------------------------------------------------------- > Best, > -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > -- darcsis ZAI gmail DIAN com From swell.k at gmail.com Sun Feb 8 08:38:52 2009 From: swell.k at gmail.com (swell.k@gmail.com) Date: Sun Feb 8 08:38:58 2009 Subject: xf86-video-nouveau In-Reply-To: <86wsc9pf5w.fsf@gmail.com> (swell k.'s message of "Mon, 02 Feb 2009 08:43:23 +0300") References: <863aeyhd7f.fsf@gmail.com> <1233506480.1534.38.camel@ferret.2hip.net> <86wsc9pf5w.fsf@gmail.com> Message-ID: <86bptc994d.fsf@gmail.com> (replying to myself) swell.k@gmail.com writes: > Well, I was surprised that it worked without modifications, too. > The PR number is `ports/131276'. > > There is one known issue in it: switching from Xserver to syscons > and back to Xserver causes the latter to crash. I uploaded new snapshot[1]. Since then more code was moved to libdrm and it now depends on libdrm_nouveau.so. That bug with Xserver crashing was fixed, too. And I've got a few more successful reports: another GF6150 and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv he/she can try luck with xf86-video-nouveau. [1] ports: ftp://ftp.lissyara.su/users/Guest/libdrm.tar.bz2 (provides libdrm_nouveau.so) ftp://ftp.lissyara.su/users/Guest/xf86-video-nouveau.tar.bz2 From rnoland at FreeBSD.org Sun Feb 8 09:18:22 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Sun Feb 8 09:18:28 2009 Subject: non working DRI on *i386* RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <86eiy9qhn2.fsf@ra333.heimat.gr.jp> References: <20090207.071848.193785503.chat95@mac.com> <20090207.072411.71183618.chat95@mac.com> <1234026184.1562.47.camel@ferret.2hip.net> <86iqnlss4b.fsf@ra333.heimat.gr.jp> <1234081486.1562.74.camel@ferret.2hip.net> <86eiy9qhn2.fsf@ra333.heimat.gr.jp> Message-ID: <1234113489.66799.3.camel@ferret.2hip.net> On Sun, 2009-02-08 at 20:42 +0900, NAKAJI Hiroyuki wrote: > Thanks, Robert. I'm now clear. > > >>>>> In <1234081486.1562.74.camel@ferret.2hip.net> > >>>>> Robert Noland wrote: > > > > 2. Do we need to update the userland, too? > > > This depends on whether or not any specific API/ABI has been broken. > > Normally this should only be observed if shared library versions change. > > The above portmanager usage will just deal with it, even if > > PORTREVISIONS aren't bumped, though we attempt to bump all needed ports. > > I updated kernel and userland to 7.1-STABLE anyway. > > # uname -a > FreeBSD ML115.heimat.gr.jp 7.1-STABLE FreeBSD 7.1-STABLE #21: Sun Feb 8 09:49:36 JST 2009 root@ML115.heimat.gr.jp:/usr/obj/usr/src/sys/ML115 amd64 > > > > 3. If using portupgrade, is "portupgrade -af" better than > > > "portupgrade -rf xorg"? > > > I haven't used portupgrade in a long time, so I'm not the best person to > > answer this. The primary concern is ensuring that all the needed ports > > are updated in dependency order. Unless I'm mistaken, portupgrade -rf > > xorg is not what you want, as that would try to rebuild everything that > > depends on the xorg meta port, which is pretty much nothing. > > Oh, my typo. It should be "portupgrade -fR". > > I choosed, then, "make -DALWAYS_BUILD_DEPENDS -DFORCE_PKG_REGISTER > install" in x11/xorg. And things seems going well except xfce4, which is > another problem. This is also a little dangerous. Old packages will not be deinstalled, so you overwrite the existing files with new ones, but you don't clean up files that might have gone away in the new port. Old header files or libraries may be left abandoned. robert. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090208/5513079d/attachment.pgp From jonathan.chen at solnetsolutions.co.nz Sun Feb 8 13:57:46 2009 From: jonathan.chen at solnetsolutions.co.nz (Jonathan Chen) Date: Sun Feb 8 13:57:54 2009 Subject: XOrg 7.4 + FreeBSD 7/amd64 on Dell Latitude D830 Message-ID: <19800_1234128327_498F4DC7_19800_5_1_498F4DC6.3080104@solnetsolutions.co.nz> Hi, I've just tried installing a recently csup'd version of x11/xorg on a Dell Latitude D830 with a nVidia card, running: FreeBSD 7.1-PRERELEASE #0: Thu Oct 30 09:31:48 NZDT 2009 root@jonathan.chen:/usr/obj/usr/src/sys/GENERIC amd64 x11/xorg is the only non-system software on the system, I had backed up and removed /usr/local and /var/db/pkg to reduce the possibility of inteference. I generated a config with "X -configure" and then tried "X -config /root/xorg.conf.new", and the result is a garbled screen with a barely noticable mouse pointer. Has anyone here managed to get XOrg 7.4 working with this machine? Cheers. -- Jonathan Chen Attention: This email may contain information intended for the sole use of the original recipient. Please respect this when sharing or disclosing this email's contents with any third party. If you believe you have received this email in error, please delete it and notify the sender or postmaster@solnetsolutions.co.nz as soon as possible. The content of this email does not necessarily reflect the views of Solnet Solutions Ltd. -------------- next part -------------- Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Module" Load "extmod" Load "record" Load "dbe" Load "glx" Load "xtrap" Load "dri" Load "freetype" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "NoAccel" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "Rotate" # [] #Option "VideoKey" # #Option "FlatPanel" # [] #Option "FPDither" # [] #Option "CrtcNumber" # #Option "FPScale" # [] #Option "FPTweak" # #Option "DualHead" # [] Identifier "Card0" Driver "nv" VendorName "nVidia Corporation" BoardName "Quadro NVS 140M" BusID "PCI:1:0:0" Option "XAANoOffscreenPixmaps" "on" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 # Modes "1680x1050" "1280x1024" "1024x768" "800x600" Modes "1280x1024" "1024x768" "800x600" Depth 24 EndSubSection EndSection -------------- next part -------------- X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-PRERELEASE amd64 Current Operating System: FreeBSD jonathan.chen 7.1-PRERELEASE FreeBSD 7.1-PRERELEASE #0: Tue Jan 6 09:31:48 NZDT 2009 root@jonathan.chen:/usr/obj/usr/src/sys/GENERIC amd64 Build Date: 09 February 2009 09:31:03AM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 9 09:53:59 2009 (++) Using config file: "/root/xorg.conf.new" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (==) Automatically adding devices (==) Automatically enabling devices (==) Including the default font path /usr/local/lib/X11/fonts/misc/,/usr/local/lib/X11/fonts/TTF/,/usr/local/lib/X11/fonts/OTF,/usr/local/lib/X11/fonts/Type1/,/usr/local/lib/X11/fonts/100dpi/,/usr/local/lib/X11/fonts/75dpi/. (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled. (WW) Disabling Mouse0 (WW) Disabling Keyboard0 (II) Loader magic: 0x671240 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file. (II) "dbe" will be loaded. This was enabled by default and also specified in the config file. (II) "glx" will be loaded. This was enabled by default and also specified in the config file. (II) "freetype" will be loaded. This was enabled by default and also specified in the config file. (II) "record" will be loaded. This was enabled by default and also specified in the config file. (II) "dri" will be loaded. This was enabled by default and also specified in the config file. (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "xtrap" (II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so (II) Module xtrap: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DEC-XTRAP (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "nv" (II) Loading /usr/local/lib/xorg/modules/drivers//nv_drv.so (II) Module nv: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.1.12 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) NV: driver for NVIDIA chipsets: RIVA 128, RIVA TNT, RIVA TNT2, Unknown TNT2, Vanta, RIVA TNT2 Ultra, RIVA TNT2 Model 64, Aladdin TNT2, GeForce 256, GeForce DDR, Quadro, GeForce2 MX/MX 400, GeForce2 MX 100/200, GeForce2 Go, Quadro2 MXR/EX/Go, GeForce2 Integrated GPU, GeForce2 GTS, GeForce2 Ti, GeForce2 Ultra, Quadro2 Pro, GeForce4 MX 460, GeForce4 MX 440, GeForce4 MX 420, GeForce4 MX 440-SE, GeForce4 440 Go, GeForce4 420 Go, GeForce4 420 Go 32M, GeForce4 460 Go, Quadro4 550 XGL, GeForce4 440 Go 64M, Quadro NVS, Quadro4 500 GoGL, GeForce4 410 Go 16M, GeForce4 MX 440 with AGP8X, GeForce4 MX 440SE with AGP8X, GeForce4 MX 420 with AGP8X, GeForce4 MX 4000, GeForce4 448 Go, GeForce4 488 Go, Quadro4 580 XGL, Quadro4 NVS 280 SD, Quadro4 380 XGL, Quadro NVS 50 PCI, GeForce4 448 Go, GeForce4 MX Integrated GPU, GeForce3, GeForce3 Ti 200, GeForce3 Ti 500, Quadro DCC, GeForce4 Ti 4600, GeForce4 Ti 4400, GeForce4 Ti 4200, Quadro4 900 XGL, Quadro4 750 XGL, Quadro4 700 XGL, GeForce4 Ti 4800, GeForce4 Ti 4200 with AGP8X, GeForce4 Ti 4800 SE, GeForce4 4200 Go, Quadro4 700 GoGL, Quadro4 980 XGL, Quadro4 780 XGL, GeForce FX 5800 Ultra, GeForce FX 5800, Quadro FX 2000, Quadro FX 1000, GeForce FX 5600 Ultra, GeForce FX 5600, GeForce FX 5600XT, GeForce FX Go5600, GeForce FX Go5650, Quadro FX Go700, GeForce FX 5200, GeForce FX 5200 Ultra, GeForce FX 5200, GeForce FX 5200LE, GeForce FX Go5200, GeForce FX Go5250, GeForce FX 5500, GeForce FX 5100, GeForce FX Go5200 32M/64M, Quadro NVS 55/280 PCI, Quadro FX 500/600 PCI, GeForce FX Go53xx Series, GeForce FX Go5100, GeForce FX 5900 Ultra, GeForce FX 5900, GeForce FX 5900XT, GeForce FX 5950 Ultra, GeForce FX 5900ZT, Quadro FX 3000, Quadro FX 700, GeForce FX 5700 Ultra, GeForce FX 5700, GeForce FX 5700LE, GeForce FX 5700VE, GeForce FX Go5700, GeForce FX Go5700, Quadro FX Go1000, Quadro FX 1100, GeForce 6800 Ultra, GeForce 6800, GeForce 6800 LE, GeForce 6800 XE, GeForce 6800 XT, GeForce 6800 GT, GeForce 6800 GT, GeForce 6800 GS, GeForce 6800 XT, Quadro FX 4000, GeForce 6800 GS, GeForce 6800, GeForce 6800 LE, GeForce 6800 XT, GeForce Go 6800, GeForce Go 6800 Ultra, Quadro FX Go1400, Quadro FX 3450/4000 SDI, Quadro FX 1400, GeForce 6600 GT, GeForce 6600, GeForce 6600 LE, GeForce 6600 VE, GeForce Go 6600, GeForce 6610 XL, GeForce Go 6600 TE/6200 TE, GeForce 6700 XL, GeForce Go 6600, GeForce Go 6600 GT, Quadro FX 550, Quadro FX 550, Quadro FX 540, GeForce 6200, GeForce 6500, GeForce 6200 TurboCache(TM), GeForce 6200SE TurboCache(TM), GeForce 6200 LE, GeForce Go 6200, Quadro NVS 285, GeForce Go 6400, GeForce Go 6200, GeForce Go 6400, GeForce 6250, GeForce 6800, GeForce 6800 LE, GeForce 6800 GT, GeForce 6800 XT, GeForce 6200, GeForce 6200 A-LE, GeForce 7800 GTX, GeForce 7800 GTX, GeForce 7800 GT, GeForce 7800 GS, GeForce 7800 SLI, GeForce Go 7800, GeForce Go 7800 GTX, Quadro FX 4500, GeForce 7300 LE, GeForce 7300 SE, GeForce Go 7200, GeForce Go 7300, GeForce Go 7400, GeForce Go 7400 GS, Quadro NVS 110M, Quadro NVS 120M, Quadro FX 350M, GeForce 7500 LE, Quadro FX 350, GeForce 7300 GS, GeForce 7600 GT, GeForce 7600 GS, GeForce 7300 GT, GeForce 7600 LE, GeForce 7300 GT, GeForce Go 7700, GeForce Go 7600, GeForce Go 7600 GT, Quadro NVS 300M, GeForce Go 7900 SE, Quadro FX 550M, Quadro FX 560, GeForce 7900 GTX, GeForce 7900 GT, GeForce 7900 GS, GeForce Go 7900 GS, GeForce Go 7900 GTX, Quadro FX 2500M, Quadro FX 1500M, Quadro FX 5500, Quadro FX 3500, Quadro FX 1500, Quadro FX 4500 X2, GeForce 6150, GeForce 6150 LE, GeForce 6100, GeForce Go 6150, GeForce Go 6100, GeForce 8800 GTX, GeForce 8800 GTS, GeForce 8800 Ultra, Quadro FX 5600, Quadro FX 4600, GeForce 8600 GTS, GeForce 8600 GT, GeForce 8600 GT, GeForce 8600 GS, GeForce 8400 GS, GeForce 9500M GS, GeForce 8600M GT, GeForce 9650M GS, GeForce 8700M GT, Quadro FX 370, Quadro NVS 320M, Quadro FX 570M, Quadro FX 1600M, Quadro FX 570, Quadro FX 1700, GeForce 8400 SE, GeForce 8500 GT, GeForce 8400 GS, GeForce 8300 GS, GeForce 8400 GS, GeForce 8600M GS, GeForce 8400M GT, GeForce 8400M GS, GeForce 8400M G, Quadro NVS 140M, Quadro NVS 130M, Quadro NVS 135M, GeForce 9400 GT, Quadro FX 360M, GeForce 9300M G, Quadro NVS 290, GeForce GTX 280, GeForce GTX 260, GeForce 8800 GTS 512, GeForce 8800 GT, GeForce 9800 GX2, GeForce 8800 GS, GeForce 8800M GTS, GeForce 8800M GTX, GeForce 8800 GS, GeForce 9600 GSO, GeForce 8800 GT, GeForce 9800 GTX, GeForce 9800 GTK+, GeForce 9800 GT, Quadro FX 3700, Quadro FX 3600M, GeForce 9600 GT, GeForce 9600 GS, GeForce 9800M GTS, GeForce 9700M GTS, GeForce 9800M GTS, GeForce 9500 GT, GeForce 9600M GT, GeForce 9600M GS, GeForce 9600M GT, GeForce 9500M G, GeForce 9300 GS, GeForce 8400 GS, GeForce 9300M GS, GeForce 9200M GS, GeForce 9300M GS, Quadro NVS 150M, Quadro NVS 160M (II) Primary Device is: PCI 01@00:00:0 (--) NV: Found NVIDIA Quadro NVS 140M at 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Video Driver, version 4.1 (II) NV(0): Initializing int10 (==) NV(0): Write-combining range (0xa0000,0x20000) was already clear (==) NV(0): Write-combining range (0xc0000,0x40000) was already clear (II) NV(0): Primary V_BIOS segment is: 0xc000 (==) NV(0): Write-combining range (0x0,0x1000) was already clear (--) NV(0): Console is VGA mode 0x3 (**) NV(0): Depth 24, (--) framebuffer bpp 32 (==) NV(0): RGB weight 888 (==) NV(0): Default visual is TrueColor (==) NV(0): Using hardware cursor (==) NV(0): Using gamma correction (1.0, 1.0, 1.0) (II) NV(0): MMIO registers mapped at 0x80263d000 (--) NV(0): Total video RAM: 256.0 MB (--) NV(0): BAR1 size: 256.0 MB (--) NV(0): Mapped memory: 255.0 MB (II) NV(0): Linear framebuffer mapped at 0x80363d000 (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (--) NV(0): Connector map: (--) NV(0): Bus 3 -> SOR0 (LVDS) (--) NV(0): Bus 0 -> DAC1 (--) NV(0): Bus 1 -> SOR1 (--) NV(0): Load detection: 279 (II) NV(0): I2C bus "I2C0" initialized. (II) NV(0): Output VGA1 using monitor section Monitor0 (II) NV(0): I2C bus "I2C1" initialized. (II) NV(0): Output DVI1 has no monitor section (II) NV(0): LVDS native size 738x414 (II) NV(0): Output LVDS has no monitor section (II) NV(0): I2C bus "I2C3 (LVDS)" initialized. (II) NV(0): Probing for EDID on I2C bus 0... (II) NV(0): I2C device "I2C0:ddc2" registered at address 0xA0. (--) NV(0): DDC detected a CRT: (II) NV(0): Manufacturer: GSM Model: 438d Serial#: 102018 (II) NV(0): Year: 2005 Week: 28 (II) NV(0): EDID Version: 1.3 (II) NV(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V (II) NV(0): Sync: Separate Composite SyncOnGreen (II) NV(0): Max Image Size [cm]: horiz.: 34 vert.: 27 (II) NV(0): Gamma: 2.20 (II) NV(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display (II) NV(0): First detailed timing is preferred mode (II) NV(0): redX: 0.641 redY: 0.342 greenX: 0.292 greenY: 0.611 (II) NV(0): blueX: 0.147 blueY: 0.068 whiteX: 0.313 whiteY: 0.329 (II) NV(0): Supported VESA Video Modes: (II) NV(0): 720x400@70Hz (II) NV(0): 640x480@60Hz (II) NV(0): 640x480@75Hz (II) NV(0): 800x600@60Hz (II) NV(0): 800x600@75Hz (II) NV(0): 832x624@75Hz (II) NV(0): 1024x768@60Hz (II) NV(0): 1024x768@75Hz (II) NV(0): 1280x1024@75Hz (II) NV(0): 1152x870@75Hz (II) NV(0): Manufacturer's mask: 0 (II) NV(0): Supported Future Video Modes: (II) NV(0): #0: hsize: 640 vsize 480 refresh: 75 vid: 20273 (II) NV(0): #1: hsize: 800 vsize 600 refresh: 75 vid: 20293 (II) NV(0): #2: hsize: 1024 vsize 768 refresh: 75 vid: 20321 (II) NV(0): #3: hsize: 1280 vsize 1024 refresh: 60 vid: 32897 (II) NV(0): Supported additional Video Mode: (II) NV(0): clock: 108.0 MHz Image Size: 338 x 270 mm (II) NV(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0 (II) NV(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0 (II) NV(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 140 MHz (II) NV(0): Monitor name: L1730S (II) NV(0): Monitor name: (II) NV(0): EDID (in hex): (II) NV(0): 00ffffffffffff001e6d8d43828e0100 (II) NV(0): 1c0f01036e221b78ea2ee5a4574a9c25 (II) NV(0): 115054a56b80314f454f614f81800101 (II) NV(0): 010101010101302a009851002a403070 (II) NV(0): 1300520e1100001e000000fd00384b1e (II) NV(0): 530e000a202020202020000000fc004c (II) NV(0): 31373330530a202020202020000000fc (II) NV(0): 00200a202020202020202020202000c5 (--) NV(0): Trying load detection on VGA1 ... found one! (II) NV(0): EDID vendor "GSM", prod id 17293 (II) NV(0): Using EDID range info for horizontal sync (II) NV(0): Using EDID range info for vertical refresh (II) NV(0): Printing DDC gathered Modelines: (II) NV(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz) (II) NV(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz) (II) NV(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz) (II) NV(0): Modeline "640x480"x0.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz) (II) NV(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz) (II) NV(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz) (II) NV(0): Modeline "1024x768"x0.0 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz) (II) NV(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz) (II) NV(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz) (II) NV(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz) (II) NV(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz) (II) NV(0): Modeline "640x480"x75.0 30.72 640 664 728 816 480 481 484 502 -hsync +vsync (37.7 kHz) (II) NV(0): Modeline "800x600"x75.0 48.91 800 840 920 1040 600 601 604 627 -hsync +vsync (47.0 kHz) (II) NV(0): Modeline "1024x768"x75.0 81.80 1024 1080 1192 1360 768 769 772 802 -hsync +vsync (60.2 kHz) (II) NV(0): Modeline "1280x1024"x60.0 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -hsync +vsync (63.6 kHz) (II) NV(0): EDID vendor "GSM", prod id 17293 (II) NV(0): Probing for EDID on I2C bus 1... (II) NV(0): I2C device "I2C1:ddc2" registered at address 0xA0. (II) NV(0): I2C device "I2C1:ddc2" removed. (II) NV(0): ... none found (II) NV(0): Probing for EDID on I2C bus 3... (II) NV(0): I2C device "I2C3 (LVDS):ddc2" registered at address 0xA0. (--) NV(0): DDC detected a DFP: (II) NV(0): Manufacturer: SEC Model: 3255 Serial#: 0 (II) NV(0): Year: 2007 Week: 0 (II) NV(0): EDID Version: 1.3 (II) NV(0): Digital Display Input (II) NV(0): Max Image Size [cm]: horiz.: 33 vert.: 21 (II) NV(0): Gamma: 2.20 (II) NV(0): No DPMS capabilities specified (II) NV(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 (II) NV(0): First detailed timing is preferred mode (II) NV(0): redX: 0.580 redY: 0.340 greenX: 0.310 greenY: 0.550 (II) NV(0): blueX: 0.155 blueY: 0.155 whiteX: 0.313 whiteY: 0.329 (II) NV(0): Manufacturer's mask: 0 (II) NV(0): Supported additional Video Mode: (II) NV(0): clock: 167.8 MHz Image Size: 331 x 207 mm (II) NV(0): h_active: 1920 h_sync: 2020 h_sync_end 2052 h_blank_end 2264 h_border: 0 (II) NV(0): v_active: 1200 v_sync: 1202 v_sync_end 1208 v_blanking: 1235 v_border: 0 (WW) NV(0): Unknown vendor-specific block f (II) NV(0): RP784154U2 (II) NV(0): '/?_??? (II) NV(0): EDID (in hex): (II) NV(0): 00ffffffffffff004ca3553200000000 (II) NV(0): 00110103802115780a87f594574f8c27 (II) NV(0): 27505400000001010101010101010101 (II) NV(0): 0101010101018c41805871b023406420 (II) NV(0): 26004bcf100000190000000f00000000 (II) NV(0): 000000000046d2026400000000fe0052 (II) NV(0): 503738340231353455320a20000000fe (II) NV(0): 0017272f3f5f97afff02010a20200031 (II) NV(0): EDID vendor "SEC", prod id 12885 (II) NV(0): Output VGA1 connected (II) NV(0): Output DVI1 disconnected (II) NV(0): Output LVDS connected (II) NV(0): Using user preference for initial modes (II) NV(0): Output VGA1 using initial mode 1280x1024 (II) NV(0): Output LVDS using initial mode 512x384 (--) NV(0): Virtual size is 1400x1400 (pitch 1536) (**) NV(0): Default mode "512x384": 32.5 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz (D) (II) NV(0): Modeline "512x384"x60.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz) (**) NV(0): Display dimensions: (340, 270) mm (**) NV(0): DPI set to (104, 131) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "xaa" (II) LoadModule: "xaa" (II) Loading /usr/local/lib/xorg/modules//libxaa.so (II) Module xaa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.2.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (--) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NV(0): 183.79 MB available for offscreen pixmaps (II) NV(0): Using XFree86 Acceleration Architecture (XAA) Screen to screen bit blits Solid filled rectangles 8x8 mono pattern filled rectangles Indirect CPU to Screen color expansion Solid Lines Scanline Image Writes Setting up tile and stipple cache: 32 128x128 slots 32 256x256 slots 16 512x512 slots (==) NV(0): Backing store disabled (==) NV(0): Silken mouse enabled (II) NV(0): DPMS enabled (II) NV(0): RandR 1.2 enabled, ignore the following RandR disabled message. (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) NV(0): Setting screen physical size to 827 x 552 (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) PS/2 Mouse: Device: "/dev/psm0" (==) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/psm0" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 (**) PS/2 Mouse: Buttons: 9 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (II) PS/2 Mouse: SetupAuto: hw.iftype is 3, hw.model is 1 (II) PS/2 Mouse: SetupAuto: protocol is GlidePointPS/2 (II) PS/2 Mouse: ps2EnableDataReporting: succeeded (WW) fcntl(11, O_ASYNC): Inappropriate ioctl for device (II) config/hal: Adding input device Basic Optical Mouse (**) Basic Optical Mouse: Device: "/dev/sysmouse" (==) Basic Optical Mouse: Protocol: "Auto" (**) Basic Optical Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) Basic Optical Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) Basic Optical Mouse: ZAxisMapping: buttons 4 and 5 (**) Basic Optical Mouse: Buttons: 9 (**) Basic Optical Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "Basic Optical Mouse" (type: MOUSE) (II) Basic Optical Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Basic Optical Mouse: SetupAuto: protocol is SysMouse (II) config/hal: Adding input device Dell USB Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) Dell USB Keyboard: always reports core events (**) Option "Protocol" "standard" (**) Dell USB Keyboard: Protocol: standard (**) Option "Device" "/dev/ukbd0" (EE) Dell USB Keyboard: cannot open "/dev/ukbd0" (EE) PreInit failed for input device "Dell USB Keyboard" (II) UnloadModule: "kbd" (EE) config/hal: NewInputDeviceRequest failed (II) config/hal: Adding input device AT Keyboard (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) AT Keyboard: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) UnloadModule: "mouse" (II) UnloadModule: "mouse" (II) UnloadModule: "kbd" (==) NV(0): Write-combining range (0x0,0x1000) was already clear From paulbeard at gmail.com Sun Feb 8 15:05:37 2009 From: paulbeard at gmail.com (Paul Beard) Date: Sun Feb 8 15:06:03 2009 Subject: xorg-protos && xorg Message-ID: <77A802C0-C464-4415-92E6-3A0B30B084F1@gmail.com> ** Port directory not found: x11/xorg-protos ** There are errors in a meta info for xphelloworld-1.0.1_1 ** Run 'pkgdb -F' to interactively fix them. [root@shuttle ~]# pkgdb -F ---> Checking the package registry database Stale origin: 'x11/xorg-protos': perhaps moved or obsoleted. -> The port 'x11/xorg-protos' was removed on 2009-01-23 because: "Not really necessary" -> Hint: xorg-protos-7.3_2 is required by the following package(s): xorg-7.3_2 -> Hint: checking for overwritten files... -> No files installed by xorg-protos-7.3_2 have been overwritten by other packages. Deinstall xorg-protos-7.3_2 ? [no] y ---> Deinstalling 'xorg-protos-7.3_2' pkg_delete: package 'xorg-protos-7.3_2' is required by these other packages and may not be deinstalled: xorg-7.3_2 ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! xorg-protos-7.3_2 (pkg_delete failed) Command failed [exit code 1]: /usr/local/sbin/pkg_deinstall xorg- protos-7.3_2 [root@shuttle ~]# pkgdb -F ---> Checking the package registry database Stale origin: 'x11/xorg-protos': perhaps moved or obsoleted. -> The port 'x11/xorg-protos' was removed on 2009-01-23 because: "Not really necessary" -> Hint: xorg-protos-7.3_2 is required by the following package(s): xorg-7.3_2 -> Hint: checking for overwritten files... -> No files installed by xorg-protos-7.3_2 have been overwritten by other packages. Deinstall xorg-protos-7.3_2 ? [no] y ---> Deinstalling 'xorg-protos-7.3_2' pkg_delete: package 'xorg-protos-7.3_2' is required by these other packages and may not be deinstalled: xorg-7.3_2 ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! xorg-protos-7.3_2 (pkg_delete failed) -- Paul Beard contact info: www.paulbeard.org/paulbeard.vcf Are you trying to win an argument or solve a problem? From Mark_Andrews at isc.org Sun Feb 8 15:14:39 2009 From: Mark_Andrews at isc.org (Mark Andrews) Date: Sun Feb 8 15:14:46 2009 Subject: xorg-protos && xorg In-Reply-To: Your message of "Sun, 08 Feb 2009 14:42:31 -0800." <77A802C0-C464-4415-92E6-3A0B30B084F1@gmail.com> Message-ID: <200902082314.n18NEONe012415@drugs.dv.isc.org> In message <77A802C0-C464-4415-92E6-3A0B30B084F1@gmail.com>, Paul Beard writes: > ** Port directory not found: x11/xorg-protos > ** There are errors in a meta info for xphelloworld-1.0.1_1 > ** Run 'pkgdb -F' to interactively fix them. > [root@shuttle ~]# pkgdb -F > ---> Checking the package registry database > Stale origin: 'x11/xorg-protos': perhaps moved or obsoleted. > -> The port 'x11/xorg-protos' was removed on 2009-01-23 because: > "Not really necessary" > -> Hint: xorg-protos-7.3_2 is required by the following package(s): > xorg-7.3_2 > -> Hint: checking for overwritten files... > -> No files installed by xorg-protos-7.3_2 have been overwritten by > other packages. > Deinstall xorg-protos-7.3_2 ? [no] y > ---> Deinstalling 'xorg-protos-7.3_2' > pkg_delete: package 'xorg-protos-7.3_2' is required by these other > packages > and may not be deinstalled: > xorg-7.3_2 > ** Listing the failed packages (-:ignored / *:skipped / !:failed) > ! xorg-protos-7.3_2 (pkg_delete failed) > Command failed [exit code 1]: /usr/local/sbin/pkg_deinstall xorg- > protos-7.3_2 > [root@shuttle ~]# pkgdb -F > ---> Checking the package registry database > Stale origin: 'x11/xorg-protos': perhaps moved or obsoleted. > -> The port 'x11/xorg-protos' was removed on 2009-01-23 because: > "Not really necessary" > -> Hint: xorg-protos-7.3_2 is required by the following package(s): > xorg-7.3_2 > -> Hint: checking for overwritten files... > -> No files installed by xorg-protos-7.3_2 have been overwritten by > other packages. > Deinstall xorg-protos-7.3_2 ? [no] y > ---> Deinstalling 'xorg-protos-7.3_2' > pkg_delete: package 'xorg-protos-7.3_2' is required by these other > packages > and may not be deinstalled: > xorg-7.3_2 > ** Listing the failed packages (-:ignored / *:skipped / !:failed) > ! xorg-protos-7.3_2 (pkg_delete failed) pkg_delete -f xorg-protos-7.3_2 > -- > Paul Beard > contact info: www.paulbeard.org/paulbeard.vcf > > Are you trying to win an argument or solve a problem? > > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Mark Andrews, ISC 1 Seymour St., Dundas Valley, NSW 2117, Australia PHONE: +61 2 9871 4742 INTERNET: Mark_Andrews@isc.org From chat95 at mac.com Sun Feb 8 16:36:49 2009 From: chat95 at mac.com (Maho NAKATA) Date: Sun Feb 8 16:36:56 2009 Subject: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 In-Reply-To: <86ab8xccv2.fsf@pluton.xbsd.name> References: <20090207.071848.193785503.chat95@mac.com> <86ab8xccv2.fsf@pluton.xbsd.name> Message-ID: <20090209.093543.55848771.chat95@mac.com> Thanks Denise for your report. [and thanks to others, sorry I have a problem with MobileMe... Many e-mails have been removed before I recieve.] On AMD64 works, and it doesn't work for i386 (7.1-STABLE after importing some infomation for ATI video cards) . Of course DRM is enabled. Taking a diff with two Xorg.0.log, but I cannot see the difference. I suspect I have 4G of ram like nvidia's case, http://www.nvnews.net/vbulletin/showthread.php?p=1700234 http://www.nvnews.net/vbulletin/showthread.php?t=111620 but not. Best, From: darcsis@gmail.com (Denise H. G.) Subject: Re: Compiz works RADEONX1650+FreeBSD7-stable+Xorg7.4 Date: Sun, 08 Feb 2009 20:49:37 +0800 > Maho NAKATA writes: > >> Hi all, >> thanks kudos! >> http://blog.livedoor.jp/maho_nakata/archives/51115172.html >> >> ---------------------------------------------------------------- >> Note: it won't work with i386. Please let me know if it works for you. > > It works for me. X1650 + latest 7.1-STABLE amd64 + latest xorg > >> >> 1. Update to 7-stable (both kernel and userland) >> >> As drm information for RADEON X1650 (etc) are not updated, in the 7.1-RELEASE, first, update the kernel and userland to later than SVN rev 187021 (2009/1/10) version. >> >> 2. load radeon module at the boot time. >> add following in /boot/loader.conf >> radeon_load="YES" >> make sure that radeon drm is activated at the boot time. >> $ dmesg | grep radeon >> info: [drm] Initialized radeon 1.29.0 20080613 >> >> 3. patch /etc/X11/xorg.conf >> --- xorg.conf 2009-02-03 19:28:25.000000000 +0900 >> +++ xorg.conf 2009-02-05 15:55:41.000000000 +0900 >> @@ -3,6 +3,7 @@ >> Screen 0 "Screen0" 0 0 >> InputDevice "Mouse0" "CorePointer" >> InputDevice "Keyboard0" "CoreKeyboard" >> + Option "AIGLX" "true" >> EndSection >> >> Section "Files" >> ---------------------------------- >> In my case hald somehow doesn't work well, so I added >>> Option "AllowEmptyInput" "false" >> as well. >> >> 4. install compiz >> portinstall x11-wm/compiz-fusion >> portinstall x11-wm/emerald >> >> 5. start compiz+emerald by: >> $ LIBGL_ALWAYS_INDIRECT=1 compiz --replace ccp & >> $ emerald --replace & >> ---------------------------------------------------------------- >> Best, >> -- Nakata Maho http://accc.riken.jp/maho/ , http://ja.openoffice.org/ >> _______________________________________________ >> freebsd-x11@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-x11 >> To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" >> > > -- > darcsis ZAI gmail DIAN com > From sfourman at gmail.com Sun Feb 8 17:00:26 2009 From: sfourman at gmail.com (Sam Fourman Jr.) Date: Sun Feb 8 17:00:43 2009 Subject: xf86-video-nouveau In-Reply-To: <86bptc994d.fsf@gmail.com> References: <863aeyhd7f.fsf@gmail.com> <1233506480.1534.38.camel@ferret.2hip.net> <86wsc9pf5w.fsf@gmail.com> <86bptc994d.fsf@gmail.com> Message-ID: <11167f520902081630q346dd38di9e4c7f72cfed984f@mail.gmail.com> > and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv > he/she can try luck with xf86-video-nouveau. I searched for xf86-video-nouveau on freshports.org , I cant find it I would like to track the progress of this driver. I know it is a work in progress and it will be awhile, but I am really wanting 3D accel nvidia on amd64. if I am correct xf86-video-nouveau is 2D only at this point. I would like to know instructions for how to test it on FreeBSD 7.1 or even 8 Sam Fourman Jr. From swell.k at gmail.com Sun Feb 8 21:10:30 2009 From: swell.k at gmail.com (swell.k@gmail.com) Date: Sun Feb 8 21:10:38 2009 Subject: xf86-video-nouveau References: <863aeyhd7f.fsf@gmail.com> <1233506480.1534.38.camel@ferret.2hip.net> <86wsc9pf5w.fsf@gmail.com> <86bptc994d.fsf@gmail.com> <11167f520902081630q346dd38di9e4c7f72cfed984f@mail.gmail.com> Message-ID: <86fxiofb5t.fsf@gmail.com> "Sam Fourman Jr." writes: >> and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv >> he/she can try luck with xf86-video-nouveau. > > I searched for xf86-video-nouveau on freshports.org , I cant find it The port is not comitted or decided upon yet. There is ports/131276 but it has old snapshot. The new snapshot depends on libdrm_nouveau.so which is only in git at the moment. So I think it's better to wait for a new release of libdrm before replying to the PR with update. > I would like to track the progress of this driver. I know it is a work > in progress and it will be awhile, but I am really wanting 3D accel > nvidia on amd64. I don't know about any progress on porting *current* DRM code for nouveau. But the DDX driver *just* worked out of the git. So I packaged it in a port for others to try. > if I am correct xf86-video-nouveau is 2D only at this point. Right. Though I don't know if any of 2D accel parts require DRM support (eg., EXA, Xv, XvMC). > I would like to know instructions for how to test it on FreeBSD 7.1 or even 8 It should be as simple as - delete nvidia-driver (if you have one installed) - extract, compile and install libdrm and nouveau. - enable nouveau in xorg.conf If you happen to want one from that PR then you don't need new libdrm. The one already in ports should work fine. > > Sam Fourman Jr. From drl at bsd.my Mon Feb 9 00:13:27 2009 From: drl at bsd.my (Darryl Yeoh) Date: Mon Feb 9 00:13:34 2009 Subject: bluetooth not worked after upgrade to xorg 7.4 Message-ID: <20090209161321.e5cb3a53.drl@bsd.my> Hi Robert, On Sun, 2009-02-08 at 06:17 +0300, Subscriber wrote: >> >> After update xorg my bluetooth mouse (Logitech v470) won't work in graphic >> mode. Just after boot up, when in console, mouse work as expected, but after >> typing 'startx\n' I can use only built-in touchpad. However randomly (with >> probability, say, 1/10) it work in graphic mode too - until next reboot. >> >> If mouse not work, I tried to restart hcsecd and bthidd, bring mouse visible >> via 'connect' button. All this actions seems no effect in graphic mode. >> > > This sounds like it may be the hald/xorg race. I just committed a patch > to the xserver that should address this. Try updating xorg-server and > see if that helps. Updated to the latest xorg-server-1.5.3_5,1 but it doesn't seem to address the problem. I also did a reboot just to be sure and still nothing. Darryl From bugmaster at FreeBSD.org Mon Feb 9 03:07:03 2009 From: bugmaster at FreeBSD.org (FreeBSD bugmaster) Date: Mon Feb 9 03:09:49 2009 Subject: Current problem reports assigned to freebsd-x11@FreeBSD.org Message-ID: <200902091107.n19B71Dn009314@freefall.freebsd.org> Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/131339 x11 x11/oclock - repomove to x11-clocks/ o ports/131304 x11 x11/xorg: Xorg/Xfree/X11R6 startx problem with 'hexdum o ports/131289 x11 x11/xorg: xorg 7.4 exiting the server leads to instant o ports/131124 x11 x11/xorg - New xorg 7.4 hangs until mouse is moved whe f ports/131120 x11 x11/libxcb - xauth failes when using libX11/libxcb o ports/131016 x11 x11/xorg - xorg-7.4 renders system unusable! o ports/130815 x11 x11/xorg: Default Xorg (from install CD) @ 7.1-RELEASE s ports/129748 x11 x11-servers/xorg-server: XAA Offscreen Pixmaps never w o ports/129189 x11 x11/xorg: xorg config -testmode - horizontal sync synt o ports/128831 x11 x11-drivers/xf86-video-intel - X server is broken on I o ports/127436 x11 x11/xorg: xorg randomly uses 100% CPU with Intel + KDE f ports/126904 x11 x11/xorg startx fails on driver loading for nVidia GeF o ports/126812 x11 x11-drivers/xf86-video-ati - System freeze when exitin o ports/125883 x11 x11-fonts/xorg-fonts-cyrillic is installed, but fonts o ports/125661 x11 x11/xorg: startx fails after a couple of attempts o ports/124861 x11 Keyboard problems with xorg o ports/124220 x11 x11-servers/xorg-server - X.org server runs in infinit o ports/123137 x11 x11/libX11: missing ru_RU.UTF-8 locale o ports/122924 x11 XCreateImage fails in most recent x11/XOrg o ports/122830 x11 x11/xorg: Error in I830WaitLpRing() o ports/121360 x11 x11/xorg - Change default of ~/.xsession-errors to off o ports/121230 x11 [patch] ports/x11/xkeyboard-config WITHOUT_NLS support o ports/119037 x11 x11: Can't type _ (Underscore) under X (gnome) o ports/118950 x11 x11-drivers/xf86-video-nv - xorg xf86 nv (nvidia) driv o ports/118645 x11 Xorg need realtime priority for mouse work nice o ports/118547 x11 [patch] x11/xdm fails with pam_krb5 f ports/118217 x11 xorg doesnt find usb mouse when initiated with devd, w f ports/117907 x11 x11-servers/mga_hal broken on 7.0-BETA (GLIBC error) o ports/117766 x11 x11-servers/xorg-server (7.3) crashes under heavy load o ports/117195 x11 ix11/Xorg 7.3 dumps core at exit (sig 11) f ports/116603 x11 x11/xorg server 7.3 hangs up o ports/116443 x11 x11-drivers/xf86-input-keyboard patch for USB jp106 ke o ports/116359 x11 x11/xorg - screen blinks with PCI-E nvidia card and ve o ports/115020 x11 New port: graphics/osmesa - Mesa's off-screen renderin f ports/114827 x11 Xorg server crashes when starting astro/google-earth o ports/113106 x11 x11/xorg - Xorg 7.2 + Mach64 + dri produces error mess f ports/106370 x11 Screen corruption when using Direct Rendering on a PCI 37 problems total. From avg at icyb.net.ua Mon Feb 9 06:10:07 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Mon Feb 9 06:10:14 2009 Subject: xorg.conf: to hardcode or not Message-ID: <499035F8.50907@icyb.net.ua> This is not something FreeBSD-specific, but I decided to chat with the fellows first. For the past several years I've been a big fan of minimalistic xorg.conf. Everything that X could auto-detect I left out of xorg.conf. Works great most of the time. But there are some edge cases. If X gets restarted (e.g. a machine gets reboot) when a monitor is switched off, then X can not possibly guess anything about it. And it doesn't have smarts/options to re-use anything auto-detected on a previous start. So it uses some (supposedly safe) fallback mode. When this can be bad: 1. when you use x11vnc from a remote place; 2. when X auto-detection goes too crazy without a monitor; I believe that I had 2 happening on me this morning. My machine was restarted while I was away and a monitor was switched off. When I came back and turned on the monitor I was greeted with 1024x768 resolution instead of usual 1680x1050 and, what is much worse, with "bad" text consoles. When I switched to VT1-VT8 the monitor would just go power-saving mode. Restarting X server helped it, but text consoles remained the same. Reboot helped (of course). So I am now thinking about reverting to hard-coding monitor parameters in xorg.conf. OTOH, I am not 100% user that that would really prevent too much auto-guessing. -- Andriy Gapon From wblock at wonkity.com Mon Feb 9 07:00:00 2009 From: wblock at wonkity.com (Warren Block) Date: Mon Feb 9 07:00:16 2009 Subject: xorg.conf: to hardcode or not In-Reply-To: <499035F8.50907@icyb.net.ua> References: <499035F8.50907@icyb.net.ua> Message-ID: On Mon, 9 Feb 2009, Andriy Gapon wrote: > For the past several years I've been a big fan of minimalistic > xorg.conf. Everything that X could auto-detect I left out of xorg.conf. I agree with that, and minimalistic config files in general. > Works great most of the time. > But there are some edge cases. > If X gets restarted (e.g. a machine gets reboot) when a monitor is > switched off, then X can not possibly guess anything about it. And it > doesn't have smarts/options to re-use anything auto-detected on a > previous start. So it uses some (supposedly safe) fallback mode. Explicitly setting layout options like PreferredMode and Position in Monitor sections is practically necessary if you have multiple monitors, or ones which may not be on when X starts. Specifying which monitor is attached to which port in the Driver section is also useful. > When this can be bad: > 1. when you use x11vnc from a remote place; > 2. when X auto-detection goes too crazy without a monitor; > > I believe that I had 2 happening on me this morning. > My machine was restarted while I was away and a monitor was switched > off. When I came back and turned on the monitor I was greeted with > 1024x768 resolution instead of usual 1680x1050 and, what is much worse, > with "bad" text consoles. When I switched to VT1-VT8 the monitor would > just go power-saving mode. Restarting X server helped it, but text > consoles remained the same. Reboot helped (of course). That might be FreeBSD-specific, or could be an X driver problem. A motherboard with built-in ProSavage video used to have trouble switching back to text mode. The new xorg-7.4 has fixed that. > So I am now thinking about reverting to hard-coding monitor parameters > in xorg.conf. OTOH, I am not 100% user that that would really prevent > too much auto-guessing. Unusual configurations need more information in xorg.conf to override defaults. It's not a bad thing, just a way to lock X down to the right combination of possibilities. -Warren Block * Rapid City, South Dakota USA From hanche at math.ntnu.no Mon Feb 9 07:00:02 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Mon Feb 9 07:00:16 2009 Subject: Odd mouse button behaviour Message-ID: <20090209.155959.599756832266413927.hanche@math.ntnu.no> In my setup, I have a trackball and a mouse. (I use the mouse almost exclusively for the scroll wheel.) The trackball has four buttons, numbered from left to right: 1 8 9 3. I like to have them as 1 6 2 3 instead, so I have a file containing pointer = 1 9 3 4 5 8 7 6 2 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 (on one line) that I feed to xmodmap. This works, every time, BUT once in a while the buttons revert to producing 1 8 9 3 again after a while (as tested with xev). However, xmodmap -pp indicates that my pointer settings are as I had set them. Still, running xmodmap again cures the problem for a while. I have no idea what triggers this, so I don't feel I have enough data to write a PR. Does this ring a bell with any of you folks? If not, can you suggest an experiment that might provide some more information? FWIW, I have these packages (on 7-STABLE as of mid-January): dbus-1.2.4.4 hal-0.5.11_17 xf86-input-mouse-1.4.0_2 xorg-server-1.5.3_3,1 - Harald From alessandro.dev at gmail.com Mon Feb 9 07:30:38 2009 From: alessandro.dev at gmail.com (Alessandro Silveira) Date: Mon Feb 9 07:30:44 2009 Subject: About ATI crossfire Message-ID: <720e1f20902090704l7ba58087rc3825704db438aa0@mail.gmail.com> Hello I am developing a project based in FreeBSD, but i am not sure if FreeBSD suport ATI Crossfire tecnology. You can give me more information about this. Regards Alessandro From oberman at es.net Mon Feb 9 10:40:25 2009 From: oberman at es.net (Kevin Oberman) Date: Mon Feb 9 10:40:33 2009 Subject: Initial RandR set-up In-Reply-To: Your message of "Mon, 09 Feb 2009 07:59:57 MST." Message-ID: <20090209184022.51E451CC0B@ptavv.es.net> In these days of xrandr, is there a good, standard way to do the initial set-up of the display? I currently have a script to do "xrandr --output VGA2 --right-of VGA1" and, in one case, set the resolution of the second display. I'd like to know the best way to kick this off as early as possible in the startup of X. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From rnoland at FreeBSD.org Mon Feb 9 11:17:01 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 9 11:17:07 2009 Subject: Initial RandR set-up In-Reply-To: <20090209184022.51E451CC0B@ptavv.es.net> References: <20090209184022.51E451CC0B@ptavv.es.net> Message-ID: <1234207004.1524.6.camel@ferret.2hip.net> On Mon, 2009-02-09 at 10:40 -0800, Kevin Oberman wrote: > In these days of xrandr, is there a good, standard way to do the initial > set-up of the display? I currently have a script to do "xrandr --output > VGA2 --right-of VGA1" and, in one case, set the resolution of the second > display. I'd like to know the best way to kick this off as early as > possible in the startup of X. Currently, this is probably the best way to deal with it. If you use gnome, 2.24's display manager tool will handle it, though it still has some issues. The intel 965 laptop that I was using needed to disable LVDS before it could enable both external displays and that didn't seem to work quite right. It tried to do the right thing, but I still had to mess with the display settings a bit to use the second external display. I didn't get around to looking at the code to fix it though. robert. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090209/f282692f/attachment.pgp From cokane at FreeBSD.org Mon Feb 9 11:17:30 2009 From: cokane at FreeBSD.org (Coleman Kane) Date: Mon Feb 9 11:17:37 2009 Subject: Fix regarding the recent XKB changes in freedesktop.org head Message-ID: <1234206088.44207.7.camel@localhost> Hello, So I recently spent random free-time bits on becoming impatient waiting for the freedesktop.org maintainers to bring the head of xf86-input-keyboard up-to-date with the head of xorg-server. This applies only to those select few that, for one reason or another, are tracking the head of the freedesktop.org git repositories for xorg-server, libXi, xf86-input-keyboard, and the like. Numerous xorg-server changes were committed which are intermediate steps in an XKB overhaul, AFAICT. It seems that some people with limited time have not been able to keep their trees in sync. This has caused widespread breakage of the core X.org system since around Jan 21st. After much searching, I finally found that there is indeed a fix to this which seems to work for me right here: * http://bugs.freedesktop.org/show_bug.cgi?id=19724 You may come across a "kbd-pass-the-absinthe.diff" patch which is supposed to fix this mess (from Daniel Stone). When I tried using that one, all of my key mappings were messed up, and key-repeat stopped working properly (and also didn't "not work" properly either). The patch posted to the fd.o bug above works much better for me on FreeBSD-current. I wanted to share this knowledge with anyone else who might be stuck in last month's sources due to this bug. -- Coleman Kane -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 195 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090209/31b9f1d0/attachment.pgp From wblock at wonkity.com Mon Feb 9 11:22:16 2009 From: wblock at wonkity.com (Warren Block) Date: Mon Feb 9 11:22:23 2009 Subject: Initial RandR set-up In-Reply-To: <20090209184022.51E451CC0B@ptavv.es.net> References: <20090209184022.51E451CC0B@ptavv.es.net> Message-ID: On Mon, 9 Feb 2009, Kevin Oberman wrote: > In these days of xrandr, is there a good, standard way to do the initial > set-up of the display? I currently have a script to do "xrandr --output > VGA2 --right-of VGA1" and, in one case, set the resolution of the second > display. I'd like to know the best way to kick this off as early as > possible in the startup of X. IMO it's better to set positions and resolutions in xorg.conf directly. That way it's all in one place. Here's an example: Section "Monitor" Identifier "Monitor0" VendorName "HWP" ModelName "2615" Option "PreferredMode" "1920x1200" Option "Position" "1024 0" EndSection Section "Monitor" Identifier "Monitor1" VendorName "PHL" ModelName "Philips 150B3" Option "PreferredMode" "1024x768" Option "Position" "0 0" EndSection The Position option determines where the monitor is positioned on the virtual screen. I also manually assign the monitors to outputs on the video card: Section "Device" Driver "radeon" VendorName "ATI Technologies Inc" BoardName "Radeon X1650 Pro" BusID "PCI:1:0:0" Option "AccelMethod" "EXA" # WB: prevent flickering pointer Option "SWcursor" "True" Option "Monitor-DVI-0" "Monitor0" Option "Monitor-DVI-1" "Monitor1" EndSection xrandr shows the correct names of the outputs for those last two lines. The Screen section is simple: Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Virtual 2944 1200 EndSubSection EndSection Since my monitors are side by side, the Virtual size is just the sum of the monitor widths, and the height is the larger of the two. -Warren Block * Rapid City, South Dakota USA From oberman at es.net Mon Feb 9 11:26:45 2009 From: oberman at es.net (Kevin Oberman) Date: Mon Feb 9 11:26:52 2009 Subject: Initial RandR set-up In-Reply-To: Your message of "Mon, 09 Feb 2009 14:16:44 EST." <1234207004.1524.6.camel@ferret.2hip.net> Message-ID: <20090209192643.B71FD1CC27@ptavv.es.net> > From: Robert Noland > Date: Mon, 09 Feb 2009 14:16:44 -0500 > > On Mon, 2009-02-09 at 10:40 -0800, Kevin Oberman wrote: > > In these days of xrandr, is there a good, standard way to do the initial > > set-up of the display? I currently have a script to do "xrandr --output > > VGA2 --right-of VGA1" and, in one case, set the resolution of the second > > display. I'd like to know the best way to kick this off as early as > > possible in the startup of X. > > Currently, this is probably the best way to deal with it. > > If you use gnome, 2.24's display manager tool will handle it, though it > still has some issues. The intel 965 laptop that I was using needed to > disable LVDS before it could enable both external displays and that > didn't seem to work quite right. It tried to do the right thing, but I > still had to mess with the display settings a bit to use the second > external display. I didn't get around to looking at the code to fix it > though. Robert, Thanks! I was totally unaware of the display manager tool. I just played with it for a bit and it seems to work quite well. I'll play some more to make sure that it really does what I need when I get a bit more time. (I have an nVidia GeForce 9800 GTX. Not my choice, but I as not asked.) -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From rnoland at FreeBSD.org Mon Feb 9 11:30:27 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 9 11:30:37 2009 Subject: Initial RandR set-up In-Reply-To: References: <20090209184022.51E451CC0B@ptavv.es.net> Message-ID: <1234207817.1524.8.camel@ferret.2hip.net> On Mon, 2009-02-09 at 12:22 -0700, Warren Block wrote: > On Mon, 9 Feb 2009, Kevin Oberman wrote: > > > In these days of xrandr, is there a good, standard way to do the initial > > set-up of the display? I currently have a script to do "xrandr --output > > VGA2 --right-of VGA1" and, in one case, set the resolution of the second > > display. I'd like to know the best way to kick this off as early as > > possible in the startup of X. This works well, if you have a static setup. It's not so convenient if your setup changes with different display configurations. robert. > IMO it's better to set positions and resolutions in xorg.conf directly. > That way it's all in one place. Here's an example: > > Section "Monitor" > Identifier "Monitor0" > VendorName "HWP" > ModelName "2615" > Option "PreferredMode" "1920x1200" > Option "Position" "1024 0" > EndSection > > Section "Monitor" > Identifier "Monitor1" > VendorName "PHL" > ModelName "Philips 150B3" > Option "PreferredMode" "1024x768" > Option "Position" "0 0" > EndSection > > The Position option determines where the monitor is positioned on the > virtual screen. I also manually assign the monitors to outputs on the > video card: > > Section "Device" > Driver "radeon" > VendorName "ATI Technologies Inc" > BoardName "Radeon X1650 Pro" > BusID "PCI:1:0:0" > Option "AccelMethod" "EXA" > # WB: prevent flickering pointer > Option "SWcursor" "True" > Option "Monitor-DVI-0" "Monitor0" > Option "Monitor-DVI-1" "Monitor1" > EndSection > > xrandr shows the correct names of the outputs for those last two lines. > > The Screen section is simple: > > Section "Screen" > Identifier "Screen0" > Device "Card0" > Monitor "Monitor0" > SubSection "Display" > Virtual 2944 1200 > EndSubSection > EndSection > > Since my monitors are side by side, the Virtual size is just the sum of > the monitor widths, and the height is the larger of the two. > > -Warren Block * Rapid City, South Dakota USA > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090209/c594218a/attachment.pgp From oberman at es.net Mon Feb 9 11:35:50 2009 From: oberman at es.net (Kevin Oberman) Date: Mon Feb 9 11:35:56 2009 Subject: Initial RandR set-up In-Reply-To: Your message of "Mon, 09 Feb 2009 12:22:12 MST." Message-ID: <20090209193549.0C26B1CC0B@ptavv.es.net> > Date: Mon, 9 Feb 2009 12:22:12 -0700 (MST) > From: Warren Block > > On Mon, 9 Feb 2009, Kevin Oberman wrote: > > > In these days of xrandr, is there a good, standard way to do the initial > > set-up of the display? I currently have a script to do "xrandr --output > > VGA2 --right-of VGA1" and, in one case, set the resolution of the second > > display. I'd like to know the best way to kick this off as early as > > possible in the startup of X. > > IMO it's better to set positions and resolutions in xorg.conf directly. > That way it's all in one place. Here's an example: > > Section "Monitor" > Identifier "Monitor0" > VendorName "HWP" > ModelName "2615" > Option "PreferredMode" "1920x1200" > Option "Position" "1024 0" > EndSection > > Section "Monitor" > Identifier "Monitor1" > VendorName "PHL" > ModelName "Philips 150B3" > Option "PreferredMode" "1024x768" > Option "Position" "0 0" > EndSection > > The Position option determines where the monitor is positioned on the > virtual screen. I also manually assign the monitors to outputs on the > video card: > > Section "Device" > Driver "radeon" > VendorName "ATI Technologies Inc" > BoardName "Radeon X1650 Pro" > BusID "PCI:1:0:0" > Option "AccelMethod" "EXA" > # WB: prevent flickering pointer > Option "SWcursor" "True" > Option "Monitor-DVI-0" "Monitor0" > Option "Monitor-DVI-1" "Monitor1" > EndSection > > xrandr shows the correct names of the outputs for those last two lines. > > The Screen section is simple: > > Section "Screen" > Identifier "Screen0" > Device "Card0" > Monitor "Monitor0" > SubSection "Display" > Virtual 2944 1200 > EndSubSection > EndSection > > Since my monitors are side by side, the Virtual size is just the sum of > the monitor widths, and the height is the larger of the two. > > -Warren Block * Rapid City, South Dakota USA > Thanks, Warren. I had missed the "Position" option. I still have to force resolution on one system, though. Looks like one monitor of mine does not give X the correct information as X does not accept 1280x1024 as a mode when I put it in the xorg.conf. I can set it with xrandr, though. The other monitor (they are identical models) works fine with the PreferredMode option. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From aryeh.friedman at gmail.com Mon Feb 9 12:29:21 2009 From: aryeh.friedman at gmail.com (Aryeh M. Friedman) Date: Mon Feb 9 12:29:27 2009 Subject: is 7.4 ready Message-ID: <4990921F.6000105@gmail.com> I tried updating to 7.4 a week or so ago ands it was a disaster... have all the kinks been worked out? (I know I will have to switch to nv instead of the nvidia driver I use now) From ivoras at freebsd.org Mon Feb 9 13:50:47 2009 From: ivoras at freebsd.org (Ivan Voras) Date: Mon Feb 9 13:50:55 2009 Subject: KDE 4.2 & desktop effects on Intel Message-ID: Hi, I've successfully (or so it seems) installed KDE 4.2 on my Acer Aspire One "netbook". The things I tried work ok, except one thing: I can't turn on "desktop effects" in KDE. AFAIK this relies on compositing and OpenGL, which I know work on this hardware since before this there was Ubuntu Linux on it (with desktop-cube, etc). KDE doesn't want to enable both OpenGL and XRender modes. I don't have xorg.conf, everything is autodetected. Here's Xorg.log: X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-RELEASE i386 Current Operating System: FreeBSD bellatrix.cosmos 7.1-STABLE FreeBSD 7.1-STABLE #0: Sun Feb 8 05:52:55 CET 2009 ivoras@bellatrix.cosmos:/usr/obj/usr/src/sys/GENERIC i386 Build Date: 07 February 2009 11:10:38PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 9 21:33:59 2009 (EE) Unable to locate/open config file (II) Loader magic: 0x81bcde0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GME Express Integrated Graphics Controller rev 3, Mem @ 0x58480000/0, 0x40000000/0, 0x58500000/0, I/O @ 0x000060c0/0, BIOS @ 0x????????/65536 (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0x58400000/0 (==) Matched intel for the autoconfigured driver New driver is "intel" (==) Using default built-in configuration (30 lines) (==) --- Start of built-in configuration --- Section "Device" Identifier "Builtin Default intel Device 0" Driver "intel" EndSection Section "Screen" Identifier "Builtin Default intel Screen 0" Device "Builtin Default intel Device 0" EndSection Section "Device" Identifier "Builtin Default fbdev Device 0" Driver "fbdev" EndSection Section "Screen" Identifier "Builtin Default fbdev Screen 0" Device "Builtin Default fbdev Device 0" EndSection Section "Device" Identifier "Builtin Default vesa Device 0" Driver "vesa" EndSection Section "Screen" Identifier "Builtin Default vesa Screen 0" Device "Builtin Default vesa Device 0" EndSection Section "ServerLayout" Identifier "Builtin Default Layout" Screen "Builtin Default intel Screen 0" Screen "Builtin Default fbdev Screen 0" Screen "Builtin Default vesa Screen 0" EndSection (==) --- End of built-in configuration --- (==) ServerLayout "Builtin Default Layout" (**) |-->Screen "Builtin Default intel Screen 0" (0) (**) | |-->Monitor "" (**) | |-->Device "Builtin Default intel Device 0" (==) No monitor specified for screen "Builtin Default intel Screen 0". Using a default monitor configuration. (**) |-->Screen "Builtin Default fbdev Screen 0" (1) (**) | |-->Monitor "" (**) | |-->Device "Builtin Default fbdev Device 0" (==) No monitor specified for screen "Builtin Default fbdev Screen 0". Using a default monitor configuration. (**) |-->Screen "Builtin Default vesa Screen 0" (2) (**) | |-->Monitor "" (**) | |-->Device "Builtin Default vesa Device 0" (==) No monitor specified for screen "Builtin Default vesa Screen 0". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "freetype" (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Font Renderer ABI class: X.Org Font Renderer, version 0.6 (II) Loading font FreeType (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 1.1 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org Server Extension, version 1.1 (II) Loading extension XFree86-DRI (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.5.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) LoadModule: "fbdev" (WW) Warning, couldn't open module fbdev (II) UnloadModule: "fbdev" (EE) Failed to load module "fbdev" (module does not exist, 0) (II) LoadModule: "vesa" (II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so (II) Module vesa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.1.0 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) VESA: driver for VESA chipsets: vesa (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (WW) Falling back to old probe method for vesa (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.3, module version = 0.1.0 ABI class: X.Org Video Driver, version 4.1 (II) intel(0): Creating default Display subsection in Screen section "Builtin Default intel Screen 0" for depth/fbbpp 24/32 (==) intel(0): Depth 24, (==) framebuffer bpp 32 (==) intel(0): RGB weight 888 (==) intel(0): Default visual is TrueColor (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME (--) intel(0): Chipset: "945GME" (--) intel(0): Linear framebuffer at 0x40000000 (--) intel(0): IO registers at addr 0x58480000 (==) intel(0): Using EXA for acceleration (II) intel(0): 2 display pipes available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA has no monitor section (II) intel(0): Output LVDS has no monitor section (II) intel(0): I2C bus "LVDSDDC_C" initialized. (II) intel(0): Attempting to determine panel fixed mode. (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. (II) intel(0): EDID vendor "AUO", prod id 4546 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): EDID vendor "AUO", prod id 4546 (II) intel(0): Output VGA disconnected (II) intel(0): Output LVDS connected (II) intel(0): Using exact sizes for initial modes (II) intel(0): Output LVDS using initial mode 1024x600 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) intel(0): Monitoring connected displays enabled (II) intel(0): detected 256 kB GTT. (II) intel(0): detected 7932 kB stolen memory. (==) intel(0): video overlay key set to 0x101fe (==) intel(0): Intel XvMC decoder disabled (==) intel(0): Will not try to enable page flipping (==) intel(0): Triple buffering disabled (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) (==) intel(0): DPI set to (96, 96) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "exa" (II) LoadModule: "exa" (II) Loading /usr/local/lib/xorg/modules//libexa.so (II) Module exa: vendor="X.Org Foundation" compiled for 1.5.3, module version = 2.4.0 ABI class: X.Org Video Driver, version 4.1 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to 0xd000000a (WW) intel(0): PP_STATUS before: on, ready, sequencing idle (WW) intel(0): PP_STATUS after: on, ready, sequencing on (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x80000202 (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS (II) UnloadModule: "vesa" (II) Unloading /usr/local/lib/xorg/modules/drivers//vesa_drv.so (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 241152 total, 0 used (II) intel(0): I830CheckAvailableMemory: 964608 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) [drm] DRM interface version 1.2 (II) [drm] DRM open master succeeded. (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. (II) intel(0): [drm] framebuffer mapped by ddx driver (II) intel(0): [drm] added 1 reserved context for kernel (II) intel(0): X context handle = 0x1 (II) intel(0): [drm] installed DRM signal handler (**) intel(0): Framebuffer compression enabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): [drm] Registers = 0x58480000 (II) intel(0): [drm] ring buffer = 0x40000000 (II) intel(0): [drm] mapped front buffer at 0x40800000, handle = 0x40800000 (II) intel(0): [drm] mapped back buffer at 0x41800000, handle = 0x41800000 (II) intel(0): [drm] mapped depth buffer at 0x41c00000, handle = 0x41c00000 (II) intel(0): [drm] mapped classic textures at 0x42000000, handle = 0x42000000 (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 (II) intel(0): [dri] visual configs initialized (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 12582912 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): [DRI] installation complete (II) intel(0): xf86BindGARTMemory: bind key 22 at 0x00800000 (pgoffset 2048) (II) intel(0): xf86BindGARTMemory: bind key 23 at 0x00c00000 (pgoffset 3072) (II) intel(0): xf86BindGARTMemory: bind key 24 at 0x01800000 (pgoffset 6144) (II) intel(0): xf86BindGARTMemory: bind key 25 at 0x01c00000 (pgoffset 7168) (II) intel(0): xf86BindGARTMemory: bind key 26 at 0x02000000 (pgoffset 8192) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, 0x000000003f820000 physical ) (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, 0x000000003fe20000 physical ) (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, 0x000000003fe21000 physical ) (II) intel(0): 0x0062b000-0x00632fff: logical 3D context (32 kB) (II) intel(0): 0x00633000-0x00732fff: fake bufmgr (1024 kB) (II) intel(0): 0x00733000-0x00733fff: overlay registers (4 kB, 0x000000003ff33000 physical ) (II) intel(0): 0x007bf000: end of stolen memory (II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) X tiled (II) intel(0): 0x00c00000-0x017fffff: exa offscreen (12288 kB) (II) intel(0): 0x01800000-0x01bfffff: back buffer (4096 kB) X tiled (II) intel(0): 0x01c00000-0x01ffffff: depth buffer (4096 kB) X tiled (II) intel(0): 0x02000000-0x03ffffff: classic textures (32768 kB) (II) intel(0): 0x10000000: end of aperture (WW) intel(0): ESR is 0x00000001, instruction error (WW) intel(0): Existing errors found in hardware state. (II) intel(0): using SSC reference clock of 96 MHz (II) intel(0): Selecting standard 18 bit TMDS pixel format. (II) intel(0): Output configuration: (II) intel(0): Pipe A is off (II) intel(0): Display plane A is now disabled and connected to pipe A. (II) intel(0): Pipe B is on (II) intel(0): Display plane B is now enabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe none (II) intel(0): Output LVDS is connected to pipe B (II) intel(0): [drm] dma control initialized, using IRQ 16 (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Enabled (--) RandR disabled (II) Initializing built-in extension MIT-SHM (II) Initializing built-in extension XInputExtension (II) Initializing built-in extension XTEST (II) Initializing built-in extension XKEYBOARD (II) Initializing built-in extension XINERAMA (II) Initializing built-in extension XFIXES (II) Initializing built-in extension RENDER (II) Initializing built-in extension RANDR (II) Initializing built-in extension COMPOSITE (II) Initializing built-in extension DAMAGE (II) Initializing built-in extension XEVIE (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so (II) GLX: Initialized DRISWRAST GL provider for screen 0 (II) intel(0): Setting screen physical size to 195 x 113 (II) config/hal: Adding input device AT Keyboard (II) LoadModule: "kbd" (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so (II) Module kbd: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.3.2 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) AT Keyboard: always reports core events (**) Option "Protocol" "standard" (**) AT Keyboard: Protocol: standard (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xorg" (**) AT Keyboard: XkbRules: "xorg" (**) Option "XkbModel" "pc105" (**) AT Keyboard: XkbModel: "pc105" (**) Option "XkbLayout" "us" (**) AT Keyboard: XkbLayout: "us" (**) Option "CustomKeycodes" "off" (**) AT Keyboard: CustomKeycodes disabled (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) config/hal: Adding input device PS/2 Mouse (II) LoadModule: "mouse" (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so (II) Module mouse: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.4.0 Module class: X.Org XInput Driver ABI class: X.Org XInput driver, version 2.1 (**) PS/2 Mouse: Device: "/dev/sysmouse" (==) PS/2 Mouse: Protocol: "Auto" (**) PS/2 Mouse: always reports core events (**) Option "Device" "/dev/sysmouse" (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 (**) PS/2 Mouse: Buttons: 9 (**) PS/2 Mouse: Sensitivity: 1 (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) (II) PS/2 Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 (II) PS/2 Mouse: SetupAuto: protocol is SysMouse Here's what glxinfo says: name of display: :0.0 display: :0 screen: 0 direct rendering: Yes server glx vendor string: SGI server glx version string: 1.2 server glx extensions: GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer client glx vendor string: SGI client glx version string: 1.4 client glx extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap GLX version: 1.2 GLX extensions: GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_SGI_make_current_read, GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig OpenGL vendor string: Tungsten Graphics, Inc OpenGL renderer string: Mesa DRI Intel(R) 945GME 20090114 x86/MMX/SSE2 OpenGL version string: 1.4 Mesa 7.3 OpenGL extensions: GL_ARB_depth_texture, GL_ARB_fragment_program, GL_ARB_multisample, GL_ARB_multitexture, GL_ARB_point_parameters, GL_ARB_shadow, GL_ARB_texture_border_clamp, GL_ARB_texture_compression, GL_ARB_texture_cube_map, GL_ARB_texture_env_add, GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, GL_ARB_vertex_program, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_equation_separate, GL_EXT_blend_func_separate, GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint, GL_EXT_cull_vertex, GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels, GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, GL_EXT_secondary_color, GL_EXT_separate_specular_color, GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, GL_APPLE_client_storage, GL_APPLE_packed_pixels, GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3, GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent, GL_NV_point_sprite, GL_NV_texture_rectangle, GL_NV_texgen_reflection, GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_OES_read_format, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SUN_multi_draw_arrays 3 GLX Visuals visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x52 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 16 GLXFBConfigs: visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat ---------------------------------------------------------------------- 0x53 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x54 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x55 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x56 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x5f 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x60 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x61 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x62 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x63 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x64 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x65 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None 0x66 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow 0x6f 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x70 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow 0x71 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None 0x72 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow glxgears runs at 61-62 FPS, which looks suspiciously similar to the refresh rate. If more information is needed, please ask. It might be a KDE error but I can't find KDE logs (if there are any) and the GUI message is generic. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 258 bytes Desc: OpenPGP digital signature Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090209/0b26feb0/signature.pgp From adamk at voicenet.com Mon Feb 9 14:06:13 2009 From: adamk at voicenet.com (Adam K Kirchhoff) Date: Mon Feb 9 14:06:21 2009 Subject: KDE 4.2 & desktop effects on Intel In-Reply-To: References: Message-ID: <20090209170412.4ccd6875@sorrow.ashke.com> On Mon, 09 Feb 2009 22:49:58 +0100 Ivan Voras wrote: > Hi, > > I've successfully (or so it seems) installed KDE 4.2 on my Acer Aspire > One "netbook". The things I tried work ok, except one thing: I can't > turn on "desktop effects" in KDE. AFAIK this relies on compositing and > OpenGL, which I know work on this hardware since before this there was > Ubuntu Linux on it (with desktop-cube, etc). KDE doesn't want to enable > both OpenGL and XRender modes. According to the output below, it looks like AIGLX is getting disabled by default: (==) AIGLX disabled Try creating a new xorg.conf file and enabling AIGLX in the ServerLayout section. Adam > I don't have xorg.conf, everything is autodetected. > > Here's Xorg.log: > > X.Org X Server 1.5.3 > Release Date: 5 November 2008 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 7.1-RELEASE i386 > Current Operating System: FreeBSD bellatrix.cosmos 7.1-STABLE FreeBSD > 7.1-STABLE #0: Sun Feb 8 05:52:55 CET 2009 > ivoras@bellatrix.cosmos:/usr/obj/usr/src/sys/GENERIC i386 > Build Date: 07 February 2009 11:10:38PM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 9 21:33:59 2009 > (EE) Unable to locate/open config file > (II) Loader magic: 0x81bcde0 > (II) Module ABI versions: > X.Org ANSI C Emulation: 0.4 > X.Org Video Driver: 4.1 > X.Org XInput driver : 2.1 > X.Org Server Extension : 1.1 > X.Org Font Renderer : 0.6 > (II) Loader running on freebsd > (--) Using syscons driver with X support (version 2.0) > (--) using VT number 9 > > (--) PCI:*(0@0:2:0) Intel Corporation Mobile 945GME Express Integrated > Graphics Controller rev 3, Mem @ 0x58480000/0, 0x40000000/0, > 0x58500000/0, I/O @ 0x000060c0/0, BIOS @ 0x????????/65536 > (--) PCI: (0@0:2:1) Intel Corporation Mobile 945GM/GMS/GME, 943/940GML > Express Integrated Graphics Controller rev 3, Mem @ 0x58400000/0 > (==) Matched intel for the autoconfigured driver > New driver is "intel" > (==) Using default built-in configuration (30 lines) > (==) --- Start of built-in configuration --- > Section "Device" > Identifier "Builtin Default intel Device 0" > Driver "intel" > EndSection > Section "Screen" > Identifier "Builtin Default intel Screen 0" > Device "Builtin Default intel Device 0" > EndSection > Section "Device" > Identifier "Builtin Default fbdev Device 0" > Driver "fbdev" > EndSection > Section "Screen" > Identifier "Builtin Default fbdev Screen 0" > Device "Builtin Default fbdev Device 0" > EndSection > Section "Device" > Identifier "Builtin Default vesa Device 0" > Driver "vesa" > EndSection > Section "Screen" > Identifier "Builtin Default vesa Screen 0" > Device "Builtin Default vesa Device 0" > EndSection > Section "ServerLayout" > Identifier "Builtin Default Layout" > Screen "Builtin Default intel Screen 0" > Screen "Builtin Default fbdev Screen 0" > Screen "Builtin Default vesa Screen 0" > EndSection > (==) --- End of built-in configuration --- > (==) ServerLayout "Builtin Default Layout" > (**) |-->Screen "Builtin Default intel Screen 0" (0) > (**) | |-->Monitor "" > (**) | |-->Device "Builtin Default intel Device 0" > (==) No monitor specified for screen "Builtin Default intel Screen 0". > Using a default monitor configuration. > (**) |-->Screen "Builtin Default fbdev Screen 0" (1) > (**) | |-->Monitor "" > (**) | |-->Device "Builtin Default fbdev Device 0" > (==) No monitor specified for screen "Builtin Default fbdev Screen 0". > Using a default monitor configuration. > (**) |-->Screen "Builtin Default vesa Screen 0" (2) > (**) | |-->Monitor "" > (**) | |-->Device "Builtin Default vesa Device 0" > (==) No monitor specified for screen "Builtin Default vesa Screen 0". > Using a default monitor configuration. > (==) Automatically adding devices > (==) Automatically enabling devices > (==) No FontPath specified. Using compiled-in default. > (==) FontPath set to: > /usr/local/lib/X11/fonts/misc/, > /usr/local/lib/X11/fonts/TTF/, > /usr/local/lib/X11/fonts/OTF, > /usr/local/lib/X11/fonts/Type1/, > /usr/local/lib/X11/fonts/100dpi/, > /usr/local/lib/X11/fonts/75dpi/ > (==) ModulePath set to "/usr/local/lib/xorg/modules" > (II) Cannot locate a core pointer device. > (II) Cannot locate a core keyboard device. > (II) The server relies on HAL to provide the list of input devices. > If no devices become available, reconfigure HAL or disable > AllowEmptyInput. > (II) System resource ranges: > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > (II) LoadModule: "extmod" > > (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so > (II) Module extmod: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.0.0 > Module class: X.Org Server Extension > ABI class: X.Org Server Extension, version 1.1 > (II) Loading extension SHAPE > (II) Loading extension MIT-SUNDRY-NONSTANDARD > (II) Loading extension BIG-REQUESTS > (II) Loading extension SYNC > (II) Loading extension MIT-SCREEN-SAVER > (II) Loading extension XC-MISC > (II) Loading extension XFree86-VidModeExtension > (II) Loading extension XFree86-Misc > (II) Loading extension XFree86-DGA > (II) Loading extension DPMS > (II) Loading extension TOG-CUP > (II) Loading extension Extended-Visual-Information > (II) Loading extension XVideo > (II) Loading extension XVideo-MotionCompensation > (II) Loading extension X-Resource > (II) LoadModule: "dbe" > > (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so > (II) Module dbe: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.0.0 > Module class: X.Org Server Extension > ABI class: X.Org Server Extension, version 1.1 > (II) Loading extension DOUBLE-BUFFER > (II) LoadModule: "glx" > > (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so > (II) Module glx: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.0.0 > ABI class: X.Org Server Extension, version 1.1 > (==) AIGLX disabled > (==) Exporting typical set of GLX visuals > (II) Loading extension GLX > (II) LoadModule: "freetype" > > (II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so > (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project" > compiled for 1.5.3, module version = 2.1.0 > Module class: X.Org Font Renderer > ABI class: X.Org Font Renderer, version 0.6 > (II) Loading font FreeType > (II) LoadModule: "record" > > (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so > (II) Module record: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.13.0 > Module class: X.Org Server Extension > ABI class: X.Org Server Extension, version 1.1 > (II) Loading extension RECORD > (II) LoadModule: "dri" > > (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so > (II) Module dri: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.0.0 > ABI class: X.Org Server Extension, version 1.1 > (II) Loading extension XFree86-DRI > (II) LoadModule: "intel" > > (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so > (II) Module intel: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 2.5.1 > Module class: X.Org Video Driver > ABI class: X.Org Video Driver, version 4.1 > (II) LoadModule: "fbdev" > > (WW) Warning, couldn't open module fbdev > (II) UnloadModule: "fbdev" > (EE) Failed to load module "fbdev" (module does not exist, 0) > (II) LoadModule: "vesa" > > (II) Loading /usr/local/lib/xorg/modules/drivers//vesa_drv.so > (II) Module vesa: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 2.1.0 > Module class: X.Org Video Driver > ABI class: X.Org Video Driver, version 4.1 > (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, > i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, > E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, > 965GM, 965GME/GLE, G33, Q35, Q33, > Mobile Intel? GM45 Express Chipset, > Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 > (II) VESA: driver for VESA chipsets: vesa > (II) Primary Device is: PCI 00@00:02:0 > (II) resource ranges after xf86ClaimFixedResources() call: > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > (WW) Falling back to old probe method for vesa > (II) resource ranges after probing: > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] > [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] > [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] > [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] > [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] > (II) Loading sub module "vgahw" > (II) LoadModule: "vgahw" > > (II) Loading /usr/local/lib/xorg/modules//libvgahw.so > (II) Module vgahw: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 0.1.0 > ABI class: X.Org Video Driver, version 4.1 > (II) intel(0): Creating default Display subsection in Screen section > "Builtin Default intel Screen 0" for depth/fbbpp 24/32 > (==) intel(0): Depth 24, (==) framebuffer bpp 32 > (==) intel(0): RGB weight 888 > (==) intel(0): Default visual is TrueColor > (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME > (--) intel(0): Chipset: "945GME" > (--) intel(0): Linear framebuffer at 0x40000000 > (--) intel(0): IO registers at addr 0x58480000 > (==) intel(0): Using EXA for acceleration > (II) intel(0): 2 display pipes available. > (II) Loading sub module "ddc" > (II) LoadModule: "ddc" > (II) Module "ddc" already built-in > (II) Loading sub module "i2c" > (II) LoadModule: "i2c" > (II) Module "i2c" already built-in > (II) intel(0): Output VGA has no monitor section > (II) intel(0): Output LVDS has no monitor section > (II) intel(0): I2C bus "LVDSDDC_C" initialized. > (II) intel(0): Attempting to determine panel fixed mode. > (II) intel(0): I2C device "LVDSDDC_C:ddc2" registered at address 0xA0. > (II) intel(0): EDID vendor "AUO", prod id 4546 > (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear > (II) intel(0): EDID vendor "AUO", prod id 4546 > (II) intel(0): Output VGA disconnected > (II) intel(0): Output LVDS connected > (II) intel(0): Using exact sizes for initial modes > (II) intel(0): Output LVDS using initial mode 1024x600 > (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear > (II) intel(0): Monitoring connected displays enabled > (II) intel(0): detected 256 kB GTT. > (II) intel(0): detected 7932 kB stolen memory. > (==) intel(0): video overlay key set to 0x101fe > (==) intel(0): Intel XvMC decoder disabled > (==) intel(0): Will not try to enable page flipping > (==) intel(0): Triple buffering disabled > (==) intel(0): Using gamma correction (1.0, 1.0, 1.0) > (==) intel(0): DPI set to (96, 96) > (II) Loading sub module "fb" > (II) LoadModule: "fb" > > (II) Loading /usr/local/lib/xorg/modules//libfb.so > (II) Module fb: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.0.0 > ABI class: X.Org ANSI C Emulation, version 0.4 > (II) Loading sub module "exa" > (II) LoadModule: "exa" > > (II) Loading /usr/local/lib/xorg/modules//libexa.so > (II) Module exa: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 2.4.0 > ABI class: X.Org Video Driver, version 4.1 > (II) Loading sub module "ramdac" > (II) LoadModule: "ramdac" > (II) Module "ramdac" already built-in > (II) intel(0): Comparing regs from server start up to After PreInit > (WW) intel(0): Register 0x61200 (PP_STATUS) changed from 0xc0000008 to > 0xd000000a > (WW) intel(0): PP_STATUS before: on, ready, sequencing idle > (WW) intel(0): PP_STATUS after: on, ready, sequencing on > (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to > 0x80000202 > (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS > (WW) intel(0): PIPEBSTAT after: status: FIFO_UNDERRUN VSYNC_INT_STATUS > VBLANK_INT_STATUS > (II) UnloadModule: "vesa" > (II) Unloading /usr/local/lib/xorg/modules/drivers//vesa_drv.so > (==) Depth 24 pixmap format is 32 bpp > (II) do I need RAC? No, I don't. > (II) resource ranges after preInit: > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) > [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) > [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) > [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) > [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) > (II) intel(0): Kernel reported 241152 total, 0 used > (II) intel(0): I830CheckAvailableMemory: 964608 kB available > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 11, (OK) > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 11, (OK) > drmOpenByBusid: Searching for BusID pci:0000:00:02.0 > drmOpenDevice: node name is /dev/dri/card0 > drmOpenDevice: open result is 11, (OK) > drmOpenByBusid: drmOpenMinor returns 11 > drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 > (II) [drm] DRM interface version 1.2 > (II) [drm] DRM open master succeeded. > (II) intel(0): [drm] Using the DRM lock SAREA also for drawables. > (II) intel(0): [drm] framebuffer mapped by ddx driver > (II) intel(0): [drm] added 1 reserved context for kernel > (II) intel(0): X context handle = 0x1 > (II) intel(0): [drm] installed DRM signal handler > (**) intel(0): Framebuffer compression enabled > (**) intel(0): Tiling enabled > (==) intel(0): VideoRam: 262144 KB > (II) intel(0): Attempting memory allocation with tiled buffers. > (II) intel(0): Tiled allocation successful. > (II) intel(0): [drm] Registers = 0x58480000 > (II) intel(0): [drm] ring buffer = 0x40000000 > (II) intel(0): [drm] mapped front buffer at 0x40800000, handle = 0x40800000 > (II) intel(0): [drm] mapped back buffer at 0x41800000, handle = 0x41800000 > (II) intel(0): [drm] mapped depth buffer at 0x41c00000, handle = 0x41c00000 > (II) intel(0): [drm] mapped classic textures at 0x42000000, handle = > 0x42000000 > (II) intel(0): [drm] Initialized kernel agp heap manager, 33554432 > (II) intel(0): [dri] visual configs initialized > (II) intel(0): Page Flipping disabled > (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is > 0x0000 > (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear > (II) EXA(0): Offscreen pixmap area of 12582912 bytes > (II) EXA(0): Driver registered support for the following operations: > (II) Solid > (II) Copy > (II) Composite (RENDER acceleration) > (==) intel(0): Backing store disabled > (==) intel(0): Silken mouse enabled > (II) intel(0): Initializing HW Cursor > (II) intel(0): [DRI] installation complete > (II) intel(0): xf86BindGARTMemory: bind key 22 at 0x00800000 (pgoffset 2048) > (II) intel(0): xf86BindGARTMemory: bind key 23 at 0x00c00000 (pgoffset 3072) > (II) intel(0): xf86BindGARTMemory: bind key 24 at 0x01800000 (pgoffset 6144) > (II) intel(0): xf86BindGARTMemory: bind key 25 at 0x01c00000 (pgoffset 7168) > (II) intel(0): xf86BindGARTMemory: bind key 26 at 0x02000000 (pgoffset 8192) > (II) intel(0): Fixed memory allocation layout: > (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) > (II) intel(0): 0x00020000-0x0061ffff: compressed frame buffer (6144 kB, > 0x000000003f820000 physical > ) > (II) intel(0): 0x00620000-0x00620fff: compressed ll buffer (4 kB, > 0x000000003fe20000 physical > ) > (II) intel(0): 0x00621000-0x0062afff: HW cursors (40 kB, > 0x000000003fe21000 physical > ) > (II) intel(0): 0x0062b000-0x00632fff: logical 3D context (32 kB) > (II) intel(0): 0x00633000-0x00732fff: fake bufmgr (1024 kB) > (II) intel(0): 0x00733000-0x00733fff: overlay registers (4 kB, > 0x000000003ff33000 physical > ) > (II) intel(0): 0x007bf000: end of stolen memory > (II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) X tiled > (II) intel(0): 0x00c00000-0x017fffff: exa offscreen (12288 kB) > (II) intel(0): 0x01800000-0x01bfffff: back buffer (4096 kB) X tiled > (II) intel(0): 0x01c00000-0x01ffffff: depth buffer (4096 kB) X tiled > (II) intel(0): 0x02000000-0x03ffffff: classic textures (32768 kB) > (II) intel(0): 0x10000000: end of aperture > (WW) intel(0): ESR is 0x00000001, instruction error > (WW) intel(0): Existing errors found in hardware state. > (II) intel(0): using SSC reference clock of 96 MHz > (II) intel(0): Selecting standard 18 bit TMDS pixel format. > (II) intel(0): Output configuration: > (II) intel(0): Pipe A is off > (II) intel(0): Display plane A is now disabled and connected to pipe A. > (II) intel(0): Pipe B is on > (II) intel(0): Display plane B is now enabled and connected to pipe B. > (II) intel(0): Output VGA is connected to pipe none > (II) intel(0): Output LVDS is connected to pipe B > (II) intel(0): [drm] dma control initialized, using IRQ 16 > (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled > message. > (II) intel(0): DPMS enabled > (II) intel(0): Set up textured video > (II) intel(0): Set up overlay video > (II) intel(0): direct rendering: Enabled > (--) RandR disabled > (II) Initializing built-in extension MIT-SHM > (II) Initializing built-in extension XInputExtension > (II) Initializing built-in extension XTEST > (II) Initializing built-in extension XKEYBOARD > (II) Initializing built-in extension XINERAMA > (II) Initializing built-in extension XFIXES > (II) Initializing built-in extension RENDER > (II) Initializing built-in extension RANDR > (II) Initializing built-in extension COMPOSITE > (II) Initializing built-in extension DAMAGE > (II) Initializing built-in extension XEVIE > (II) AIGLX: Loaded and initialized /usr/local/lib/dri/swrast_dri.so > (II) GLX: Initialized DRISWRAST GL provider for screen 0 > (II) intel(0): Setting screen physical size to 195 x 113 > (II) config/hal: Adding input device AT Keyboard > (II) LoadModule: "kbd" > > (II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so > (II) Module kbd: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.3.2 > Module class: X.Org XInput Driver > ABI class: X.Org XInput driver, version 2.1 > (**) AT Keyboard: always reports core events > (**) Option "Protocol" "standard" > (**) AT Keyboard: Protocol: standard > (**) Option "AutoRepeat" "500 30" > (**) Option "XkbRules" "xorg" > (**) AT Keyboard: XkbRules: "xorg" > (**) Option "XkbModel" "pc105" > (**) AT Keyboard: XkbModel: "pc105" > (**) Option "XkbLayout" "us" > (**) AT Keyboard: XkbLayout: "us" > (**) Option "CustomKeycodes" "off" > (**) AT Keyboard: CustomKeycodes disabled > (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) > (II) config/hal: Adding input device PS/2 Mouse > (II) LoadModule: "mouse" > > (II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so > (II) Module mouse: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.4.0 > Module class: X.Org XInput Driver > ABI class: X.Org XInput driver, version 2.1 > (**) PS/2 Mouse: Device: "/dev/sysmouse" > (==) PS/2 Mouse: Protocol: "Auto" > (**) PS/2 Mouse: always reports core events > (**) Option "Device" "/dev/sysmouse" > (==) PS/2 Mouse: Emulate3Buttons, Emulate3Timeout: 50 > (**) PS/2 Mouse: ZAxisMapping: buttons 4 and 5 > (**) PS/2 Mouse: Buttons: 9 > (**) PS/2 Mouse: Sensitivity: 1 > (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE) > (II) PS/2 Mouse: SetupAuto: hw.iftype is 4, hw.model is 0 > (II) PS/2 Mouse: SetupAuto: protocol is SysMouse > > > Here's what glxinfo says: > > name of display: :0.0 > display: :0 screen: 0 > direct rendering: Yes > server glx vendor string: SGI > server glx version string: 1.2 > server glx extensions: > GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, > GLX_EXT_import_context, GLX_EXT_texture_from_pixmap, > GLX_OML_swap_method, > GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_hyperpipe, > GLX_SGIX_swap_barrier, GLX_SGIX_fbconfig, GLX_MESA_copy_sub_buffer > client glx vendor string: SGI > client glx version string: 1.4 > client glx extensions: > GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, > GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, > GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control, > GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control, > GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync, > GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer, > GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap > GLX version: 1.2 > GLX extensions: > GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, > GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_copy_sub_buffer, > GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, > GLX_SGI_make_current_read, GLX_SGI_video_sync, GLX_SGIS_multisample, > GLX_SGIX_fbconfig > OpenGL vendor string: Tungsten Graphics, Inc > OpenGL renderer string: Mesa DRI Intel(R) 945GME 20090114 x86/MMX/SSE2 > OpenGL version string: 1.4 Mesa 7.3 > OpenGL extensions: > GL_ARB_depth_texture, GL_ARB_fragment_program, GL_ARB_multisample, > GL_ARB_multitexture, GL_ARB_point_parameters, GL_ARB_shadow, > GL_ARB_texture_border_clamp, GL_ARB_texture_compression, > GL_ARB_texture_cube_map, GL_ARB_texture_env_add, > GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, > GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, > GL_ARB_texture_non_power_of_two, GL_ARB_texture_rectangle, > GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, > GL_ARB_vertex_program, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, > GL_EXT_blend_color, GL_EXT_blend_equation_separate, > GL_EXT_blend_func_separate, GL_EXT_blend_logic_op, GL_EXT_blend_minmax, > GL_EXT_blend_subtract, GL_EXT_clip_volume_hint, GL_EXT_cull_vertex, > GL_EXT_compiled_vertex_array, GL_EXT_copy_texture, > GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, > GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels, > GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, > GL_EXT_secondary_color, GL_EXT_separate_specular_color, > GL_EXT_shadow_funcs, GL_EXT_stencil_wrap, GL_EXT_subtexture, > GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, > GL_EXT_texture_env_add, GL_EXT_texture_env_combine, > GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, > GL_EXT_texture_lod_bias, GL_EXT_texture_object, > GL_EXT_texture_rectangle, > GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, > GL_APPLE_client_storage, GL_APPLE_packed_pixels, > GL_ATI_blend_equation_separate, GL_ATI_texture_env_combine3, > GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat, > GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture, > GL_MESA_window_pos, GL_NV_blend_square, GL_NV_light_max_exponent, > GL_NV_point_sprite, GL_NV_texture_rectangle, GL_NV_texgen_reflection, > GL_NV_vertex_program, GL_NV_vertex_program1_1, GL_OES_read_format, > GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp, > GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod, GL_SGIX_depth_texture, > GL_SUN_multi_draw_arrays > > 3 GLX Visuals > visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav > id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat > ---------------------------------------------------------------------- > 0x21 24 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x22 24 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x52 32 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None > > 16 GLXFBConfigs: > visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav > id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat > ---------------------------------------------------------------------- > 0x53 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None > 0x54 0 tc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow > 0x55 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None > 0x56 0 tc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow > 0x5f 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x60 0 tc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow > 0x61 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x62 0 tc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow > 0x63 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 0 0 0 0 0 0 None > 0x64 0 dc 0 32 0 r . . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow > 0x65 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 0 0 0 0 0 0 None > 0x66 0 dc 0 32 0 r y . 8 8 8 8 0 0 0 16 16 16 16 0 0 Slow > 0x6f 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x70 0 dc 0 32 0 r . . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow > 0x71 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 0 0 0 0 0 0 None > 0x72 0 dc 0 32 0 r y . 8 8 8 8 0 24 8 16 16 16 16 0 0 Slow > > glxgears runs at 61-62 FPS, which looks suspiciously similar to the > refresh rate. > > If more information is needed, please ask. It might be a KDE error but I > can't find KDE logs (if there are any) and the GUI message is generic. > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. From varga.michal at gmail.com Mon Feb 9 15:21:25 2009 From: varga.michal at gmail.com (Michal Varga) Date: Mon Feb 9 15:21:32 2009 Subject: is 7.4 ready In-Reply-To: <4990921F.6000105@gmail.com> References: <4990921F.6000105@gmail.com> Message-ID: <3f1fd1ea0902091501w6d172accv7adbab556a9aadf1@mail.gmail.com> On Mon, Feb 9, 2009 at 9:29 PM, Aryeh M. Friedman wrote: > the kinks been worked out? (I know I will have to switch to nv instead of > the nvidia driver I use now) > For what reason? nvidia drivers work perfectly fine with latest xorg (and any xorg I remember in past years, save for some specific very short-term hiccups). m. From aryeh.friedman at gmail.com Mon Feb 9 19:19:57 2009 From: aryeh.friedman at gmail.com (Aryeh M. Friedman) Date: Mon Feb 9 19:20:03 2009 Subject: is 7.4 ready In-Reply-To: <3f1fd1ea0902091501w6d172accv7adbab556a9aadf1@mail.gmail.com> References: <4990921F.6000105@gmail.com> <3f1fd1ea0902091501w6d172accv7adbab556a9aadf1@mail.gmail.com> Message-ID: <4990F250.7060706@gmail.com> Michal Varga wrote: > On Mon, Feb 9, 2009 at 9:29 PM, Aryeh M. Friedman > wrote: > > >> the kinks been worked out? (I know I will have to switch to nv instead of >> the nvidia driver I use now) >> >> > For what reason? nvidia drivers work perfectly fine with latest xorg > (and any xorg I remember in past years, save for some specific very > short-term hiccups). > > m. > > When I tried it I got unrecognized driver for nvidia but not for nv From ulrich at pukruppa.net Mon Feb 9 20:43:34 2009 From: ulrich at pukruppa.net (Peter Ulrich Kruppa) Date: Mon Feb 9 20:43:40 2009 Subject: Gigantic gdm-2.24 log files Message-ID: <499106C6.7040702@pukruppa.net> Hi, I posted this messages to freebsd-gnome@freebsd.org yesterday and Joe Marcus Clarke answered: > Looks like an X issue to me. > > Joe so I try again here! I run xorg-7.4 and when I list /var/log/gdm I get some extremly big files: ------------------------------------ ls -lh total 11349526 [...] -rw-r--r-- 1 root gdm 1,4K 7 Feb 07:15 :0-slave.log.4 -rw-r--r-- 1 root gdm 4,7G 9 Feb 16:24 :0.log ^^^^ -rw-r--r-- 1 root gdm 102K 8 Feb 19:02 :0.log.1 -rw-r--r-- 1 root gdm 6,1G 8 Feb 18:06 :0.log.2 ^^^^ -rw-r--r-- 1 root gdm 8,1M 7 Feb 07:31 :0.log.3 -rw-r--r-- 1 root gdm 2,5M 7 Feb 07:19 :0.log.4 [...] ------------------------------------ The remaining files behave normally. What might have happened there? This is a # tail -f :0.log --------------------------------- [...] (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear (==) VESA(0): Write-combining range (0x0,0x1000) was already clear ^C ------------------------------------- Perhaps these messages can simply be turned off? Greetings, Uli. From rnoland at FreeBSD.org Mon Feb 9 22:43:52 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Mon Feb 9 22:43:58 2009 Subject: [CFT] xf86-video-ati-6.10.99.0 Message-ID: <1234248221.1524.31.camel@ferret.2hip.net> This patch is for the 6.11.0rc version of the ati driver driver. http://people.freebsd.org/~rnoland/xf86-video-ati-6.10.99.0.patch robert. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090210/20006968/attachment.pgp From ivoras at freebsd.org Tue Feb 10 08:37:33 2009 From: ivoras at freebsd.org (Ivan Voras) Date: Tue Feb 10 08:37:39 2009 Subject: KDE 4.2 & desktop effects on Intel In-Reply-To: <20090209170412.4ccd6875@sorrow.ashke.com> References: <20090209170412.4ccd6875@sorrow.ashke.com> Message-ID: <9bbcef730902100815h5917a282m4dd9737fe11d66e@mail.gmail.com> 2009/2/9 Adam K Kirchhoff : > On Mon, 09 Feb 2009 22:49:58 +0100 > Ivan Voras wrote: > >> Hi, >> >> I've successfully (or so it seems) installed KDE 4.2 on my Acer Aspire >> One "netbook". The things I tried work ok, except one thing: I can't >> turn on "desktop effects" in KDE. AFAIK this relies on compositing and >> OpenGL, which I know work on this hardware since before this there was >> Ubuntu Linux on it (with desktop-cube, etc). KDE doesn't want to enable >> both OpenGL and XRender modes. > > According to the output below, it looks like AIGLX is getting disabled > by default: > > (==) AIGLX disabled > > Try creating a new xorg.conf file and enabling AIGLX in the > ServerLayout section. Thanks, this works! If anyone's interested - running KDE 4.2 on an Atom-based netbook is bearable (even with effects), but not smooth. From kalomiros at juniper.net Tue Feb 10 10:45:46 2009 From: kalomiros at juniper.net (Georgios Kalomiros) Date: Tue Feb 10 10:45:59 2009 Subject: problem upgrading libXext In-Reply-To: <4991C7A0.4090703@juniper.net> References: <4991C7A0.4090703@juniper.net> Message-ID: <4991CAAA.9090902@juniper.net> Please disregard, I've managed to track down and resolve my problem. Thanks, Georgios Georgios Kalomiros wrote: > [root@devdb:/usr/ports/x11/libXext]# make > ===> libXext-1.0.5,1 depends on file: > /usr/local/libdata/pkgconfig/xextproto.pc - found > ===> libXext-1.0.5,1 depends on file: > /usr/local/libdata/pkgconfig/xproto.pc - found > ===> libXext-1.0.5,1 depends on file: > /usr/local/libdata/pkgconfig/x11.pc - found > ===> libXext-1.0.5,1 depends on file: > /usr/local/libdata/pkgconfig/xau.pc - found > ===> libXext-1.0.5,1 depends on executable: pkg-config - found > ===> Configuring for libXext-1.0.5,1 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g > wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether make sets $(MAKE)... yes > checking whether to enable maintainer-specific portions of Makefiles... no > checking if xorg-macros used to generate configure is at least 1.2... > yes, 1.2.1 > checking build system type... i386-portbld-freebsd7.0 > checking host system type... i386-portbld-freebsd7.0 > checking for style of include used by make... GNU > checking for gcc... cc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ISO C89... none needed > checking dependency style of cc... gcc3 > checking for a sed that does not truncate output... /usr/local/bin/gsed > checking for grep that handles long lines and -e... /usr/bin/grep > checking for egrep... /usr/bin/grep -E > checking for fgrep... /usr/bin/grep -F > checking for ld used by cc... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B > checking the name lister (/usr/bin/nm -B) interface... BSD nm > checking whether ln -s works... yes > checking the maximum length of command line arguments... (cached) 262144 > checking whether the shell understands some XSI constructs... yes > checking whether the shell understands "+="... no > checking for /usr/bin/ld option to reload object files... -r > checking for objdump... objdump > checking how to recognize dependent libraries... pass_all > checking for ar... ar > checking for strip... strip > checking for ranlib... ranlib > checking command to parse /usr/bin/nm -B output from cc object... ok > checking how to run the C preprocessor... cc -E > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... yes > checking for unistd.h... yes > checking for dlfcn.h... yes > checking for objdir... .libs > checking if cc supports -fno-rtti -fno-exceptions... no > checking for cc option to produce PIC... -fPIC -DPIC > checking if cc PIC flag -fPIC -DPIC works... yes > checking if cc static flag -static works... yes > checking if cc supports -c -o file.o... yes > checking if cc supports -c -o file.o... (cached) yes > checking whether the cc linker (/usr/bin/ld) supports shared > libraries... yes > checking whether -lc should be explicitly linked in... no > checking dynamic linker characteristics... freebsd7.0 ld.so > checking how to hardcode library paths into programs... immediate > checking whether stripping libraries is possible... yes > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... yes > checking for gcc... (cached) cc > checking whether we are using the GNU C compiler... (cached) yes > checking whether cc accepts -g... (cached) yes > checking for cc option to accept ISO C89... (cached) none needed > checking dependency style of cc... (cached) gcc3 > CWARNFLAGS+= -Wold-style-definition -Wdeclaration-after-statement: not > found > checking for pkg-config... /usr/local/bin/pkg-config > checking pkg-config is at least version 0.9.0... yes > checking for XEXT... configure: error: Package requirements (xproto >= > 7.0.13 x11 >= 1.1.99.1 xextproto >= 7.0.5 xau) were not met: > > Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 > > Consider adjusting the PKG_CONFIG_PATH environment variable if you > installed software in a non-standard prefix. > > Alternatively, you may set the environment variables XEXT_CFLAGS > and XEXT_LIBS to avoid the need to call pkg-config. > See the pkg-config man page for more details. > > ===> Script "configure" failed unexpectedly. > Please report the problem to x11@FreeBSD.org [maintainer] and attach the > "/usr/ports/x11/libXext/work/libXext-1.0.5/config.log" including the output > of the failure of your make command. Also, it might be a good idea to > provide > an overview of all packages installed on your system (e.g. an `ls > /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/x11/libXext. > [root@devdb:/usr/ports/x11/libXext]# ls /var/db/pkg/ > apache+mod_ssl-1.3.41+2.8.31 libxml2-2.7.3 > p5-Digest-SHA1-2.11 p5-Text-CSV-1.10 > apache-ant-1.7.0_2 libxslt-1.1.24_2 > p5-Email-Date-Format-1.002 p5-Text-Diff-0.35 > autoconf-2.13.000227_6 linux-expat-1.95.8 > p5-Email-Find-0.10 p5-Tie-IxHash-1.21 > autoconf-2.62 linux_base-fc-4_14 > p5-Email-Valid-0.179 p5-Time-HiRes-1.9715,1 > autoconf-wrapper-20071109 localedata-5.4 > p5-Error-0.17015 p5-Time-Local-1.18 > automake-1.4.6_5 log4j-1.2.15_1 > p5-Exception-Class-1.26 p5-Time-Piece-1.13 > automake-wrapper-20071109 lsof-4.82A,3 > p5-Expect-1.21 p5-TimeDate-1.16,1 > bash-3.2.48_1 lynx-2.8.6.5_4,1 > p5-Exporter-Lite-0.02 p5-UNIVERSAL-moniker-0.08 > bash-completion-20060301_3 m4-1.4.11,1 > p5-ExtUtils-CBuilder-0.24 p5-URI-1.37 > bigreqsproto-1.0.2 mm-1.4.2 > p5-ExtUtils-ParseXS-2.19 p5-XML-LibXML-1.69,1 > boehm-gc+threaded-6.8 mod_perl-1.30 > p5-File-NFSLock-1.20 p5-XML-LibXML-Common-0.13 > ca_root_nss-3.11.9_2 mysql-client-5.1.30 > p5-File-Temp-0.20 p5-XML-NamespaceSupport-1.09_1 > compat4x-i386-5.3_9 mysql-connector-java-5.1.7 > p5-Filesys-SmbClient-1.5 p5-XML-Parser-2.36 > compat6x-i386-6.4.604000.200810 mysql-server-5.1.30 > p5-GSSAPI-0.26 p5-XML-RSS-1.37 > cups-base-1.3.9_3 nano-2.0.9 > p5-HTML-FromText-2.05 p5-XML-SAX-0.96 > curl-7.19.2 open-motif-2.2.3_6 > p5-HTML-Mason-1.39_1 p5-XML-SAX-Expat-0.40 > cvsup-without-gui-16.1h_4 openldap-client-2.4.13 > p5-HTML-Parser-3.59 p5-XML-Simple-2.18 > db41-4.1.25_4 p5-Algorithm-Diff-1.1902 > p5-HTML-Tagset-3.20 p5-XML-Writer-0.604 > desktop-file-utils-0.15_1 p5-Apache-DBI-1.06_1 > p5-Heap-0.80 p5-YAML-0.66 > diablo-jdk-1.6.0.07.02_2 p5-Apache-Session-1.87 > p5-IO-Compress-Base-2.015 p5-gettext-1.05_2 > e2fsprogs-libuuid-1.41.4_1 p5-Apache-Test-1.30 > p5-IO-Compress-Bzip2-2.015 p5-libapreq-1.33 > expat-2.0.1 p5-Archive-Tar-1.40 > p5-IO-Compress-Zlib-2.015 p5-libwww-5.821 > ezm3-1.2_1 p5-Authen-SASL-2.12 > p5-IO-Socket-INET6-2.56 p5-version-0.76 > fastest_cvsup-0.2.9_6 p5-Cache-2.04_1 > p5-IO-Socket-SSL-1.18 pcre-7.8 > gamin-0.1.10 p5-Cache-Cache-1.05_1 > p5-IO-String-1.08 perforce-08.2_2,1 > gettext-0.17_1 p5-Calendar-Simple-1.20 > p5-IO-Tty-1.07 perl-threaded-5.8.8_1 > gio-fam-backend-2.18.4 p5-Class-Accessor-0.31 > p5-IO-Zlib-1.09 pkg-config-0.23_1 > glib-1.2.10_12 p5-Class-Container-0.12 > p5-IO-stringy-2.110 pkgdb.db > glib-2.18.4 p5-Class-DBI-3.0.17 > p5-IPC-ShareLite-0.13 png-1.2.34 > gmake-3.81_3 p5-Class-DBI-AbstractSearch-0.07 > p5-Ima-DBI-0.35 popt-1.7_5 > gnutls-2.6.3_1 p5-Class-Data-Inheritable-0.08 > p5-List-MoreUtils-0.22 portupgrade-2.4.6,2 > gsed-4.1.5_1 p5-Class-Factory-Util-1.7 > p5-MIME-Base64-3.07 printproto-1.0.3 > gtk-1.2.10_20 p5-Class-Singleton-1.4 > p5-MIME-Lite-3.02.3 python25-2.5.2_3 > help2man-1.36.4_2 p5-Class-Trigger-0.13 > p5-MIME-Tools-5.427,2 rc_subr-1.31_1 > httplog-2.1_1 p5-Class-WhiteHole-0.04 > p5-MIME-Types-1.24 readline-5.2_1 > inputproto-1.5.0 p5-Clone-0.29 > p5-Mail-Tools-2.04 recordproto-1.13.2 > jakarta-oro-2.0.8_2 p5-Compress-Raw-Bzip2-2.015 > p5-Math-BigInt-1.89 rpm-3.0.6_14 > javavmwrapper-2.3.2 p5-Compress-Raw-Zlib-2.015 > p5-Module-Build-0.30 rsync-3.0.5 > jdk-1.6.0.3p4_6 p5-Compress-Zlib-2.015 > p5-Net-1.22_1,1 ruby-1.8.6.287,1 > jpeg-6b_7 p5-Convert-BinHex-1.119 > p5-Net-DNS-0.63 ruby-1.9.1.0,1 > kbproto-1.0.3 p5-Crypt-Blowfish-2.10 > p5-Net-Domain-TLD-1.67_1 ruby18-bdb-0.6.4 > libICE-1.0.4_1,1 p5-Crypt-CBC-2.30 > p5-Net-IP-1.25 samba-libsmbclient-3.0.34_1 > libSM-1.1.0,1 p5-Crypt-DES-2.05 > p5-Net-SSLeay-1.35 screen-4.0.3_5 > libX11-1.1.3_1,1 p5-Crypt-ECB-1.45 > p5-Package-Constants-0.01 sudo-1.6.9.20 > libXau-1.0.4 p5-Crypt-SSLeay-0.57 > p5-Params-Validate-0.89 tex-texmflocal-1.9 > libXaw-1.0.5_1,1 p5-DBD-mysql51-4.006 > p5-PathTools-3.2900 texinfo-4.11 > libXdmcp-1.0.2_1 p5-DBI-1.60.4 > p5-Readonly-1.03_1 tiff-3.8.2_3 > libXi-1.2.0,1 p5-DBIx-ContextualFetch-1.03 > p5-SOAP-Lite-0.710.08_1 unzip-5.52_5 > libXmu-1.0.4,1 p5-Date-Manip-5.54 > p5-SQL-Abstract-1.24 vim-7.2.69 > libXp-1.0.0,1 p5-Date-Simple-3.02 > p5-SQL-Abstract-Limit-0.120 w3m-0.5.2_2 > libXpm-3.5.7 p5-DateTime-0.43.02 > p5-Scalar-List-Utils-1.19,1 wget-1.11.4 > libXt-1.0.5_1 p5-DateTime-Format-Mail-0.30.01 > p5-Socket6-0.23 xbitmaps-1.0.1 > libXtst-1.0.3_1 p5-DateTime-Format-Strptime-1.07.02,1 > p5-Sort-Versions-1.5 xcb-proto-1.3 > libcheck-0.9.6 p5-DateTime-Format-W3CDTF-0.04 > p5-Spiffy-0.30 xcmiscproto-1.1.2 > libgcrypt-1.4.4 p5-DateTime-Locale-0.40.01_2 > p5-Storable-2.18 xextproto-7.0.5 > libgpg-error-1.7 p5-DateTime-TimeZone-0.77.01 > p5-Sub-Uplevel-0.2002 xf86bigfontproto-1.1.2 > libiconv-1.11_1 p5-Devel-StackTrace-1.20 > p5-Test-Base-0.54_1 xproto-7.0.14 > libpthread-stubs-0.1 p5-Digest-1.15_1 > p5-Test-Exception-0.27 xtrans-1.2.3 > libtool-1.5.26 p5-Digest-HMAC-1.01 > p5-Test-Harness-3.14 zip-3.0 > libxcb-1.1.93 p5-Digest-MD5-2.38 > p5-Test-Simple-0.86 > From kalomiros at juniper.net Tue Feb 10 10:46:44 2009 From: kalomiros at juniper.net (Georgios Kalomiros) Date: Tue Feb 10 10:46:51 2009 Subject: problem upgrading libXext Message-ID: <4991C7A0.4090703@juniper.net> [root@devdb:/usr/ports/x11/libXext]# make ===> libXext-1.0.5,1 depends on file: /usr/local/libdata/pkgconfig/xextproto.pc - found ===> libXext-1.0.5,1 depends on file: /usr/local/libdata/pkgconfig/xproto.pc - found ===> libXext-1.0.5,1 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> libXext-1.0.5,1 depends on file: /usr/local/libdata/pkgconfig/xau.pc - found ===> libXext-1.0.5,1 depends on executable: pkg-config - found ===> Configuring for libXext-1.0.5,1 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... no checking if xorg-macros used to generate configure is at least 1.2... yes, 1.2.1 checking build system type... i386-portbld-freebsd7.0 checking host system type... i386-portbld-freebsd7.0 checking for style of include used by make... GNU checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking dependency style of cc... gcc3 checking for a sed that does not truncate output... /usr/local/bin/gsed checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for fgrep... /usr/bin/grep -F checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from cc object... ok checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd7.0 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking dependency style of cc... (cached) gcc3 CWARNFLAGS+= -Wold-style-definition -Wdeclaration-after-statement: not found checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for XEXT... configure: error: Package requirements (xproto >= 7.0.13 x11 >= 1.1.99.1 xextproto >= 7.0.5 xau) were not met: Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables XEXT_CFLAGS and XEXT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ===> Script "configure" failed unexpectedly. Please report the problem to x11@FreeBSD.org [maintainer] and attach the "/usr/ports/x11/libXext/work/libXext-1.0.5/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/x11/libXext. [root@devdb:/usr/ports/x11/libXext]# ls /var/db/pkg/ apache+mod_ssl-1.3.41+2.8.31 libxml2-2.7.3 p5-Digest-SHA1-2.11 p5-Text-CSV-1.10 apache-ant-1.7.0_2 libxslt-1.1.24_2 p5-Email-Date-Format-1.002 p5-Text-Diff-0.35 autoconf-2.13.000227_6 linux-expat-1.95.8 p5-Email-Find-0.10 p5-Tie-IxHash-1.21 autoconf-2.62 linux_base-fc-4_14 p5-Email-Valid-0.179 p5-Time-HiRes-1.9715,1 autoconf-wrapper-20071109 localedata-5.4 p5-Error-0.17015 p5-Time-Local-1.18 automake-1.4.6_5 log4j-1.2.15_1 p5-Exception-Class-1.26 p5-Time-Piece-1.13 automake-wrapper-20071109 lsof-4.82A,3 p5-Expect-1.21 p5-TimeDate-1.16,1 bash-3.2.48_1 lynx-2.8.6.5_4,1 p5-Exporter-Lite-0.02 p5-UNIVERSAL-moniker-0.08 bash-completion-20060301_3 m4-1.4.11,1 p5-ExtUtils-CBuilder-0.24 p5-URI-1.37 bigreqsproto-1.0.2 mm-1.4.2 p5-ExtUtils-ParseXS-2.19 p5-XML-LibXML-1.69,1 boehm-gc+threaded-6.8 mod_perl-1.30 p5-File-NFSLock-1.20 p5-XML-LibXML-Common-0.13 ca_root_nss-3.11.9_2 mysql-client-5.1.30 p5-File-Temp-0.20 p5-XML-NamespaceSupport-1.09_1 compat4x-i386-5.3_9 mysql-connector-java-5.1.7 p5-Filesys-SmbClient-1.5 p5-XML-Parser-2.36 compat6x-i386-6.4.604000.200810 mysql-server-5.1.30 p5-GSSAPI-0.26 p5-XML-RSS-1.37 cups-base-1.3.9_3 nano-2.0.9 p5-HTML-FromText-2.05 p5-XML-SAX-0.96 curl-7.19.2 open-motif-2.2.3_6 p5-HTML-Mason-1.39_1 p5-XML-SAX-Expat-0.40 cvsup-without-gui-16.1h_4 openldap-client-2.4.13 p5-HTML-Parser-3.59 p5-XML-Simple-2.18 db41-4.1.25_4 p5-Algorithm-Diff-1.1902 p5-HTML-Tagset-3.20 p5-XML-Writer-0.604 desktop-file-utils-0.15_1 p5-Apache-DBI-1.06_1 p5-Heap-0.80 p5-YAML-0.66 diablo-jdk-1.6.0.07.02_2 p5-Apache-Session-1.87 p5-IO-Compress-Base-2.015 p5-gettext-1.05_2 e2fsprogs-libuuid-1.41.4_1 p5-Apache-Test-1.30 p5-IO-Compress-Bzip2-2.015 p5-libapreq-1.33 expat-2.0.1 p5-Archive-Tar-1.40 p5-IO-Compress-Zlib-2.015 p5-libwww-5.821 ezm3-1.2_1 p5-Authen-SASL-2.12 p5-IO-Socket-INET6-2.56 p5-version-0.76 fastest_cvsup-0.2.9_6 p5-Cache-2.04_1 p5-IO-Socket-SSL-1.18 pcre-7.8 gamin-0.1.10 p5-Cache-Cache-1.05_1 p5-IO-String-1.08 perforce-08.2_2,1 gettext-0.17_1 p5-Calendar-Simple-1.20 p5-IO-Tty-1.07 perl-threaded-5.8.8_1 gio-fam-backend-2.18.4 p5-Class-Accessor-0.31 p5-IO-Zlib-1.09 pkg-config-0.23_1 glib-1.2.10_12 p5-Class-Container-0.12 p5-IO-stringy-2.110 pkgdb.db glib-2.18.4 p5-Class-DBI-3.0.17 p5-IPC-ShareLite-0.13 png-1.2.34 gmake-3.81_3 p5-Class-DBI-AbstractSearch-0.07 p5-Ima-DBI-0.35 popt-1.7_5 gnutls-2.6.3_1 p5-Class-Data-Inheritable-0.08 p5-List-MoreUtils-0.22 portupgrade-2.4.6,2 gsed-4.1.5_1 p5-Class-Factory-Util-1.7 p5-MIME-Base64-3.07 printproto-1.0.3 gtk-1.2.10_20 p5-Class-Singleton-1.4 p5-MIME-Lite-3.02.3 python25-2.5.2_3 help2man-1.36.4_2 p5-Class-Trigger-0.13 p5-MIME-Tools-5.427,2 rc_subr-1.31_1 httplog-2.1_1 p5-Class-WhiteHole-0.04 p5-MIME-Types-1.24 readline-5.2_1 inputproto-1.5.0 p5-Clone-0.29 p5-Mail-Tools-2.04 recordproto-1.13.2 jakarta-oro-2.0.8_2 p5-Compress-Raw-Bzip2-2.015 p5-Math-BigInt-1.89 rpm-3.0.6_14 javavmwrapper-2.3.2 p5-Compress-Raw-Zlib-2.015 p5-Module-Build-0.30 rsync-3.0.5 jdk-1.6.0.3p4_6 p5-Compress-Zlib-2.015 p5-Net-1.22_1,1 ruby-1.8.6.287,1 jpeg-6b_7 p5-Convert-BinHex-1.119 p5-Net-DNS-0.63 ruby-1.9.1.0,1 kbproto-1.0.3 p5-Crypt-Blowfish-2.10 p5-Net-Domain-TLD-1.67_1 ruby18-bdb-0.6.4 libICE-1.0.4_1,1 p5-Crypt-CBC-2.30 p5-Net-IP-1.25 samba-libsmbclient-3.0.34_1 libSM-1.1.0,1 p5-Crypt-DES-2.05 p5-Net-SSLeay-1.35 screen-4.0.3_5 libX11-1.1.3_1,1 p5-Crypt-ECB-1.45 p5-Package-Constants-0.01 sudo-1.6.9.20 libXau-1.0.4 p5-Crypt-SSLeay-0.57 p5-Params-Validate-0.89 tex-texmflocal-1.9 libXaw-1.0.5_1,1 p5-DBD-mysql51-4.006 p5-PathTools-3.2900 texinfo-4.11 libXdmcp-1.0.2_1 p5-DBI-1.60.4 p5-Readonly-1.03_1 tiff-3.8.2_3 libXi-1.2.0,1 p5-DBIx-ContextualFetch-1.03 p5-SOAP-Lite-0.710.08_1 unzip-5.52_5 libXmu-1.0.4,1 p5-Date-Manip-5.54 p5-SQL-Abstract-1.24 vim-7.2.69 libXp-1.0.0,1 p5-Date-Simple-3.02 p5-SQL-Abstract-Limit-0.120 w3m-0.5.2_2 libXpm-3.5.7 p5-DateTime-0.43.02 p5-Scalar-List-Utils-1.19,1 wget-1.11.4 libXt-1.0.5_1 p5-DateTime-Format-Mail-0.30.01 p5-Socket6-0.23 xbitmaps-1.0.1 libXtst-1.0.3_1 p5-DateTime-Format-Strptime-1.07.02,1 p5-Sort-Versions-1.5 xcb-proto-1.3 libcheck-0.9.6 p5-DateTime-Format-W3CDTF-0.04 p5-Spiffy-0.30 xcmiscproto-1.1.2 libgcrypt-1.4.4 p5-DateTime-Locale-0.40.01_2 p5-Storable-2.18 xextproto-7.0.5 libgpg-error-1.7 p5-DateTime-TimeZone-0.77.01 p5-Sub-Uplevel-0.2002 xf86bigfontproto-1.1.2 libiconv-1.11_1 p5-Devel-StackTrace-1.20 p5-Test-Base-0.54_1 xproto-7.0.14 libpthread-stubs-0.1 p5-Digest-1.15_1 p5-Test-Exception-0.27 xtrans-1.2.3 libtool-1.5.26 p5-Digest-HMAC-1.01 p5-Test-Harness-3.14 zip-3.0 libxcb-1.1.93 p5-Digest-MD5-2.38 p5-Test-Simple-0.86 -------------- next part -------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by libXext configure 1.0.5, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --enable-malloc0returnsnull --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local --mandir=/usr/local/man --infodir=/usr/local/info/ --build=i386-portbld-freebsd7.0 ## --------- ## ## Platform. ## ## --------- ## hostname = devdb.secteam.juniper.net uname -m = i386 uname -r = 7.0-RELEASE uname -s = FreeBSD uname -v = FreeBSD 7.0-RELEASE #1: Fri Nov 14 09:44:17 PST 2008 root@devdb2.secteam.juniper.net:/usr/obj/usr/src/sys/DEVDB /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /root/local/bin PATH: /bin PATH: /sbin PATH: /usr/bin PATH: /usr/sbin PATH: /usr/local/bin PATH: /usr/local/sbin PATH: /usr/home/devdb/local/bin PATH: /bin PATH: /sbin PATH: /usr/bin PATH: /usr/sbin PATH: /usr/local/bin PATH: /usr/local/sbin PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/home/devdb/bin PATH: /usr/local/mysql/bin PATH: /usr/local/mysql/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2121: checking for a BSD-compatible install configure:2189: result: /usr/bin/install -c -o root -g wheel configure:2200: checking whether build environment is sane configure:2243: result: yes configure:2268: checking for a thread-safe mkdir -p configure:2307: result: ./install-sh -c -d configure:2320: checking for gawk configure:2350: result: no configure:2320: checking for mawk configure:2350: result: no configure:2320: checking for nawk configure:2336: found /usr/bin/nawk configure:2347: result: nawk configure:2358: checking whether make sets $(MAKE) configure:2380: result: yes configure:2565: checking whether to enable maintainer-specific portions of Makefiles configure:2574: result: no configure:2594: checking if xorg-macros used to generate configure is at least 1.2 configure:2609: result: yes, 1.2.1 configure:2623: checking build system type configure:2641: result: i386-portbld-freebsd7.0 configure:2663: checking host system type configure:2678: result: i386-portbld-freebsd7.0 configure:2747: checking for style of include used by make configure:2775: result: GNU configure:2845: checking for gcc configure:2872: result: cc configure:3104: checking for C compiler version configure:3112: cc --version >&5 cc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:3116: $? = 0 configure:3123: cc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:3127: $? = 0 configure:3134: cc -V >&5 cc: '-V' option must have argument configure:3138: $? = 1 configure:3161: checking for C compiler default output file name configure:3183: cc -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3187: $? = 0 configure:3225: result: a.out configure:3244: checking whether the C compiler works configure:3254: ./a.out configure:3258: $? = 0 configure:3277: result: yes configure:3284: checking whether we are cross compiling configure:3286: result: no configure:3289: checking for suffix of executables configure:3296: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3300: $? = 0 configure:3326: result: configure:3332: checking for suffix of object files configure:3358: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3362: $? = 0 configure:3387: result: o configure:3391: checking whether we are using the GNU C compiler configure:3420: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3427: $? = 0 configure:3444: result: yes configure:3453: checking whether cc accepts -g configure:3483: cc -c -g conftest.c >&5 configure:3490: $? = 0 configure:3591: result: yes configure:3608: checking for cc option to accept ISO C89 configure:3682: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:3689: $? = 0 configure:3712: result: none needed configure:3732: checking dependency style of cc configure:3823: result: gcc3 configure:3838: checking for a sed that does not truncate output configure:3904: result: /usr/local/bin/gsed configure:3922: checking for grep that handles long lines and -e configure:3982: result: /usr/bin/grep configure:3987: checking for egrep configure:4051: result: /usr/bin/grep -E configure:4056: checking for fgrep configure:4120: result: /usr/bin/grep -F configure:4155: checking for ld used by cc configure:4222: result: /usr/bin/ld configure:4231: checking if the linker (/usr/bin/ld) is GNU ld configure:4246: result: yes configure:4258: checking for BSD- or MS-compatible name lister (nm) configure:4307: result: /usr/bin/nm -B configure:4425: checking the name lister (/usr/bin/nm -B) interface configure:4432: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:4435: /usr/bin/nm -B "conftest.o" configure:4438: output 00000000 B some_variable configure:4445: result: BSD nm configure:4448: checking whether ln -s works configure:4452: result: yes configure:4460: checking the maximum length of command line arguments configure:4580: result: 262144 configure:4597: checking whether the shell understands some XSI constructs configure:4607: result: yes configure:4611: checking whether the shell understands "+=" configure:4617: result: no configure:4652: checking for /usr/bin/ld option to reload object files configure:4659: result: -r configure:4728: checking for objdump configure:4744: found /usr/bin/objdump configure:4755: result: objdump configure:4787: checking how to recognize dependent libraries configure:4983: result: pass_all configure:5043: checking for ar configure:5059: found /usr/bin/ar configure:5070: result: ar configure:5148: checking for strip configure:5164: found /usr/bin/strip configure:5175: result: strip configure:5247: checking for ranlib configure:5263: found /usr/bin/ranlib configure:5274: result: ranlib configure:5364: checking command to parse /usr/bin/nm -B output from cc object configure:5482: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:5485: $? = 0 configure:5489: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:5492: $? = 0 configure:5546: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c conftstm.o >&5 configure:5549: $? = 0 configure:5587: result: ok configure:6454: checking how to run the C preprocessor configure:6494: cc -E conftest.c configure:6501: $? = 0 configure:6532: cc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:6539: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "libXext" | #define PACKAGE_TARNAME "libXext" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "libXext 1.0.5" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "libXext" | #define VERSION "1.0.5" | /* end confdefs.h. */ | #include configure:6572: result: cc -E configure:6601: cc -E conftest.c configure:6608: $? = 0 configure:6639: cc -E conftest.c conftest.c:10:28: error: ac_nonexistent.h: No such file or directory configure:6646: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "libXext" | #define PACKAGE_TARNAME "libXext" | #define PACKAGE_VERSION "1.0.5" | #define PACKAGE_STRING "libXext 1.0.5" | #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" | #define PACKAGE "libXext" | #define VERSION "1.0.5" | /* end confdefs.h. */ | #include configure:6686: checking for ANSI C header files configure:6716: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6723: $? = 0 configure:6822: cc -o conftest -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6826: $? = 0 configure:6832: ./conftest configure:6836: $? = 0 configure:6854: result: yes configure:6878: checking for sys/types.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for sys/stat.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for stdlib.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for string.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for memory.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for strings.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for inttypes.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for stdint.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6878: checking for unistd.h configure:6899: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6906: $? = 0 configure:6923: result: yes configure:6941: checking for dlfcn.h configure:6962: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:6969: $? = 0 configure:6986: result: yes configure:7172: checking for objdir configure:7187: result: .libs configure:7479: checking if cc supports -fno-rtti -fno-exceptions configure:7497: cc -c -O2 -fno-strict-aliasing -pipe -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:7501: $? = 0 configure:7514: result: no configure:7534: checking for cc option to produce PIC configure:7806: result: -fPIC -DPIC configure:7818: checking if cc PIC flag -fPIC -DPIC works configure:7836: cc -c -O2 -fno-strict-aliasing -pipe -fPIC -DPIC -DPIC conftest.c >&5 configure:7840: $? = 0 configure:7853: result: yes configure:7877: checking if cc static flag -static works configure:7905: result: yes configure:7920: checking if cc supports -c -o file.o configure:7941: cc -c -O2 -fno-strict-aliasing -pipe -o out/conftest2.o conftest.c >&5 configure:7945: $? = 0 configure:7967: result: yes configure:7975: checking if cc supports -c -o file.o configure:8022: result: yes configure:8055: checking whether the cc linker (/usr/bin/ld) supports shared libraries configure:9130: result: yes configure:9167: checking whether -lc should be explicitly linked in configure:9172: cc -c -O2 -fno-strict-aliasing -pipe conftest.c >&5 configure:9175: $? = 0 configure:9190: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep -lc \>/dev/null 2\>\&1 configure:9193: $? = 0 configure:9205: result: no configure:9369: checking dynamic linker characteristics configure:10052: result: freebsd7.0 ld.so configure:10154: checking how to hardcode library paths into programs configure:10179: result: immediate configure:11012: checking whether stripping libraries is possible configure:11017: result: yes configure:11052: checking if libtool supports shared libraries configure:11054: result: yes configure:11057: checking whether to build shared libraries configure:11078: result: yes configure:11081: checking whether to build static libraries configure:11085: result: yes configure:11168: checking for gcc configure:11195: result: cc configure:11427: checking for C compiler version configure:11435: cc --version >&5 cc (GCC) 4.2.1 20070719 [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:11439: $? = 0 configure:11446: cc -v >&5 Using built-in specs. Target: i386-undermydesk-freebsd Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 4.2.1 20070719 [FreeBSD] configure:11450: $? = 0 configure:11457: cc -V >&5 cc: '-V' option must have argument configure:11461: $? = 1 configure:11464: checking whether we are using the GNU C compiler configure:11517: result: yes configure:11526: checking whether cc accepts -g configure:11664: result: yes configure:11681: checking for cc option to accept ISO C89 configure:11785: result: none needed configure:11805: checking dependency style of cc configure:11896: result: gcc3 configure:12039: checking for pkg-config configure:12057: found /usr/local/bin/pkg-config configure:12069: result: /usr/local/bin/pkg-config configure:12094: checking pkg-config is at least version 0.9.0 configure:12097: result: yes configure:12108: checking for XEXT configure:12115: $PKG_CONFIG --exists --print-errors "xproto >= 7.0.13 x11 >= 1.1.99.1 xextproto >= 7.0.5 xau" Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 configure:12118: $? = 1 configure:12131: $PKG_CONFIG --exists --print-errors "xproto >= 7.0.13 x11 >= 1.1.99.1 xextproto >= 7.0.5 xau" Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 configure:12134: $? = 1 Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 configure:12161: error: Package requirements (xproto >= 7.0.13 x11 >= 1.1.99.1 xextproto >= 7.0.5 xau) were not met: Requested 'x11 >= 1.1.99.1' but version of X11 is 1.1.3 Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables XEXT_CFLAGS and XEXT_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i386-portbld-freebsd7.0 ac_cv_c_compiler_gnu=yes ac_cv_env_CC_set=set ac_cv_env_CC_value=cc ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value='-O2 -fno-strict-aliasing -pipe' ac_cv_env_CPPFLAGS_set='' ac_cv_env_CPPFLAGS_value='' ac_cv_env_CPP_set='' ac_cv_env_CPP_value='' ac_cv_env_LDFLAGS_set='' ac_cv_env_LDFLAGS_value='' ac_cv_env_LIBS_set='' ac_cv_env_LIBS_value='' ac_cv_env_PKG_CONFIG_set='' ac_cv_env_PKG_CONFIG_value='' ac_cv_env_XEXT_CFLAGS_set='' ac_cv_env_XEXT_CFLAGS_value='' ac_cv_env_XEXT_LIBS_set='' ac_cv_env_XEXT_LIBS_value='' ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i386-portbld-freebsd7.0 ac_cv_env_host_alias_set='' ac_cv_env_host_alias_value='' ac_cv_env_target_alias_set='' ac_cv_env_target_alias_value='' ac_cv_header_dlfcn_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_unistd_h=yes ac_cv_host=i386-portbld-freebsd7.0 ac_cv_objext=o ac_cv_path_EGREP='/usr/bin/grep -E' ac_cv_path_FGREP='/usr/bin/grep -F' ac_cv_path_GREP=/usr/bin/grep ac_cv_path_SED=/usr/local/bin/gsed ac_cv_path_ac_pt_PKG_CONFIG=/usr/local/bin/pkg-config ac_cv_prog_AWK=nawk ac_cv_prog_CPP='cc -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=cc ac_cv_prog_ac_ct_OBJDUMP=objdump ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89='' ac_cv_prog_cc_g=yes ac_cv_prog_make_make_set=yes am_cv_CC_dependencies_compiler_type=gcc3 lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file='' lt_cv_ld_reload_flag=-r lt_cv_nm_interface='BSD nm' lt_cv_objdir=.libs lt_cv_path_LD=/usr/bin/ld lt_cv_path_NM='/usr/bin/nm -B' lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_pic_works=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_compiler_static_works=yes lt_cv_prog_gnu_ld=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' lt_cv_sys_max_cmd_len=262144 ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run aclocal-1.10' ADMIN_MAN_DIR='' ADMIN_MAN_SUFFIX='' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run tar' APP_MAN_DIR='' APP_MAN_SUFFIX='' AR='ar' AUTOCONF='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run autoconf' AUTOHEADER='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run autoheader' AUTOMAKE='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run automake-1.10' AWK='nawk' CC='cc' CCDEPMODE='depmode=gcc3' CFLAGS='-O2 -fno-strict-aliasing -pipe' CHANGELOG_CMD='' CPP='cc -E' CPPFLAGS='' CWARNFLAGS='-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -Wbad-function-cast' CYGPATH_W='echo' DEFS='' DEPDIR='.deps' DRIVER_MAN_DIR='' DRIVER_MAN_SUFFIX='' DSYMUTIL='' DUMPBIN='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/usr/bin/grep -E' EXEEXT='' FGREP='/usr/bin/grep -F' FILE_MAN_DIR='' FILE_MAN_SUFFIX='' GREP='/usr/bin/grep' INSTALL_DATA='install -o root -g wheel -m 444' INSTALL_PROGRAM='install -s -o root -g wheel -m 555' INSTALL_SCRIPT='install -o root -g wheel -m 555' INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' LD='/usr/bin/ld' LDFLAGS='' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIB_MAN_DIR='' LIB_MAN_SUFFIX='' LINT='' LINTLIB='' LINT_FALSE='' LINT_FLAGS='' LINT_TRUE='' LIPO='' LN_S='ln -s' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /usr/ports/x11/libXext/work/libXext-1.0.5/missing --run makeinfo' MAKE_LINT_LIB_FALSE='' MAKE_LINT_LIB_TRUE='' MALLOC_ZERO_CFLAGS='' MISC_MAN_DIR='' MISC_MAN_SUFFIX='' MKDIR_P='./install-sh -c -d' NM='/usr/bin/nm -B' NMEDIT='' OBJDUMP='objdump' OBJEXT='o' OTOOL64='' OTOOL='' PACKAGE='libXext' PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg' PACKAGE_NAME='libXext' PACKAGE_STRING='libXext 1.0.5' PACKAGE_TARNAME='libXext' PACKAGE_VERSION='1.0.5' PATH_SEPARATOR=':' PKG_CONFIG='/usr/local/bin/pkg-config' RANLIB='ranlib' RAWCPP='' RAWCPPFLAGS='' SED='/usr/local/bin/gsed' SET_MAKE='' SHELL='/bin/sh' STRIP='strip' VERSION='1.0.5' XEXT_CFLAGS='' XEXT_LIBS='' XEXT_SOREV='6:4:0' XMALLOC_ZERO_CFLAGS='' XTMALLOC_ZERO_CFLAGS='' ac_ct_CC='cc' ac_ct_DUMPBIN='' am__fastdepCC_FALSE='#' am__fastdepCC_TRUE='' am__include='include' am__isrc='' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i386-portbld-freebsd7.0' build_alias='i386-portbld-freebsd7.0' build_cpu='i386' build_os='freebsd7.0' build_vendor='portbld' datadir='${datarootdir}' datarootdir='${prefix}/share' distcleancheck_listfiles='' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' exec_prefix='NONE' host='i386-portbld-freebsd7.0' host_alias='' host_cpu='i386' host_os='freebsd7.0' host_vendor='portbld' htmldir='${docdir}' includedir='${prefix}/include' infodir='/usr/local/info' install_sh='$(SHELL) /usr/ports/x11/libXext/work/libXext-1.0.5/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' lt_ECHO='echo' mandir='/usr/local/man' mkdir_p='$(top_builddir)/./install-sh -c -d' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr/local' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "libXext" #define PACKAGE_TARNAME "libXext" #define PACKAGE_VERSION "1.0.5" #define PACKAGE_STRING "libXext 1.0.5" #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg" #define PACKAGE "libXext" #define VERSION "1.0.5" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define LT_OBJDIR ".libs/" configure: exit 1 From hanche at math.ntnu.no Wed Feb 11 02:36:56 2009 From: hanche at math.ntnu.no (Harald Hanche-Olsen) Date: Wed Feb 11 02:37:03 2009 Subject: Odd mouse button behaviour In-Reply-To: <20090209.155959.599756832266413927.hanche@math.ntnu.no> References: <20090209.155959.599756832266413927.hanche@math.ntnu.no> Message-ID: <20090211.113653.872503460894941207.hanche@math.ntnu.no> + Harald Hanche-Olsen : > [Once in a while, my mouse button settings, as set with the xmodmap > line pointer = 1 9 3 4 ... , stop working, though xmodmap -pp > still reports the setting I had made. Rerunning xmodmap fixes it.] > [...] > I have no idea what triggers this, so I don't feel I have enough > data to write a PR. Now I do have a notion: Leaving the office in the evening after running xlock and then returning in the morning and unlocking triggers it, AFAICT every time. (Just running xlock for a shorter time does not.) So naturally I got curious, and noticed from the log file that something appears to trigger a rescan of USB devices when I unlock my xlock in the morning. But is it Xorg, or is it hald, or is something else to blame? Here is the latest dmesg output from that time (I omit the messages concerning attached USB disks etc): Unknown USB device: vendor 0x046d product 0xc408 bus uhub4 ums0: on uhub4 ums0: 5 buttons. Unknown USB device: vendor 0x046d product 0xc016 bus uhub3 ums1: on uhub3 ums1: 3 buttons and Z dir. Also, Xorg.0.conf is modified at the same time. I don't know how many of its trailing lines are from this morning, so here is a random number of trailing lines: (II) XINPUT: Adding extended input device "AT Keyboard" (type: KEYBOARD) (II) config/hal: removing device USB Trackball (II) UnloadModule: "mouse" (II) config/hal: Adding input device USB Trackball (**) USB Trackball: Device: "/dev/sysmouse" (==) USB Trackball: Protocol: "Auto" (**) USB Trackball: always reports core events (**) Option "Device" "/dev/sysmouse" (==) USB Trackball: Emulate3Buttons, Emulate3Timeout: 50 (**) USB Trackball: ZAxisMapping: buttons 4 and 5 (**) USB Trackball: Buttons: 9 (**) USB Trackball: Sensitivity: 1 (II) XINPUT: Adding extended input device "USB Trackball" (type: MOUSE) (II) USB Trackball: SetupAuto: hw.iftype is 4, hw.model is 0 (II) USB Trackball: SetupAuto: protocol is SysMouse - Harald From mexas at bristol.ac.uk Wed Feb 11 02:57:47 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Wed Feb 11 02:57:53 2009 Subject: 7.4 -> X -configure gives No devices to configure Message-ID: <20090211104217.GA22637@mech-cluster238.men.bris.ac.uk> Upgrade from 7.3 to 7.4 made X unsuable on FBSD 7.1-stable i386. I followed the UPDATE procedures, had no errors on build, but on X -configure I get No devices to configure. Configuration failed. This is a Compaq Armada 1700 laptop, old I know, but 7.3 worked fine. The graphics is by Chips and Technologies, nothing fancy, and the driver is xf86-video-chips-1.2.1. The full log is below. What's going on? many thanks anton ******************************* X.Org X Server 1.5.3 Release Date: 5 November 2008 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE i386 Current Operating System: FreeBSD mech-aslap33.men.bris.ac.uk 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 14:31:50 GMT 2009 mexas@mech-aslap33.men.bris.ac.uk:/usr/obj/usr/src/sys/ARMADA1700 i386 Build Date: 09 February 2009 10:16:23AM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 11 10:15:59 2009 (II) Loader magic: 0x81bede0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 4.1 X.Org XInput driver : 2.1 X.Org Server Extension : 1.1 X.Org Font Renderer : 0.6 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:8:0) Chips and Technologies F65555 HiQVPro rev 168, Mem @ 0x40000000/0, BIOS @ 0x????????/65536 List of video drivers: chips (II) LoadModule: "chips" (II) Loading /usr/local/lib/xorg/modules/drivers//chips_drv.so (II) Module chips: vendor="X.Org Foundation" compiled for 1.5.3, module version = 1.2.1 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 4.1 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) Primary Device is: PCI 00@00:08:0 No devices to configure. Configuration failed. -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From wblock at wonkity.com Wed Feb 11 08:27:52 2009 From: wblock at wonkity.com (Warren Block) Date: Wed Feb 11 08:27:59 2009 Subject: [CFT] xf86-video-ati-6.10.99.0 In-Reply-To: <1234248221.1524.31.camel@ferret.2hip.net> References: <1234248221.1524.31.camel@ferret.2hip.net> Message-ID: On Tue, 10 Feb 2009, Robert Noland wrote: > This patch is for the 6.11.0rc version of the ati driver driver. > > http://people.freebsd.org/~rnoland/xf86-video-ati-6.10.99.0.patch Seems to work just as well as 6.10 on a Radeon X1650, no new problems. -Warren Block * Rapid City, South Dakota USA From lioux at FreeBSD.org Wed Feb 11 19:22:13 2009 From: lioux at FreeBSD.org (Mario Sergio Fujikawa Ferreira) Date: Wed Feb 11 19:22:19 2009 Subject: xorg 7.4 missing my nv(4x) 2nd video card (3rd head) Message-ID: <20090212032156.48578.qmail@exxodus.fedaykin.here> Hi, After the update to xorg 7.4, my 2nd video card has been missing. All ports up to date following ports/UPDATING instructions. Screen0 has 2 heads (SyncMaster955DFEsquerda and SyncMaster955DFDireita), whilst Screen1 composes only one head (SyncMaster955DFEsquerda). Totalling 3 heads. The setup worked perfectly up until the update but now I only get a dualhead setup with SyncMaster955DFEsquerda and SyncMaster955DFDireita. Let me know if I can be of any assistance. Regards, - Xorg.0.log http://people.freebsd.org/~lioux/xorg/2009021200/Xorg.0.log - pciconf.txt http://people.freebsd.org/~lioux/xorg/2009021200/pciconf.txt - xorg.conf http://people.freebsd.org/~lioux/xorg/2009021200/xorg.conf - startx.log ($ script startx.log startx -listen_tcp --) http://people.freebsd.org/~lioux/xorg/2009021200/startx.log.bz2 -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature From wsk at gddsn.org.cn Thu Feb 12 05:34:13 2009 From: wsk at gddsn.org.cn (wsk) Date: Thu Feb 12 05:34:21 2009 Subject: xf86-video-nouveau Message-ID: <4993A672.7030306@gddsn.org.cn> > and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv > he/she can try luck with xf86-video-nouveau. unlucky get following errors on my dell D830(Quadro NVS 140M) (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.0.log" for additional informati on.: -------------- next part -------------- Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" FontPath "/usr/local/lib/X11/fonts/TrueType/" FontPath "/usr/local/lib/X11/fonts/bitstream-vera/" FontPath "/usr/local/lib/X11/fonts/cyrillic/" FontPath "/usr/local/lib/X11/fonts/encodings/" FontPath "/usr/local/lib/X11/fonts/util/" FontPath "/usr/local/share/fonts/amspsfont/type1/" FontPath "/usr/local/share/fonts/cmpsfont/type1/" EndSection Section "Module" Load "extmod" Load "GLcore" Load "xtrap" Load "glx" Load "dbe" Load "dri" Load "record" Load "freetype" Load "type1" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz Modeline "1920x1200_60.00" 193.16 1920 2048 2256 2592 1200 1201 1204 1242 -HSync +Vsync EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "SWcursor" # [] #Option "HWcursor" # [] #Option "NoAccel" # [] #Option "ShadowFB" # [] #Option "UseFBDev" # [] #Option "Rotate" # [] #Option "VideoKey" # #Option "FlatPanel" # [] #Option "FPDither" # [] #Option "CrtcNumber" # #Option "FPScale" # [] #Option "FPTweak" # #Option "DualHead" # [] Identifier "Card0" Driver "vesa" VendorName "nVidia Corporation" BoardName "Quadro NVS 140M" BusID "PCI:1:0:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 24 Modes "1920x1200" EndSubSection EndSection From swell.k at gmail.com Thu Feb 12 10:57:48 2009 From: swell.k at gmail.com (Anonymous) Date: Thu Feb 12 10:57:54 2009 Subject: xf86-video-nouveau In-Reply-To: <4993A672.7030306@gddsn.org.cn> (wsk@gddsn.org.cn's message of "Thu, 12 Feb 2009 12:32:50 +0800") References: <4993A672.7030306@gddsn.org.cn> Message-ID: <86d4dn4h5r.fsf@gmail.com> wsk writes: >> and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv >> he/she can try luck with xf86-video-nouveau. > > unlucky get following errors on my dell D830(Quadro NVS 140M) > (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space > (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear > (II) UnloadModule: "nouveau" > (II) UnloadModule: "vgahw" > (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so > (II) UnloadModule: "int10" > (II) Unloading /usr/local/lib/xorg/modules//libint10.so > (EE) Screen(s) found, but none have a usable configuration. Looks like configuration problem. I'd like to see *full* Xorg.N.log using xorg.conf which contains only "Device" section. Like the one below. Section "Device" Identifier "Card0" Driver "nouveau" EndSection The rest should be autodetected. From rnoland at FreeBSD.org Thu Feb 12 12:33:09 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Thu Feb 12 12:33:41 2009 Subject: 7.4 -> X -configure gives No devices to configure In-Reply-To: <20090211104217.GA22637@mech-cluster238.men.bris.ac.uk> References: <20090211104217.GA22637@mech-cluster238.men.bris.ac.uk> Message-ID: <1234470704.1524.41.camel@ferret.2hip.net> On Wed, 2009-02-11 at 10:42 +0000, Anton Shterenlikht wrote: > Upgrade from 7.3 to 7.4 made X unsuable on FBSD 7.1-stable i386. > I followed the UPDATE procedures, had no errors on build, > but on X -configure I get > > No devices to configure. Configuration failed. > > This is a Compaq Armada 1700 laptop, old I know, but 7.3 worked > fine. The graphics is by Chips and Technologies, nothing fancy, > and the driver is xf86-video-chips-1.2.1. The full log is below. > > What's going on? > > many thanks > anton > > ******************************* > > X.Org X Server 1.5.3 > Release Date: 5 November 2008 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 7.1-STABLE i386 > Current Operating System: FreeBSD mech-aslap33.men.bris.ac.uk 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 14:31:50 GMT 2009 mexas@mech-aslap33.men.bris.ac.uk:/usr/obj/usr/src/sys/ARMADA1700 i386 > Build Date: 09 February 2009 10:16:23AM > > Before reporting problems, check http://wiki.x.org > to make sure that you have the latest version. > Markers: (--) probed, (**) from config file, (==) default setting, > (++) from command line, (!!) notice, (II) informational, > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 11 10:15:59 2009 > (II) Loader magic: 0x81bede0 > (II) Module ABI versions: > X.Org ANSI C Emulation: 0.4 > X.Org Video Driver: 4.1 > X.Org XInput driver : 2.1 > X.Org Server Extension : 1.1 > X.Org Font Renderer : 0.6 > (II) Loader running on freebsd > (--) Using syscons driver with X support (version 2.0) > (--) using VT number 9 > > (--) PCI:*(0@0:8:0) Chips and Technologies F65555 HiQVPro rev 168, Mem @ 0x40000000/0, BIOS @ 0x????????/65536 > List of video drivers: > chips > (II) LoadModule: "chips" > > (II) Loading /usr/local/lib/xorg/modules/drivers//chips_drv.so > (II) Module chips: vendor="X.Org Foundation" > compiled for 1.5.3, module version = 1.2.1 > Module class: X.Org Video Driver > ABI class: X.Org Video Driver, version 4.1 > (II) System resource ranges: > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > (II) Primary Device is: PCI 00@00:08:0 > No devices to configure. Configuration failed. I'll need to see a pciconf -lv, but it looks like the chips driver isn't recognizing your chip. You could try the vesa driver. The chips driver has not been maintained in quite a while I would say. robert. -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090212/db4169b9/attachment.pgp From wsk at gddsn.org.cn Thu Feb 12 16:49:13 2009 From: wsk at gddsn.org.cn (wsk) Date: Thu Feb 12 16:49:22 2009 Subject: xf86-video-nouveau In-Reply-To: <86d4dn4h5r.fsf@gmail.com> References: <4993A672.7030306@gddsn.org.cn> <86d4dn4h5r.fsf@gmail.com> Message-ID: <4994C38D.3000409@gddsn.org.cn> Anonymous Wrote: > wsk writes: > > >>> and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv >>> he/she can try luck with xf86-video-nouveau. >>> >> unlucky get following errors on my dell D830(Quadro NVS 140M) >> (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space >> (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear >> (II) UnloadModule: "nouveau" >> (II) UnloadModule: "vgahw" >> (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so >> (II) UnloadModule: "int10" >> (II) Unloading /usr/local/lib/xorg/modules//libint10.so >> (EE) Screen(s) found, but none have a usable configuration. >> > > Looks like configuration problem. I'd like to see *full* Xorg.N.log > using xorg.conf which contains only "Device" section. Like the one below. > > Section "Device" > Identifier "Card0" > Driver "nouveau" > EndSection > > The rest should be autodetected. > > thanks for your reply. and attached the file with your introduction. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (++) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.0.log" for additional information. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.1.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.1.log" for additional information. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.2.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.2.log" for additional information. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.3.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.3.log" for additional information. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.4.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.4.log" for additional information. -------------- next part -------------- This is a pre-release version of the X server from The X.Org Foundation. It is not supported in any way. Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/. Select the "xorg" product for bugs you find in this release. Before reporting bugs in pre-release versions please check the latest version in the X.Org Foundation git repository. See http://wiki.x.org/wiki/GitPage for git access instructions. X.Org X Server 1.5.99.902 (1.6.0 RC 2) Release Date: 2009-1-30 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 7.1-STABLE amd64 Current Operating System: FreeBSD lp.gddsn.org.cn 7.1-STABLE FreeBSD 7.1-STABLE #21: Thu Feb 12 16:03:14 CST 2009 wsk@lp.gddsn.org.cn:/usr/obj/usr/src/sys/WSK amd64 Build Date: 06 February 2009 04:22:44PM Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.5.log", Time: Fri Feb 13 08:45:31 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) No Layout section. Using the first Screen section. (==) No screen section available. Using defaults. (**) |-->Screen "Default Screen Section" (0) (**) | |-->Monitor "" (==) No device specified for screen "Default Screen Section". Using the first device section listed. (**) | |-->Device "Card0" (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. (==) Automatically adding devices (==) Automatically enabling devices (==) No FontPath specified. Using compiled-in default. (==) FontPath set to: built-ins (==) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInput. (II) Loader magic: 0xb20 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@1:0:0) nVidia Corporation Quadro NVS 140M rev 161, Mem @ 0xfd000000/16777216, 0x00000000/268435456, 0xfa000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (==) AIGLX disabled (==) Exporting typical set of GLX visuals (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "nouveau" (II) Loading /usr/local/lib/xorg/modules/drivers//nouveau_drv.so (II) Module nouveau: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.0.10 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU driver (II) NOUVEAU driver for NVIDIA chipset families : RIVA TNT (NV04) RIVA TNT2 (NV05) GeForce 256 (NV10) GeForce 2 (NV11, NV15) GeForce 4MX (NV17, NV18) GeForce 3 (NV20) GeForce 4Ti (NV25, NV28) GeForce FX (NV3x) GeForce 6 (NV4x) GeForce 7 (G7x) GeForce 8 (G8x) (II) Primary Device is: PCI 01@00:00:0 (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (--) NOUVEAU(0): Chipset: "NVIDIA NV86" (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/local/lib/xorg/modules//libint10.so (II) Module int10: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) NOUVEAU(0): Initializing int10 (==) NOUVEAU(0): Write-combining range (0xa0000,0x20000) was already clear (==) NOUVEAU(0): Write-combining range (0xc0000,0x40000) was already clear (II) NOUVEAU(0): Primary V_BIOS segment is: 0xc000 (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (--) NOUVEAU(0): VESA-HACK: Console VGA mode is 0x3 (II) NOUVEAU(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32 (==) NOUVEAU(0): RGB weight 888 (==) NOUVEAU(0): Default visual is TrueColor (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor="X.Org Foundation" compiled for 1.5.99.902, module version = 0.1.0 ABI class: X.Org Video Driver, version 5.0 (==) NOUVEAU(0): Randr1.2 support enabled (==) NOUVEAU(0): Using HW cursor (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear (II) UnloadModule: "nouveau" (II) UnloadModule: "vgahw" (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so (II) UnloadModule: "int10" (II) Unloading /usr/local/lib/xorg/modules//libint10.so (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found Please consult the The X.Org Foundation support at http://wiki.x.org for help. Please also check the log file at "/var/log/Xorg.5.log" for additional information. From danallen46 at airwired.net Thu Feb 12 20:01:17 2009 From: danallen46 at airwired.net (Dan Allen) Date: Thu Feb 12 20:01:48 2009 Subject: x48 broken with X.org 7.4 Message-ID: In /usr/ports/emulators/x48 is a great little HP-48 calculator emulator. It has worked for decades. It is very simple UI-wise. It broke with X.org 7.4. The display now has snowy lines on a black background instead of digits on a light background. This renders the calculator unusable. My machine is a Toshiba U205 Satellite running the Intel i810 driver, BSD 7.1-STABLE. I sync and rebuild /usr/src and ports almost every day. Where there major font changes? Driver changes? Things to do manually that I may not have done? I rebuilt everything that depends on X.org and finally got my mouse working, Firefox, and a few other X apps. This is my last casualty to fix from this upgrade. (I have yet to see anything that qualifies as better since 7.3!) It would be great to get it up and running again... Any help would be appreciated. Dan Allen Spring Lake, Utah From mexas at bristol.ac.uk Fri Feb 13 01:26:33 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Feb 13 01:26:47 2009 Subject: 7.4 -> X -configure gives No devices to configure In-Reply-To: <1234470704.1524.41.camel@ferret.2hip.net> References: <20090211104217.GA22637@mech-cluster238.men.bris.ac.uk> <1234470704.1524.41.camel@ferret.2hip.net> Message-ID: <20090213092623.GA84923@mech-cluster238.men.bris.ac.uk> On Thu, Feb 12, 2009 at 03:31:43PM -0500, Robert Noland wrote: > On Wed, 2009-02-11 at 10:42 +0000, Anton Shterenlikht wrote: > > Upgrade from 7.3 to 7.4 made X unsuable on FBSD 7.1-stable i386. > > I followed the UPDATE procedures, had no errors on build, > > but on X -configure I get > > > > No devices to configure. Configuration failed. > > > > This is a Compaq Armada 1700 laptop, old I know, but 7.3 worked > > fine. The graphics is by Chips and Technologies, nothing fancy, > > and the driver is xf86-video-chips-1.2.1. The full log is below. > > > > What's going on? > > > > many thanks > > anton > > > > ******************************* > > > > X.Org X Server 1.5.3 > > Release Date: 5 November 2008 > > X Protocol Version 11, Revision 0 > > Build Operating System: FreeBSD 7.1-STABLE i386 > > Current Operating System: FreeBSD mech-aslap33.men.bris.ac.uk 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 14:31:50 GMT 2009 mexas@mech-aslap33.men.bris.ac.uk:/usr/obj/usr/src/sys/ARMADA1700 i386 > > Build Date: 09 February 2009 10:16:23AM > > > > Before reporting problems, check http://wiki.x.org > > to make sure that you have the latest version. > > Markers: (--) probed, (**) from config file, (==) default setting, > > (++) from command line, (!!) notice, (II) informational, > > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > > (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 11 10:15:59 2009 > > (II) Loader magic: 0x81bede0 > > (II) Module ABI versions: > > X.Org ANSI C Emulation: 0.4 > > X.Org Video Driver: 4.1 > > X.Org XInput driver : 2.1 > > X.Org Server Extension : 1.1 > > X.Org Font Renderer : 0.6 > > (II) Loader running on freebsd > > (--) Using syscons driver with X support (version 2.0) > > (--) using VT number 9 > > > > (--) PCI:*(0@0:8:0) Chips and Technologies F65555 HiQVPro rev 168, Mem @ 0x40000000/0, BIOS @ 0x????????/65536 > > List of video drivers: > > chips > > (II) LoadModule: "chips" > > > > (II) Loading /usr/local/lib/xorg/modules/drivers//chips_drv.so > > (II) Module chips: vendor="X.Org Foundation" > > compiled for 1.5.3, module version = 1.2.1 > > Module class: X.Org Video Driver > > ABI class: X.Org Video Driver, version 4.1 > > (II) System resource ranges: > > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > > [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > > [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > > (II) Primary Device is: PCI 00@00:08:0 > > No devices to configure. Configuration failed. > > I'll need to see a pciconf -lv, but it looks like the chips driver isn't > recognizing your chip. You could try the vesa driver. The chips driver > has not been maintained in quite a while I would say. #pciconf -lv hostb0@pci0:0:0:0: class=0x060000 card=0x04600e11 chip=0x71928086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82443BX/ZX 440BX/ZX CPU to PCI Bridge (AGP Not Implemented)' class = bridge subclass = HOST-PCI isab0@pci0:0:7:0: class=0x060100 card=0x00000000 chip=0x71108086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82371AB/EB/MB PIIX4/4E/4M ISA Bridge' class = bridge subclass = PCI-ISA atapci0@pci0:0:7:1: class=0x010180 card=0x00000000 chip=0x71118086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' device = '82371AB/EB/MB PIIX4/4E/4M IDE Controller' class = mass storage subclass = ATA uhci0@pci0:0:7:2: class=0x0c0300 card=0x00000000 chip=0x71128086 rev=0x01 hdr=0x00 vendor = 'Intel Corporation' device = '82371AB/EB/MB PIIX4/4E/4M USB Interface' class = serial bus subclass = USB none0@pci0:0:7:3: class=0x068000 card=0x00000000 chip=0x71138086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82371AB/EB/MB PIIX4/4E/4M Power Management Controller' class = bridge vgapci0@pci0:0:8:0: class=0x030000 card=0xb0490e11 chip=0x00e5102c rev=0xa8 hdr=0x00 vendor = 'Asiliant (Chips And Technologies)' device = 'F65555 HiQVPro GUI Accelerator' class = display subclass = VGA cbb0@pci0:0:17:0: class=0x060700 card=0xb0470e11 chip=0xac17104c rev=0x02 hdr=0x02 vendor = 'Texas Instruments (TI)' device = 'PCI1220 PC Card CardBus Controller' class = bridge subclass = PCI-CardBus cbb1@pci0:0:17:1: class=0x060700 card=0xb0470e11 chip=0xac17104c rev=0x02 hdr=0x02 vendor = 'Texas Instruments (TI)' device = 'PCI1220 PC Card CardBus Controller' class = bridge subclass = PCI-CardBus rl0@pci0:1:0:0: class=0x020000 card=0x042810bd chip=0x813910ec rev=0x10 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'RT8139 (A/B/C/810x/813x/C+) Fast Ethernet Adapter' class = network subclass = ethernet many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From swell.k at gmail.com Fri Feb 13 03:26:28 2009 From: swell.k at gmail.com (Anonymous) Date: Fri Feb 13 03:26:34 2009 Subject: xf86-video-nouveau In-Reply-To: <4994C38D.3000409@gddsn.org.cn> (wsk@gddsn.org.cn's message of "Fri, 13 Feb 2009 08:49:17 +0800") References: <4993A672.7030306@gddsn.org.cn> <86d4dn4h5r.fsf@gmail.com> <4994C38D.3000409@gddsn.org.cn> Message-ID: <86ab8q38df.fsf@gmail.com> wsk writes: > Anonymous Wrote: >> wsk writes: >>>> and GF9300G M (sic!). So if anyone have troubles with xf86-video-nv >>>> he/she can try luck with xf86-video-nouveau. >>>> >>> unlucky get following errors on my dell D830(Quadro NVS 140M) >>> >>> (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space >>> (==) NOUVEAU(0): Write-combining range (0x0,0x1000) was already clear >>> (II) UnloadModule: "nouveau" >>> (II) UnloadModule: "vgahw" >>> (II) Unloading /usr/local/lib/xorg/modules//libvgahw.so >>> (II) UnloadModule: "int10" >>> (II) Unloading /usr/local/lib/xorg/modules//libint10.so >>> (EE) Screen(s) found, but none have a usable configuration. >>> >> >> Looks like configuration problem. I'd like to see *full* Xorg.N.log >> using xorg.conf which contains only "Device" section. Like the one below. >> >> Section "Device" >> Identifier "Card0" >> Driver "nouveau" >> EndSection >> >> The rest should be autodetected. >> >> > thanks for your reply. and attached the file with your introduction. [...] Does your situation improve if you boot with ACPI disabled and try again? Particularly regarding the line > (EE) NOUVEAU(0): 1271: No valid FB address in PCI config space From dickey at radix.net Fri Feb 13 03:48:27 2009 From: dickey at radix.net (Thomas Dickey) Date: Fri Feb 13 03:48:33 2009 Subject: x48 broken with X.org 7.4 In-Reply-To: References: Message-ID: <20090213113025.GA23048@saltmine.radix.net> On Thu, Feb 12, 2009 at 08:34:33PM -0700, Dan Allen wrote: > In /usr/ports/emulators/x48 is a great little HP-48 calculator > emulator. It has worked for decades. It is very simple UI-wise. > > It broke with X.org 7.4. The display now has snowy lines on a black > background instead of digits on a light background. This renders the > calculator unusable. > > My machine is a Toshiba U205 Satellite running the Intel i810 driver, > BSD 7.1-STABLE. I sync and rebuild /usr/src and ports almost every day. > > Where there major font changes? Driver changes? Things to do It sounds like fonts. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: not available Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090213/b7bdc859/attachment.pgp From mexas at bristol.ac.uk Fri Feb 13 07:30:29 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri Feb 13 07:30:36 2009 Subject: [mexas@bristol.ac.uk: xdm -debug 1 => Nothing left to do, exiting] Message-ID: <20090213153016.GA70895@mech-cluster238.men.bris.ac.uk> also to questions@freebsd.org On 6.4-stable alpha I cannot get xdm to become a daemon, it exits immediately with empty /var/log/xdm.log. I tried to use -debug option, and this is the output: # xdm -debug 1 DisplayManager.errorLogFile/DisplayManager.ErrorLogFile value /var/log/xdm.log DisplayManager.daemonMode/DisplayManager.DaemonMode value true DisplayManager.pidFile/DisplayManager.PidFile value /var/run/xdm.pid DisplayManager.lockPidFile/DisplayManager.LockPidFile value true DisplayManager.authDir/DisplayManager.authDir value /usr/local/lib/X11/xdm DisplayManager.autoRescan/DisplayManager.AutoRescan value true DisplayManager.removeDomainname/DisplayManager.RemoveDomainname value true DisplayManager.keyFile/DisplayManager.KeyFile value /usr/local/lib/X11/xdm/xdm- keys DisplayManager.accessFile/DisplayManager.AccessFile value /usr/local/lib/X11/xd m/Xaccess DisplayManager.exportList/DisplayManager.ExportList value DisplayManager.randomDevice/DisplayManager.RandomDevice value /dev/urandom DisplayManager.greeterLib/DisplayManager.GreeterLib value /usr/local/lib/X11/xdm /libXdmGreet.so DisplayManager.choiceTimeout/DisplayManager.ChoiceTimeout value 15 DisplayManager.sourceAddress/DisplayManager.SourceAddress value false DisplayManager.willing/DisplayManager.Willing value su -m nobody -c /usr/local/ lib/X11/xdm/Xwilling Nothing left to do, exiting # What does this mean? Some misconfiguration? I haven't touched any config files from x 7.3 to 7.4, and I followed the UPDATING. Does ldd shed any light on this problem?: #ldd -av /usr/local/bin/xdm /usr/local/bin/xdm: libXmu.so.6 => /usr/local/lib/libXmu.so.6 (0x160072000) libXt.so.6 => /usr/local/lib/libXt.so.6 (0x1600a4000) libSM.so.6 => /usr/local/lib/libSM.so.6 (0x16012e000) libuuid.so.1 => /usr/local/lib/libuuid.so.1 (0x160148000) libICE.so.6 => /usr/local/lib/libICE.so.6 (0x16016a000) libutil.so.5 => /lib/libutil.so.5 (0x16019e000) libXinerama.so.1 => /usr/local/lib/libXinerama.so.1 (0x1601c0000) libXext.so.6 => /usr/local/lib/libXext.so.6 (0x1601d4000) libXpm.so.4 => /usr/local/lib/libXpm.so.4 (0x1601fa000) libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) libxcb.so.2 => /usr/local/lib/libxcb.so.2 (0x16036a000) libXau.so.6 => /usr/local/lib/libXau.so.6 (0x16039c000) libpthread-stubs.so.0 => /usr/local/lib/libpthread-stubs.so.0 (0x1603b0000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x1603c2000) libcrypt.so.3 => /lib/libcrypt.so.3 (0x1603d8000) libpam.so.3 => /usr/lib/libpam.so.3 (0x1603ee000) librpcsvc.so.3 => /usr/lib/librpcsvc.so.3 (0x160408000) libc.so.6 => /lib/libc.so.6 (0x160424000) /usr/local/lib/libXmu.so.6: libXt.so.6 => /usr/local/lib/libXt.so.6 (0x1600a4000) libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) libSM.so.6 => /usr/local/lib/libSM.so.6 (0x16012e000) libICE.so.6 => /usr/local/lib/libICE.so.6 (0x16016a000) libXext.so.6 => /usr/local/lib/libXext.so.6 (0x1601d4000) /usr/local/lib/libXt.so.6: libSM.so.6 => /usr/local/lib/libSM.so.6 (0x16012e000) libICE.so.6 => /usr/local/lib/libICE.so.6 (0x16016a000) libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) /usr/local/lib/libSM.so.6: libICE.so.6 => /usr/local/lib/libICE.so.6 (0x16016a000) libuuid.so.1 => /usr/local/lib/libuuid.so.1 (0x160148000) /usr/local/lib/libXinerama.so.1: libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) libXext.so.6 => /usr/local/lib/libXext.so.6 (0x1601d4000) /usr/local/lib/libXext.so.6: libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) libxcb.so.2 => /usr/local/lib/libxcb.so.2 (0x16036a000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x1603c2000) libpthread-stubs.so.0 => /usr/local/lib/libpthread-stubs.so.0 (0x1603b0000) librpcsvc.so.3 => /usr/lib/librpcsvc.so.3 (0x160408000) libXau.so.6 => /usr/local/lib/libXau.so.6 (0x16039c000) /usr/local/lib/libXpm.so.4: libX11.so.6 => /usr/local/lib/libX11.so.6 (0x160220000) /usr/local/lib/libX11.so.6: libxcb.so.2 => /usr/local/lib/libxcb.so.2 (0x16036a000) librpcsvc.so.3 => /usr/lib/librpcsvc.so.3 (0x160408000) /usr/local/lib/libxcb.so.2: libXau.so.6 => /usr/local/lib/libXau.so.6 (0x16039c000) libXdmcp.so.6 => /usr/local/lib/libXdmcp.so.6 (0x1603c2000) libpthread-stubs.so.0 => /usr/local/lib/libpthread-stubs.so.0 (0x1603b0000) many thanks anton -- Anton Shterenlikht Room 2.6, Queen's Building Mech Eng Dept Bristol University University Walk, Bristol BS8 1TR, UK Tel: +44 (0)117 928 8233 Fax: +44 (0)117 929 4423 From rnoland at FreeBSD.org Fri Feb 13 09:18:58 2009 From: rnoland at FreeBSD.org (Robert Noland) Date: Fri Feb 13 09:19:11 2009 Subject: 7.4 -> X -configure gives No devices to configure In-Reply-To: <20090213092623.GA84923@mech-cluster238.men.bris.ac.uk> References: <20090211104217.GA22637@mech-cluster238.men.bris.ac.uk> <1234470704.1524.41.camel@ferret.2hip.net> <20090213092623.GA84923@mech-cluster238.men.bris.ac.uk> Message-ID: <1234545519.1528.3.camel@ferret.2hip.net> On Fri, 2009-02-13 at 09:26 +0000, Anton Shterenlikht wrote: > On Thu, Feb 12, 2009 at 03:31:43PM -0500, Robert Noland wrote: > > On Wed, 2009-02-11 at 10:42 +0000, Anton Shterenlikht wrote: > > > Upgrade from 7.3 to 7.4 made X unsuable on FBSD 7.1-stable i386. > > > I followed the UPDATE procedures, had no errors on build, > > > but on X -configure I get > > > > > > No devices to configure. Configuration failed. > > > > > > This is a Compaq Armada 1700 laptop, old I know, but 7.3 worked > > > fine. The graphics is by Chips and Technologies, nothing fancy, > > > and the driver is xf86-video-chips-1.2.1. The full log is below. > > > > > > What's going on? > > > > > > many thanks > > > anton > > > > > > ******************************* > > > > > > X.Org X Server 1.5.3 > > > Release Date: 5 November 2008 > > > X Protocol Version 11, Revision 0 > > > Build Operating System: FreeBSD 7.1-STABLE i386 > > > Current Operating System: FreeBSD mech-aslap33.men.bris.ac.uk 7.1-STABLE FreeBSD 7.1-STABLE #0: Sat Jan 31 14:31:50 GMT 2009 mexas@mech-aslap33.men.bris.ac.uk:/usr/obj/usr/src/sys/ARMADA1700 i386 > > > Build Date: 09 February 2009 10:16:23AM > > > > > > Before reporting problems, check http://wiki.x.org > > > to make sure that you have the latest version. > > > Markers: (--) probed, (**) from config file, (==) default setting, > > > (++) from command line, (!!) notice, (II) informational, > > > (WW) warning, (EE) error, (NI) not implemented, (??) unknown. > > > (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 11 10:15:59 2009 > > > (II) Loader magic: 0x81bede0 > > > (II) Module ABI versions: > > > X.Org ANSI C Emulation: 0.4 > > > X.Org Video Driver: 4.1 > > > X.Org XInput driver : 2.1 > > > X.Org Server Extension : 1.1 > > > X.Org Font Renderer : 0.6 > > > (II) Loader running on freebsd > > > (--) Using syscons driver with X support (version 2.0) > > > (--) using VT number 9 > > > > > > (--) PCI:*(0@0:8:0) Chips and Technologies F65555 HiQVPro rev 168, Mem @ 0x40000000/0, BIOS @ 0x????????/65536 > > > List of video drivers: > > > chips > > > (II) LoadModule: "chips" > > > > > > (II) Loading /usr/local/lib/xorg/modules/drivers//chips_drv.so > > > (II) Module chips: vendor="X.Org Foundation" > > > compiled for 1.5.3, module version = 1.2.1 > > > Module class: X.Org Video Driver > > > ABI class: X.Org Video Driver, version 4.1 > > > (II) System resource ranges: > > > [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) > > > [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] > > > [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] > > > [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] > > > [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] > > > [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] > > > (II) Primary Device is: PCI 00@00:08:0 > > > No devices to configure. Configuration failed. > > > > I'll need to see a pciconf -lv, but it looks like the chips driver isn't > > recognizing your chip. You could try the vesa driver. The chips driver > > has not been maintained in quite a while I would say. Hrm, ok... The chips drivers attach routine is a bit odd. It looks like it should work with this chip, but I would have to dig into the driver more than I care to to figure out why it isn't attaching. I would just use vesa... You aren't likely to get much with this driver anyway really... robert. > #pciconf -lv > hostb0@pci0:0:0:0: class=0x060000 card=0x04600e11 chip=0x71928086 rev=0x02 hdr=0x00 > vendor = 'Intel Corporation' > device = '82443BX/ZX 440BX/ZX CPU to PCI Bridge (AGP Not Implemented)' > class = bridge > subclass = HOST-PCI > isab0@pci0:0:7:0: class=0x060100 card=0x00000000 chip=0x71108086 rev=0x02 hdr=0x00 > vendor = 'Intel Corporation' > device = '82371AB/EB/MB PIIX4/4E/4M ISA Bridge' > class = bridge > subclass = PCI-ISA > atapci0@pci0:0:7:1: class=0x010180 card=0x00000000 chip=0x71118086 rev=0x01 hdr=0x00 > vendor = 'Intel Corporation' > device = '82371AB/EB/MB PIIX4/4E/4M IDE Controller' > class = mass storage > subclass = ATA > uhci0@pci0:0:7:2: class=0x0c0300 card=0x00000000 chip=0x71128086 rev=0x01 hdr=0x00 > vendor = 'Intel Corporation' > device = '82371AB/EB/MB PIIX4/4E/4M USB Interface' > class = serial bus > subclass = USB > none0@pci0:0:7:3: class=0x068000 card=0x00000000 chip=0x71138086 rev=0x02 hdr=0x00 > vendor = 'Intel Corporation' > device = '82371AB/EB/MB PIIX4/4E/4M Power Management Controller' > class = bridge > vgapci0@pci0:0:8:0: class=0x030000 card=0xb0490e11 chip=0x00e5102c rev=0xa8 hdr=0x00 > vendor = 'Asiliant (Chips And Technologies)' > device = 'F65555 HiQVPro GUI Accelerator' > class = display > subclass = VGA > cbb0@pci0:0:17:0: class=0x060700 card=0xb0470e11 chip=0xac17104c rev=0x02 hdr=0x02 > vendor = 'Texas Instruments (TI)' > device = 'PCI1220 PC Card CardBus Controller' > class = bridge > subclass = PCI-CardBus > cbb1@pci0:0:17:1: class=0x060700 card=0xb0470e11 chip=0xac17104c rev=0x02 hdr=0x02 > vendor = 'Texas Instruments (TI)' > device = 'PCI1220 PC Card CardBus Controller' > class = bridge > subclass = PCI-CardBus > rl0@pci0:1:0:0: class=0x020000 card=0x042810bd chip=0x813910ec rev=0x10 hdr=0x00 > vendor = 'Realtek Semiconductor' > device = 'RT8139 (A/B/C/810x/813x/C+) Fast Ethernet Adapter' > class = network > subclass = ethernet > > many thanks > anton > -- Robert Noland FreeBSD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 196 bytes Desc: This is a digitally signed message part Url : http://lists.freebsd.org/pipermail/freebsd-x11/attachments/20090213/9bdebca9/attachment.pgp From edwin at FreeBSD.org Fri Feb 13 18:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri Feb 13 18:40:18 2009 Subject: ports/131667: graphics/libGLU fails to build Message-ID: <200902140240.n1E2eBaQ086757@freefall.freebsd.org> Synopsis: graphics/libGLU fails to build Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 14 02:40:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=131667 From jhein at timing.com Fri Feb 13 21:30:04 2009 From: jhein at timing.com (John Hein) Date: Fri Feb 13 21:30:10 2009 Subject: ports/131667: graphics/libGLU fails to build Message-ID: <200902140530.n1E5U3sK017523@freefall.freebsd.org> The following reply was made to PR ports/131667; it has been noted by GNATS. From: John Hein To: bug-followup@FreeBSD.org, frank@shute.org.uk Cc: Subject: Re: ports/131667: graphics/libGLU fails to build Date: Fri, 13 Feb 2009 21:55:47 -0700 Frank Shute wrote: > No package 'x11-xcb' found It seems you don't have an up to date libX11 port installed. From frank at shute.org.uk Sat Feb 14 00:50:04 2009 From: frank at shute.org.uk (Frank Shute) Date: Sat Feb 14 00:50:10 2009 Subject: ports/131667: graphics/libGLU fails to build Message-ID: <200902140850.n1E8o3At099083@freefall.freebsd.org> The following reply was made to PR ports/131667; it has been noted by GNATS. From: Frank Shute To: John Hein Cc: bug-followup@FreeBSD.org Subject: Re: ports/131667: graphics/libGLU fails to build Date: Sat, 14 Feb 2009 08:29:12 +0000 On Fri, Feb 13, 2009 at 09:55:47PM -0700, John Hein wrote: > > Frank Shute wrote: > > No package 'x11-xcb' found > > It seems you don't have an up to date libX11 port installed. > Many thanks John, updating libX11 did the job. The cryptic error message threw me. Sorry about the noise. Regards, -- Frank Contact info: http://www.shute.org.uk/misc/contact.html From rnoland at FreeBSD.org Sat Feb 14 10:27:40 2009 From: rnoland at FreeBSD.org (rnoland@FreeBSD.org) Date: Sat Feb 14 10:27:47 2009 Subject: ports/131667: graphics/libGLU fails to build Message-ID: <200902141827.n1EIRb9A035810@freefall.freebsd.org> Synopsis: graphics/libGLU fails to build State-Changed-From-To: open->closed State-Changed-By: rnoland State-Changed-When: Sat Feb 14 18:27:37 UTC 2009 State-Changed-Why: Issue resolved http://www.freebsd.org/cgi/query-pr.cgi?pr=131667 From alex at mailinglist.ahhyes.net Sat Feb 14 16:34:12 2009 From: alex at mailinglist.ahhyes.net (Alex) Date: Sat Feb 14 16:34:18 2009 Subject: Unable to build Firefox 3 from ports Message-ID: <49976274.8040701@mailinglist.ahhyes.net> Hi Guys, The subject says it all. I am running 7.1-Stable/i386 Portsnap from Sun Feb 15 01:00:52 EST 2009 The build from ports starts off ok, the dependencies are compiled and installed, however once the compilation of the firefox source starts, its not long before it dies: gmake[3]: Entering directory `/usr/ports/www/firefox3/work/mozilla/js/src' rm -f libmozjs.so /usr/local/bin/gcc43 -I/usr/local/include -I/usr/local/include -Wall -W -Wno-unused -Wpointer-arith -Wcast-align -W -Wno-long-long -O2 -fno-strict-aliasing -pipe -O2 -fno-strict-aliasing -O2 -fno-strict-aliasing -pipe -DNDEBUG -DTRIMMED -O2 -fPIC -shared -Wl,-z,defs -Wl,-h,libmozjs.so -o libmozjs.so jsapi.o jsarena.o jsarray.o jsatom.o jsbool.o jscntxt.o jsdate.o jsdbgapi.o jsdhash.o jsdtoa.o jsemit.o jsexn.o jsfun.o jsgc.o jshash.o jsinterp.o jsinvoke.o jsiter.o jslock.o jslog2.o jslong.o jsmath.o jsnum.o jsobj.o jsopcode.o jsparse.o jsprf.o jsregexp.o jsscan.o jsscope.o jsscript.o jsstr.o jsutil.o jsxdrapi.o jsxml.o prmjtime.o -pthread -Wl,-rpath-link,../../dist/bin -lm -pthread -L/usr/local/lib -lplds4 -lplc4 -lnspr4 -pthread -Wl,-Bsymbolic -lc -lm -pthread -pthread -L/usr/local/lib -liconv jsnum.o: In function `js_InitNumberClass': jsnum.c:(.text+0x12a3): undefined reference to `fedisableexcept' jsnum.o: In function `js_InitRuntimeNumberState': jsnum.c:(.text+0x1f49): undefined reference to `fedisableexcept' /usr/bin/ld: libmozjs.so: hidden symbol `fedisableexcept' isn't defined /usr/bin/ld: final link failed: Nonrepresentable section on output collect2: ld returned 1 exit status gmake[3]: *** [libmozjs.so] Error 1 gmake[3]: Leaving directory `/usr/ports/www/firefox3/work/mozilla/js/src' gmake[2]: *** [libs_tier_js] Error 2 gmake[2]: Leaving directory `/usr/ports/www/firefox3/work/mozilla' gmake[1]: *** [tier_js] Error 2 gmake[1]: Leaving directory `/usr/ports/www/firefox3/work/mozilla' gmake: *** [default] Error 2 *** Error code 2 Stop in /usr/ports/www/firefox3. *** Error code 1 Stop in /usr/ports/www/firefox3. [root@laptop /usr/ports/www/firefox3]# -------------- Any ideas? From swell.k at gmail.com Sat Feb 14 17:26:02 2009 From: swell.k at gmail.com (Anonymous) Date: Sat Feb 14 17:26:08 2009 Subject: Unable to build Firefox 3 from ports In-Reply-To: <49976274.8040701@mailinglist.ahhyes.net> (alex@mailinglist.ahhyes.net's message of "Sun, 15 Feb 2009 11:31:48 +1100") References: <49976274.8040701@mailinglist.ahhyes.net> Message-ID: <86k57sze1o.fsf@gmail.com> Alex writes: > Hi Guys, > > The subject says it all. I am running 7.1-Stable/i386 > Portsnap from Sun Feb 15 01:00:52 EST 2009 > > The build from ports starts off ok, the dependencies are compiled and > installed, however once the compilation of the firefox source starts, > its not long before it dies: > > gmake[3]: Entering directory `/usr/ports/www/firefox3/work/mozilla/js/src' > rm -f libmozjs.so > /usr/local/bin/gcc43 -I/usr/local/include -I/usr/local/include -Wall [...] > Any ideas? I think it's your gcc43 that causes build error. You can try add smth like .if ${.CURDIR:M*/www/firefox3} CC=cc CXX=c++ .endif to /etc/make.conf. From alex at mailinglist.ahhyes.net Sun Feb 15 02:01:54 2009 From: alex at mailinglist.ahhyes.net (Alex) Date: Sun Feb 15 02:02:01 2009 Subject: Unable to build Firefox 3 from ports In-Reply-To: <86k57sze1o.fsf@gmail.com> References: <49976274.8040701@mailinglist.ahhyes.net> <86k57sze1o.fsf@gmail.com> Message-ID: <4997E780.1000502@mailinglist.ahhyes.net> Hi, Thanks for the reply. I had a hunch this was why... I know the newer gcc's are also a little stricter with code. The only problem is that I had also deleted /usr/bin/gcc, /usr/bin/cc and symlinked them to gcc43 and same with /usr/bin/g++, /usr/bin/c++, symlinked those to g++43 so I could force the use of that compiler. How can i restore the default gcc/cc? Shouldn't mozilla make their code compile with current compilers though? Firefox has been the only thing so far that refuses to compile with gcc43. Anonymous wrote: > Alex writes: > > >> Hi Guys, >> >> The subject says it all. I am running 7.1-Stable/i386 >> Portsnap from Sun Feb 15 01:00:52 EST 2009 >> >> The build from ports starts off ok, the dependencies are compiled and >> installed, however once the compilation of the firefox source starts, >> its not long before it dies: >> >> gmake[3]: Entering directory `/usr/ports/www/firefox3/work/mozilla/js/src' >> rm -f libmozjs.so >> /usr/local/bin/gcc43 -I/usr/local/include -I/usr/local/include -Wall >> > [...] > >> Any ideas? >> > > I think it's your gcc43 that causes build error. You can try add smth like > > .if ${.CURDIR:M*/www/firefox3} > CC=cc > CXX=c++ > .endif > > to /etc/make.conf. > > From matt at chronos.org.uk Sun Feb 15 10:41:22 2009 From: matt at chronos.org.uk (Matt Dawson) Date: Sun Feb 15 10:41:28 2009 Subject: [CFT] xf86-video-ati-6.10.99.0 In-Reply-To: <1234248221.1524.31.camel@ferret.2hip.net> References: <1234248221.1524.31.camel@ferret.2hip.net> Message-ID: <200902151841.17555.matt@chronos.org.uk> On Tuesday 10 February 2009 06:43:41 Robert Noland wrote: > This patch is for the 6.11.0rc version of the ati driver driver. > > http://people.freebsd.org/~rnoland/xf86-video-ati-6.10.99.0.patch No issues to report here on X850XT PCI-e or Xpress 200M. -- Matt Dawson MTD15-RIPE matt@chronos.org.uk From linimon at FreeBSD.org Sun Feb 15 13:01:20 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 15 13:01:27 2009 Subject: ports/131644: x11-servers/xorg-server: Xinerama mouse event (focus freeze) problem Message-ID: <200902152101.n1FL1IhT011553@freefall.freebsd.org> Old Synopsis: Xinerama mouse event (focus freeze) problem New Synopsis: x11-servers/xorg-server: Xinerama mouse event (focus freeze) problem Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 15 21:01:06 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131644 From linimon at FreeBSD.org Sun Feb 15 13:07:37 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun Feb 15 13:07:43 2009 Subject: ports/131696: x11-servers/xorg-server: hald core dumps make X11 unusable Message-ID: <200902152107.n1FL7aHK012402@freefall.freebsd.org> Old Synopsis: hald core dumps make X11 unusable New Synopsis: x11-servers/xorg-server: hald core dumps make X11 unusable Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sun Feb 15 21:07:06 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=131696 From shuvaev at physik.uni-wuerzburg.de Sun Feb 15 13:48:38 2009 From: shuvaev at physik.uni-wuerzburg.de (Alexey Shuvaev) Date: Sun Feb 15 13:48:47 2009 Subject: Xorg 7.4 and intel video: blank screen. Message-ID: <20090215212754.GA1627@wep4035.physik.uni-wuerzburg.de> Hello all! Yet another unhappy story about new Xorg 7.4 :( Symptoms: the first start of X server is good, even dri is working, but on the second start I got black screen and unable to switch back to consoles. I can still reach the box with ssh and reboot. If I disable dri, I can go up to the 3-rd start of X :) The second start is 'half-success': I see partially drawn 'X'-cursor on the black background (and it continues to be drawn, but sloooooowly) and I can move it with the mouse. Then, I can kill the server with Ctrl-Alt-Backspace. The third start is black screen with no return too :( I have tried xf86-video-intel-2.6.1 with almost the same results (difference is in logs only). Other info about the system: ~> uname -a FreeBSD wep4035 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sat Feb 14 01:29:05 CET 2009 root@wep4035:/usr/obj/usr/src/sys/NOUSB amd64 vgapci0@pci0:0:2:0: class=0x030000 card=0x82761043 chip=0x29c28086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '(Bearlake) Integrated Graphics Controller' class = display subclass = VGA xorg-server-1.5.3_5,1 xf86-video-intel-2.5.1 I'm not using hald as I'm on USB2 :) Please CC me, I'm not on this list. And some logs at the end, Alexey. -------------- next part -------------- (--) PCI:*(0@0:2:0) Intel Corporation 82G33/G31 Express Integrated Graphics Controller rev 2, Mem @ 0xfe980000/524288, 0xd0000000/268435456, 0xfe800000/1048576, I/O @ 0x0000bc00/8, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel? GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) intel(0): Comparing regs from server start up to After PreInit (WW) intel(0): Register 0x61114 (PORT_HOTPLUG_STAT) changed from 0x00000000 to 0x00000b00 (WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x80000203 to 0x00000000 (WW) intel(0): PIPEASTAT before: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS (WW) intel(0): PIPEASTAT after: status: (WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x00000000 (WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS (WW) intel(0): PIPEBSTAT after: status: (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [8] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 1006592 total, 0 used (II) intel(0): I830CheckAvailableMemory: 4026368 kB available (EE) intel(0): [dri] I830CheckDRIAvailable failed: dri not loaded (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (==) intel(0): VideoRam: 262144 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000 (==) intel(0): Write-combining range (0xa0000,0x10000) was already clear (II) EXA(0): Offscreen pixmap area of 41287680 bytes (II) EXA(0): Driver registered support for the following operations: (II) Solid (II) Copy (II) Composite (RENDER acceleration) (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x01000000 (pgoffset 4096) (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x02000000 (pgoffset 8192) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) (II) intel(0): 0x0002a000-0x00031fff: logical 3D context (32 kB) (II) intel(0): 0x00032000-0x00131fff: fake bufmgr (1024 kB) (II) intel(0): 0x00132000-0x00132fff: overlay registers (4 kB) (II) intel(0): 0x006ff000: end of stolen memory (II) intel(0): 0x01000000-0x01ffffff: front buffer (13440 kB) X tiled (II) intel(0): 0x02000000-0x0475ffff: exa offscreen (40320 kB) (II) intel(0): 0x10000000: end of aperture (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. (II) intel(0): Pipe B is off (II) intel(0): Display plane B is now disabled and connected to pipe B. (II) intel(0): Output VGA is connected to pipe A (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message. (II) intel(0): DPMS enabled (II) intel(0): Set up textured video (II) intel(0): Set up overlay video (II) intel(0): direct rendering: Failed (--) RandR disabled -------------- next part -------------- --- Xorg.0.log.4 2009-02-13 22:54:55.000000000 +0100 +++ Xorg.0.log.4.1 2009-02-13 22:54:50.000000000 +0100 @@ -11,7 +11,7 @@ Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. -(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 13 22:51:38 2009 +(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 13 22:53:24 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) @@ -261,13 +261,6 @@ (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit -(WW) intel(0): Register 0x61114 (PORT_HOTPLUG_STAT) changed from 0x00000000 to 0x00000b00 -(WW) intel(0): Register 0x70024 (PIPEASTAT) changed from 0x80000203 to 0x00000000 -(WW) intel(0): PIPEASTAT before: status: FIFO_UNDERRUN VSYNC_INT_STATUS VBLANK_INT_STATUS OREG_UPDATE_STATUS -(WW) intel(0): PIPEASTAT after: status: -(WW) intel(0): Register 0x71024 (PIPEBSTAT) changed from 0x00000202 to 0x00000000 -(WW) intel(0): PIPEBSTAT before: status: VSYNC_INT_STATUS VBLANK_INT_STATUS -(WW) intel(0): PIPEBSTAT after: status: (==) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: @@ -301,8 +294,8 @@ (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor -(II) intel(0): xf86BindGARTMemory: bind key 1 at 0x01000000 (pgoffset 4096) -(II) intel(0): xf86BindGARTMemory: bind key 2 at 0x02000000 (pgoffset 8192) +(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01000000 (pgoffset 4096) +(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x02000000 (pgoffset 8192) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) @@ -313,6 +306,8 @@ (II) intel(0): 0x01000000-0x01ffffff: front buffer (13440 kB) X tiled (II) intel(0): 0x02000000-0x0475ffff: exa offscreen (40320 kB) (II) intel(0): 0x10000000: end of aperture +(WW) intel(0): ESR is 0x00000001, instruction error +(WW) intel(0): Existing errors found in hardware state. (II) intel(0): Output configuration: (II) intel(0): Pipe A is on (II) intel(0): Display plane A is now enabled and connected to pipe A. @@ -373,5 +368,5 @@ (II) Mouse0: SetupAuto: protocol is SysMouse (II) UnloadModule: "mouse" (II) UnloadModule: "kbd" -(II) intel(0): xf86UnbindGARTMemory: unbind key 1 -(II) intel(0): xf86UnbindGARTMemory: unbind key 2 +(II) intel(0): xf86UnbindGARTMemory: unbind key 3 +(II) intel(0): xf86UnbindGARTMemory: unbind key 4 -------------- next part -------------- --- Xorg.0.log.4.1 2009-02-13 22:54:50.000000000 +0100 +++ Xorg.0.log.4.2 2009-02-13 22:59:04.000000000 +0100 @@ -11,7 +11,7 @@ Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. -(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 13 22:53:24 2009 +(==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 13 22:55:32 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) @@ -294,8 +294,8 @@ (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor -(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01000000 (pgoffset 4096) -(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x02000000 (pgoffset 8192) +(II) intel(0): xf86BindGARTMemory: bind key 5 at 0x01000000 (pgoffset 4096) +(II) intel(0): xf86BindGARTMemory: bind key 6 at 0x02000000 (pgoffset 8192) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) @@ -366,7 +366,88 @@ (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) (II) Mouse0: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse0: SetupAuto: protocol is SysMouse +Error in I830WaitLpRing(), timeout for 2 seconds +pgetbl_ctl: 0x00000001 getbl_err: 0x00000000 +ipeir: 0x00000000 iphdr: 0x18800747 +LP ring tail: 0x000000f0 head: 0x000000e4 len: 0x0001f001 start 0x00000000 +eir: 0x0000 esr: 0x0001 emr: 0xffff +instdone: 0xffc1 instpm: 0x0000 +memmode: 0x00000306 instps: 0x80007802 +hwstam: 0xffff ier: 0x0000 imr: 0xffff iir: 0x0000 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 acthd 0x18800748 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring at virtual 0x802e00000 head 0xe4 tail 0xf0 count 3 +Ring end +space: 131052 wanted 131064 + +Fatal server error: +lockup + (II) UnloadModule: "mouse" (II) UnloadModule: "kbd" -(II) intel(0): xf86UnbindGARTMemory: unbind key 3 -(II) intel(0): xf86UnbindGARTMemory: unbind key 4 + +FatalError re-entered, aborting +Caught signal 11. Server aborting + -------------- next part -------------- --- Xorg.0.log.intel26.1 2009-02-15 21:57:55.000000000 +0100 +++ Xorg.0.log.intel26.2 2009-02-15 22:01:54.000000000 +0100 @@ -11,7 +11,7 @@ Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. -(==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 15 21:56:04 2009 +(==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 15 21:58:16 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) @@ -293,8 +293,8 @@ (==) intel(0): Backing store disabled (==) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor -(II) intel(0): xf86BindGARTMemory: bind key 3 at 0x01000000 (pgoffset 4096) -(II) intel(0): xf86BindGARTMemory: bind key 4 at 0x02000000 (pgoffset 8192) +(II) intel(0): xf86BindGARTMemory: bind key 5 at 0x01000000 (pgoffset 4096) +(II) intel(0): xf86BindGARTMemory: bind key 6 at 0x02000000 (pgoffset 8192) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00029fff: HW cursors (40 kB) @@ -366,8 +366,1145 @@ (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD) (II) Mouse0: SetupAuto: hw.iftype is 4, hw.model is 0 (II) Mouse0: SetupAuto: protocol is SysMouse -(II) 3rd Button detected: disabling emulate3Button +Error in I830WaitLpRing(), timeout for 2 seconds +pgetbl_ctl: 0x00000001 getbl_err: 0x00000000 +ipeir: 0x00000000 iphdr: 0x18800761 +LP ring tail: 0x000001d0 head: 0x000001cc len: 0x0001f001 start 0x00000000 +eir: 0x0000 esr: 0x0001 emr: 0xffff +instdone: 0xffc1 instpm: 0x0000 +memmode: 0x00000306 instps: 0x80007802 +hwstam: 0xffff ier: 0x0000 imr: 0xffff iir: 0x0000 +Ring at virtual 0x802e00000 head 0x1cc tail 0x1d0 count 1 acthd 0x720 +Ring at virtual 0x802e00000 head 0x1cc tail 0x1d0 count 1 + 000000cc: 00000000 MI_NOOP 1 + 000000d0: 18800080 MI_BATCH_BUFFER_START 2 + 000000d4: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 000000d8: 00000000 MI_NOOP 1 + 000000dc: 00000000 MI_NOOP 1 + 000000e0: 18800080 MI_BATCH_BUFFER_START 2 + 000000e4: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 000000e8: 00000000 MI_NOOP 1 + 000000ec: 00000000 MI_NOOP 1 + 000000f0: 18800080 MI_BATCH_BUFFER_START 2 + 000000f4: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 000000f8: 00000000 MI_NOOP 1 + 000000fc: 00000000 MI_NOOP 1 + 00000100: 18800080 MI_BATCH_BUFFER_START 2 + 00000104: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 00000108: 00000000 MI_NOOP 1 + 0000010c: 00000000 MI_NOOP 1 + 00000110: 18800080 MI_BATCH_BUFFER_START 2 + 00000114: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 00000118: 00000000 MI_NOOP 1 + 0000011c: 00000000 MI_NOOP 1 + 00000120: 18800080 MI_BATCH_BUFFER_START 2 + 00000124: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 00000128: 00000000 MI_NOOP 1 + 0000012c: 00000000 MI_NOOP 1 + 00000130: 18800080 MI_BATCH_BUFFER_START 2 + 00000134: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 00000138: 00000000 MI_NOOP 1 + 0000013c: 00000000 MI_NOOP 1 + 00000140: 18800080 MI_BATCH_BUFFER_START 2 + 00000144: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 00000148: 00000000 MI_NOOP 1 + 0000014c: 00000000 MI_NOOP 1 + 00000150: 18800080 MI_BATCH_BUFFER_START 2 + 00000154: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 00000158: 00000000 MI_NOOP 1 + 0000015c: 00000000 MI_NOOP 1 + 00000160: 18800080 MI_BATCH_BUFFER_START 2 + 00000164: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 00000168: 00000000 MI_NOOP 1 + 0000016c: 00000000 MI_NOOP 1 + 00000170: 18800080 MI_BATCH_BUFFER_START 2 + 00000174: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 00000178: 00000000 MI_NOOP 1 + 0000017c: 00000000 MI_NOOP 1 + 00000180: 18800080 MI_BATCH_BUFFER_START 2 + 00000184: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 00000188: 00000000 MI_NOOP 1 + 0000018c: 00000000 MI_NOOP 1 + 00000190: 18800080 MI_BATCH_BUFFER_START 2 + 00000194: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 00000198: 00000000 MI_NOOP 1 + 0000019c: 00000000 MI_NOOP 1 + 000001a0: 18800080 MI_BATCH_BUFFER_START 2 + 000001a4: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 000001a8: 00000000 MI_NOOP 1 + 000001ac: 00000000 MI_NOOP 1 + 000001b0: 18800080 MI_BATCH_BUFFER_START 2 + 000001b4: 00036000 +Batch buffer at 0x00036000 { + 00036000: 54f00006 XY_SRC_COPY_BLT 8 + 00036004: 03cc2000 + 00036008: 007c0410 + 0003600c: 00800414 + 00036010: 01000000 + 00036014: 00000000 + 00036018: 00000040 + 0003601c: 02000000 + 00036020: 54f00006 XY_SRC_COPY_BLT 8 + 00036024: 03cc2000 + 00036028: 007c0414 + 0003602c: 00800418 + 00036030: 01000000 + 00036034: 00000000 + 00036038: 00000040 + 0003603c: 02000000 + 00036040: 54f00006 XY_SRC_COPY_BLT 8 + 00036044: 03cc2000 + 00036048: 007c0418 + 0003604c: 0080041c + 00036050: 01000000 + 00036054: 00000000 + 00036058: 00000040 + 0003605c: 02000000 + 00036060: 54f00006 XY_SRC_COPY_BLT 8 + 00036064: 03cc2000 + 00036068: 007c041c + 0003606c: 00800420 + 00036070: 01000000 + 00036074: 00000000 + 00036078: 00000040 + 0003607c: 02000000 + 00036080: 54f00006 XY_SRC_COPY_BLT 8 + 00036084: 03cc2000 + 00036088: 007c0420 + 0003608c: 00800424 + 00036090: 01000000 + 00036094: 00000000 + 00036098: 00000040 + 0003609c: 02000000 + 000360a0: 54f00006 XY_SRC_COPY_BLT 8 + 000360a4: 03cc2000 + 000360a8: 007c0424 + 000360ac: 00800428 + 000360b0: 01000000 + 000360b4: 00000000 + 000360b8: 00000040 + 000360bc: 02000000 + 000360c0: 54f00006 XY_SRC_COPY_BLT 8 + 000360c4: 03cc2000 + 000360c8: 007c0428 + 000360cc: 0080042c + 000360d0: 01000000 + 000360d4: 00000000 + 000360d8: 00000040 + 000360dc: 02000000 + 000360e0: 54f00006 XY_SRC_COPY_BLT 8 + 000360e4: 03cc2000 + 000360e8: 007c042c + 000360ec: 00800430 + 000360f0: 01000000 + 000360f4: 00000000 + 000360f8: 00000040 + 000360fc: 02000000 +} + 000001b8: 00000000 MI_NOOP 1 + 000001bc: 00000000 MI_NOOP 1 + 000001c0: 18800080 MI_BATCH_BUFFER_START 2 + 000001c4: 00032000 +Batch buffer at 0x00032000 { + 00032000: 54f00006 XY_SRC_COPY_BLT 8 + 00032004: 03cc2000 + 00032008: 0080057c + 0003200c: 00840580 + 00032010: 01000000 + 00032014: 00000000 + 00032018: 00000040 + 0003201c: 02000000 + 00032020: 54f00006 XY_SRC_COPY_BLT 8 + 00032024: 03cc2000 + 00032028: 00800580 + 0003202c: 00840584 + 00032030: 01000000 + 00032034: 00000000 + 00032038: 00000040 + 0003203c: 02000000 + 00032040: 54f00006 XY_SRC_COPY_BLT 8 + 00032044: 03cc2000 + 00032048: 00800584 + 0003204c: 00840588 + 00032050: 01000000 + 00032054: 00000000 + 00032058: 00000040 + 0003205c: 02000000 + 00032060: 54f00006 XY_SRC_COPY_BLT 8 + 00032064: 03cc2000 + 00032068: 00800588 + 0003206c: 0084058c + 00032070: 01000000 + 00032074: 00000000 + 00032078: 00000040 + 0003207c: 02000000 + 00032080: 54f00006 XY_SRC_COPY_BLT 8 + 00032084: 03cc2000 + 00032088: 0080058c + 0003208c: 00840590 + 00032090: 01000000 + 00032094: 00000000 + 00032098: 00000040 + 0003209c: 02000000 + 000320a0: 54f00006 XY_SRC_COPY_BLT 8 + 000320a4: 03cc2000 + 000320a8: 00800590 + 000320ac: 00840594 + 000320b0: 01000000 + 000320b4: 00000000 + 000320b8: 00000040 + 000320bc: 02000000 + 000320c0: 54f00006 XY_SRC_COPY_BLT 8 + 000320c4: 03cc2000 + 000320c8: 00800594 + 000320cc: 00840598 + 000320d0: 01000000 + 000320d4: 00000000 + 000320d8: 00000040 + 000320dc: 02000000 + 000320e0: 54f00006 XY_SRC_COPY_BLT 8 + 000320e4: 03cc2000 + 000320e8: 00800598 + 000320ec: 0084059c + 000320f0: 01000000 + 000320f4: 00000000 + 000320f8: 00000040 + 000320fc: 02000000 +} + 000001c8: 00000000 MI_NOOP 1 +Ring end +space: 131060 wanted 131064 + +Fatal server error: +lockup + (II) UnloadModule: "mouse" (II) UnloadModule: "kbd" -(II) intel(0): xf86UnbindGARTMemory: unbind key 3 -(II) intel(0): xf86UnbindGARTMemory: unbind key 4 + +FatalError re-entered, aborting +Caught signal 11. Server aborting + From saper at SYSTEM.PL Sun Feb 15 14:06:24 2009 From: saper at SYSTEM.PL (Marcin Cieslak) Date: Sun Feb 15 14:06:31 2009 Subject: XKB changes - grp:ctrls_toggle References: <1234206088.44207.7.camel@localhost> Message-ID: Dnia 09.02.2009 Coleman Kane napisa?/a: > You may come across a "kbd-pass-the-absinthe.diff" patch which is > supposed to fix this mess (from Daniel Stone). When I tried using that > one, all of my key mappings were messed up, and key-repeat stopped > working properly (and also didn't "not work" properly either). The patch > posted to the fd.o bug above works much better for me on > FreeBSD-current. Thanks for sharing this information, it is useful. I didn't have any disastrous effects like this, but can you chec if "grp:ctrls_toggle" works for you? Since the upgrade, I can't get it to work (shifts_toggle, or single ctrl keys work fine). Example setup: Section "InputDevice" Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc101" Option "XkbLayout" "en,de" Option "XkbOptions" "grp:ctrls_toggle" EndSection Two CTRL keys pressed should swap y with z, among others. -- << Marcin Cieslak // saper@system.pl >> From edwin at FreeBSD.org Sun Feb 15 15:20:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun Feb 15 15:20:18 2009 Subject: ports/131726: x11-servers/xorg-server: xorg server messes with my ehci USB controller. Message-ID: <200902152320.n1FNKBsC016609@freefall.freebsd.org> Synopsis: x11-servers/xorg-server: xorg server messes with my ehci USB controller. Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 15 23:20:10 UTC 2009 Responsible-Chang