Working with JRadioButton in JBuilder

Hi everyone. I am using JBuilder 2005 on windows XP Professional. I shall be very thankfull to you, if you can let me know how to work with radiobutton while using JBuilder. I have created two radio buttons. Add them in a buttongroup and when I run my program they behaves exactly like radio buttons. Next, how to add code to them? I do hope that you have got my point.
Bye....

I do hope that you have got my point. Yes, the point is you are using a gui builder at the expense of learning swing.
the gui buider will only do so much, then you're on your own.
dump the gui builder and start reading the swing tutorial, otherwise you will
always have this problem

Similar Messages

  • Working with JRadioButton in JBuilder2005

    Hi everyone. I am using JBuilder 2005 on windows XP Professional. I shall be very thankfull to you, if you let me know how to work with radiobutton while using JBuilder. I have created two radio buttons. Add them in a buttongroup and when I run my program they behaves exactly like radio buttons. Now how to add code to them? I do hope that you have got my point.
    Bye....

    My advice: scrap the GUI builder, go to the Swing tutorial on this site and write the code yourself. Or at least go to a JBuilder support forum.

  • (CRM-) ISA-developers: How do you work with NWDS?

    Hello,
    starting ISA-webapplication-development nearly 4 years ago under CRM 3.0, I used JBuilder 5 as IDE (this was the recommendation of SAP), Perforce for version-controlling and Tomcat as local webapplication-server. It took some effort to build up projects in JBuilder, but after that everything was possible I expect from a modern IDE: coding of java and JSPs with method-suggestion, syntax-check of java and JSPs, building up war- and ear-files, ...
    In the last months my enterprise migrated to CRM 4.0, and now the new development tools are Netweaver Developer Studio and SAP J2EEngine 6.40. And this is the point where the problems begin: In the "ISA Development and Extension Guide" there is only documented how to build up a java-project for compiling your own classes. But compiling java classes is only one of the required development tasks I need. What about JSP development? Why use an external tool as ISA build tool to build the ear-file, then call the external SDM-tool for deploying the new web-application, if this is (theoretically) possible in NWDS?
    Yes, I know that it is possible to setup J2EE-projects in NWDS.
    Yes, I know that there are plugins as wst for doing jobs as JSP-syntax-checking as mentioned above.
    But up to now I was not succesful to configure the NWDS with any plugins (one of the problems: I did only find Eclipse 1.3 plugins which seems to be incompatible with NWDS basing on old ecplise 1.2) or setup NWDS-projects to get the old quality of JBuilder-development.
    So is there anybody out there who extended the NWDS with any plugins and built up succesfully the necessary NWDS-projects for doing all this tasks that effective ISA-webapplication-development is possible?
    With best regards,
    Holger Dittrich

    To all,
    First off let me start by saying the the SAP NetWeaver Develper Studio is designed to work more with portals than with CRM and r/3 web apps.  With that said you can confidently do extreme modifications with the NWDS.  IN my environment I use J2EE 6.20 and J2EE6.40 with NWDS CRM and R/3 ISA B2B B2C with the Build Tool and SDM all working without any glitches.  I know, web work with SAP and no glitches but it can be done.
    Use the NWDS for modifcation the Java, STRUT, JSP, HTML, and any other individual files within the web-app root.
    Use the SAP Build Tool to rename and build the ear's that will be migrated through out your infrastructures landscape.
    Use Software Delivery Manager (SDM) for the loose deployment of ear's and sca's.  The SDM configures the library.txt and reference.txt files within the J2EE with the system libraries your version of EAR's and SCA's require.
    J2EE to run the application in testing and live environment.
    Let me answer one very important question.  Why should I use a seperate build and delivery tool when that functoanlity is in NWDS?  Remember the NWDS is designed to integrate tightly into the portals realm.  Portals is a very strict environment while ISA is loose and allows for greatest amount of customizations.  The Deploy and Build functonality within the NWDS are designed to work with portal apps or views not with full blown stand alone web-apps.
    If anyone is interested in how to get all of the pieces to talk to each other J2EE, NWDS, Build Tool, SDM let me know through this thread.  I used to teach this class for SAP America and can provide you with a docuemnt on creating an ISA project with NWDS and exporting to the Build Tool and redeploying through the SDM.

  • Sending "Cookie" header  with JRE 1.5.0_07 doesn't work with JWS

    Hi
    I have a JWS application that runs from JRE 1.4.0_XX to JRE 1.5.0_06
    The app sends a "Cookie" header to our webserver
    HttpURLConnection tc = (HttpURLConnection)repository.openConnection();
    tc.setRequestProperty("Cookie", "GLINK=TOKENID");
    Now this has worked thru 20 different runtime versions since 1.4.0_xx until JRE 1.5.0_07 was released. My code has remained unchanged for 3 years. And with JRE 1.5.0_07 the "Cookie" header is simply gone in the webserver or never sent at all. The changelog for 1.5.0_07 only has a rough description of what has changed. I can see that SUN has made som changes to class HttpUrlConnection in 1.5.0_07 by comparing class files against 1.5.0_06 and apparently disturbed som funtionality that worked before. Other headers are received but not the "Cookie" header. If the application is executed without JWS, for example with Eclipse or Jbuilder, the "Cookie" header is received by the web server and all other headers as well.
    Any ideas what SUN has done in 1.5.0_07 and JWS ?? and more specifically in class URLConnection or HttpURLConnection.
    Here is some code example to test the issue:
    Run this code with and without Java Web Start
    With JWS, the "Cookie" header is never received by the server.
    without JWS, the header value is reveived.
    import java.net.*;
    import java.io.*;
    public class HTTPTest
    public static byte[] crLfArr = {13,10};
    public static String contenttype_ = "text/plain";
    public static BufferedReader retval = null;
    public static void main(String[] args) throws IOException
    int tecken = (int)'X';
    String boundary = "12345xyzzy";
    URL repository = new URL("http://myserver");
    URLConnection tc = (URLConnection)repository.openConnection();
    tc.setDoOutput(true);
    tc.setDoInput(true);
    tc.setAllowUserInteraction(false);
    tc.setRequestProperty("Content-Type"," multipart/form-data; boundary=" + boundary);
    tc.setRequestProperty("Cookie", "GLINK=TOKENID");
    OutputStream out = tc.getOutputStream();
    printPartHeader(out, boundary, "filtag" , "filnamn");
    out.write(tecken);
    printEndBoundary(out,boundary);
    out.close();
    retval = new BufferedReader(new InputStreamReader(tc.getInputStream()));
    public static void printEndBoundary(OutputStream out, String boundary) throws IOException
    String str;
    str = "--" + boundary + "--";
    out.write(str.getBytes());
    out.write(crLfArr);
    out.write(crLfArr);
    public static void printPartHeader(OutputStream out,
    String boundary,
    String field,
    String filename) throws IOException
    String str;
    printBoundary(out,boundary);
    str = "Content-Disposition: form-data; name=\"" + field + "\"";
    out.write(str.getBytes());
    if (filename.length() > 0) {
    str = "; filename=\"" + filename + "\"";
    out.write(str.getBytes());
    out.write(crLfArr);
    str = "Content-Type: " + contenttype_;
    out.write(str.getBytes());
    out.write(crLfArr);
    out.write(crLfArr);
    public static void printBoundary(OutputStream out, String boundary) throws IOException
    String str;
    str = "--" + boundary;
    out.write(str.getBytes());
    out.write(crLfArr);
    Regards
    Jojje

    Hi,
    I decompiled the HttpURLConnection implementation in question from the rt.jar file. I do not think that you can find the source code for these SUN-specific implementations anywhere (except maybe through the new Java 6.0 collaboration process).
    JAD did the trick.
    For the standard classes (packages java.*, javax.*), I think that the most current source code is included in the corresponding JDK download.
    As to the JWS vs. standalone effect, I do not know what happens there.
    Maybe Java uses a different HttpURLConnection implementation when running as a standalone application?
    For our applet, the problem is definitely there. The cookie header was set but already removed when the CookieHandler method was called.
    The trouble is, that our applet can operate multiple independent sessions (with different session-ids), so a global CookieHandler is not an option. The only reason why I previously had to implement my own CookieHandler implementation in 1.5 was in order to remove unwanted Cookies which were otherwise inherited from the browser session by the CookieHandler�s applet default implementation.
    I also entered a bug report (on Wednesday already)...
    regards,
    Gunnar

  • Getting Java Beans working with Developer Forms 6i

    Hello everyone,
    I have been trying to get Java Beans to work with the Developer Forms 6i. I keep getting diffrent errors depending on the bean I play with. I will detail the problems and the computer setup. I am sure this problem is a configuration one, I just dont seem to have enough experiance to determine the issue or the configuration problem.
    Here are the problems I am encountering:
    Problems 1:
    --JDeveloper 10g
    I cant see the VBean class. When I add this code, the VBean decleration comes up with an error.
    import oracle.forms.ui.VBean;
    public class MyNewClass extends VBean
    public Class1()
    This code shows the IMPORT statement with a wavy blue line under it and the word VBean after the extends also has on. I understand that this means that the JDeveloper cant find the class, I just cant seem to find the correct environment variable to set to point to this.
    Second Problem:
    --Forms 6i
    I open forms, and create a new form. I then add a datablock and a canvas. I open the canvas and drop the BeanArea component on the canvas. I enter the fully pathed/qualified Bean in the Implementation Class and get one of three errors. Either a FRM-13008, a FRM-99999 with a 13009 or a 13010 error. I suspect that the 13008 error is because the bean I created does not have the correct decleration types or IView interface calls. My problem is that when I load any of the Oracle provided beans I get the 13009 or 13010 errors. I have looked here and in Metalinks for some kind of solution that I haven't already tryed, but to no avail.
    Any advice on either of these problems would be appreciated. Please keep in mind that we cant upgrade to version 9 or 10 yet (silly aif force and their regulations), so those type of solutions arn't usable to me.
    Here is the configuration information that I know about. If there is more information that can be provided or I need to provide more information, please let me know and I will get what I can.
    Thanks,
    Bill Hunsicker
    ============= Config Information =======================
    Forms Version 6.0.8.25.2
    JBuilder Version and Information
    Oracle IDE     9.0.5.13.88
    Business Components Version     9.0.5.13.52
    UML Modelers Version     9.0.5.12.38
    Versioning Support     9.0.5.12.38
    WebDAV Support Version     9.0.5.12.38
    Designer Generators Framework     9.0.5.3.39
    java.version     1.4.1_02
    java.home     C:\Oracle\JDeveloper\jdk\jre
    java.vm.name     OJVM Client VM
    java.vm.vendor     Oracle Corp.
    java.vm.version     9.0.5.972 4dopv
    user.language     en
    user.region     <no value assigned>
    user.name     Bill.Hunsicker
    user.home     C:\Documents and Settings\Bill.Hunsicker
    user.dir     C:\Oracle\JDeveloper\jdev\bin
    os.name     Windows XP
    os.version     5.1
    os.arch     x86
    ide.patches     
    ide.user.dir     
    FORMS60_JAVADIR = C:\orant\FORMS60\java
    CLASSPATH = C:\orant\FORMS60\java;C:\orant\TOOLS\COMMON60\JAVA\IMPORTER.JAR;C:\orant\forms60\java\P3load.jar;C:\orant\forms60\java\f60all.jar

    Ok, I added the f60all.jar to the project. This allowed me to create the file using the VBean. I created the JAR file and copied it to the forms60/java directory. I also copied the new .class files to the forms60/java/mil/af/rs/leads direcory.
    I then edited my formsweb.cfg file and had to add the jinit_archive tag. I set it = f60all.jar, P3load.jar. I also added my P3load.jar file to the default archive tag.
    When I open up Forms, drop the bean area component on the canvas, and set the Implementation Class, I still get an error (13008), and when I run the form in web, and click the button to invoke the bean I get no response from the bean.
    here is the code to invoke the bean. in_filename is a text component on the canvas and contained in the CTRL block. The bean area is named BEAN (because the demo was that way).
    :in_filename := get_custom_property('BEAN',1,'getFileName');
    synchronize;
    Not sure where to go from here, but thanks for the help so far.

  • J2SE 1.5 won't work with JBuilderX

    Hi. I have installed the J2SE 1.5 on Windows XP, I have added the SDK to JBuilderX and I have downloaded the 1.5 compiler from Borland. But still, it does not work. I cannot compile without having errors. And the imports in my code are marked as unused, which is not the case.
    Anyone have a idea?

    Anyone have a idea?Yes - JBuilderX will NOT work with JDK 1.5, without further tweaks.
    Check out the "OpenTools" from the Borland Community Network at http://codecentral.borland.com/codecentral/ccweb.exe/home (or more specifically, http://codecentral.borland.com/codecentral/ccweb.exe/prodcat?prodid=3&catid=11 - the JBuilder OpenTools).
    Look for "JDK 1.5 Language Extension Compiler Support". This will at least allow you to set the project to compile with "JDK 1.5" (after you add the 1.5 JDK as you did).
    However, if you use 1.5 syntax extensions (generics, or enum, or even some cases of auto-boxing), you'll see lots of "syntax errors", because the editor's parser is embedded within JBuilder and is unaware of JDK 1.5 extensions. And if you have these "syntax errors", most of the syntax-sensitive editing features (e.g. class and parameter insight, etc.) won't work.
    Please also sign up at news://newsgroups.borland.com for the borland.,public.jbuilder.* newsgroups, where the Borland users and experts hang out, and you'll get much better support there. But PLEASE read the archives first before posting questions about JDK 1.5 (this question has been asked and answered about two dozen times there already, and people are getting sick of it).

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

  • Gnome3 not work with ATI HD6950 Card?

    Hey all..
    I'm just installed the ALL drivers from the testing, and its the versions:
    xf86-video-ati-6.14.2-1
    mesa-7.10.99.git20110612-1
    libdrm-2.4.25-1
    And ofc, i'm using with last kernel 2.26.39.
    So what's the problem with that? Why i can't running this Gnome3?
    This is the my logs:
    .xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: Setup done, will execute: gnome-session
    Unknown chipset 0x6719
    gnome-session-is-accelerated: No hardware 3D support.
    gnome-session-check-accelerated: Helper exited with code 256
    gnome-session[1181]: WARNING: Session 'gnome' runnable check failed: Exited with code 1
    gnome-session[1181]: WARNING: Unable to find default provider 'notification-daemon' of required provider 'notifications'
    Xorg.0.log:
    [ 151.157]
    X.Org X Server 1.10.2
    Release Date: 2011-05-28
    [ 151.157] X Protocol Version 11, Revision 0
    [ 151.157] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 151.157] Current Operating System: Linux yakir-arch 2.6.39-ARCH #1 SMP PREEMPT Mon Jun 6 22:37:55 CEST 2011 x86_64
    [ 151.157] Kernel command line: BOOT_IMAGE=/vmlinuz26 root=/dev/sdb5 ro
    [ 151.157] Build Date: 30 May 2011 08:18:15AM
    [ 151.157]
    [ 151.157] Current version of pixman: 0.22.0
    [ 151.157] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 151.157] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 151.157] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 16 11:52:13 2011
    [ 151.157] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 151.157] (==) No Layout section. Using the first Screen section.
    [ 151.157] (==) No screen section available. Using defaults.
    [ 151.157] (**) |-->Screen "Default Screen Section" (0)
    [ 151.157] (**) | |-->Monitor "<default monitor>"
    [ 151.157] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 151.157] (**) | |-->Device "r"
    [ 151.157] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 151.157] (==) Automatically adding devices
    [ 151.157] (==) Automatically enabling devices
    [ 151.157] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 151.157] Entry deleted from font path.
    [ 151.157] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 151.157] Entry deleted from font path.
    [ 151.157] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 151.157] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 151.157] Entry deleted from font path.
    [ 151.157] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 151.157] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 151.157] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 151.157] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 151.157] (II) Loader magic: 0x7d3440
    [ 151.157] (II) Module ABI versions:
    [ 151.157] X.Org ANSI C Emulation: 0.4
    [ 151.157] X.Org Video Driver: 10.0
    [ 151.157] X.Org XInput driver : 12.2
    [ 151.157] X.Org Server Extension : 5.0
    [ 151.158] (--) PCI:*(0:1:0:0) 1002:6719:1002:0b00 rev 0, Mem @ 0xc0000000/268435456, 0xfe620000/131072, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 151.158] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 151.158] (II) "extmod" will be loaded by default.
    [ 151.158] (II) "dbe" will be loaded by default.
    [ 151.158] (II) "glx" will be loaded by default.
    [ 151.158] (II) "record" will be loaded by default.
    [ 151.158] (II) "dri" will be loaded by default.
    [ 151.158] (II) "dri2" will be loaded by default.
    [ 151.158] (II) LoadModule: "extmod"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 151.158] (II) Module extmod: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension MIT-SCREEN-SAVER
    [ 151.158] (II) Loading extension XFree86-VidModeExtension
    [ 151.158] (II) Loading extension XFree86-DGA
    [ 151.158] (II) Loading extension DPMS
    [ 151.158] (II) Loading extension XVideo
    [ 151.158] (II) Loading extension XVideo-MotionCompensation
    [ 151.158] (II) Loading extension X-Resource
    [ 151.158] (II) LoadModule: "dbe"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 151.158] (II) Module dbe: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension DOUBLE-BUFFER
    [ 151.158] (II) LoadModule: "glx"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 151.158] (II) Module glx: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (==) AIGLX enabled
    [ 151.158] (II) Loading extension GLX
    [ 151.158] (II) LoadModule: "record"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 151.158] (II) Module record: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.13.0
    [ 151.158] Module class: X.Org Server Extension
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension RECORD
    [ 151.158] (II) LoadModule: "dri"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 151.158] (II) Module dri: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.0.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension XFree86-DRI
    [ 151.158] (II) LoadModule: "dri2"
    [ 151.158] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 151.158] (II) Module dri2: vendor="X.Org Foundation"
    [ 151.158] compiled for 1.10.2, module version = 1.2.0
    [ 151.158] ABI class: X.Org Server Extension, version 5.0
    [ 151.158] (II) Loading extension DRI2
    [ 151.158] (II) LoadModule: "radeon"
    [ 151.159] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 151.159] (II) Module radeon: vendor="X.Org Foundation"
    [ 151.159] compiled for 1.10.1, module version = 6.14.2
    [ 151.159] Module class: X.Org Video Driver
    [ 151.159] ABI class: X.Org Video Driver, version 10.0
    [ 151.159] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS
    [ 151.162] (++) using VT number 8
    [ 151.165] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 151.165] (II) [KMS] Kernel modesetting enabled.
    [ 151.165] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 151.165] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 151.165] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 151.165] (==) RADEON(0): Default visual is TrueColor
    [ 151.165] (==) RADEON(0): RGB weight 888
    [ 151.165] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 151.165] (--) RADEON(0): Chipset: "AMD Radeon HD 6900 Series" (ChipID = 0x6719)
    [ 151.165] (II) RADEON(0): PCIE card detected
    [ 151.165] drmOpenDevice: node name is /dev/dri/card0
    [ 151.165] drmOpenDevice: open result is 8, (OK)
    [ 151.165] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    [ 151.165] drmOpenDevice: node name is /dev/dri/card0
    [ 151.165] drmOpenDevice: open result is 8, (OK)
    [ 151.165] drmOpenByBusid: drmOpenMinor returns 8
    [ 151.165] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    [ 151.165] (II) Loading sub module "exa"
    [ 151.165] (II) LoadModule: "exa"
    [ 151.165] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 151.165] (II) Module exa: vendor="X.Org Foundation"
    [ 151.165] compiled for 1.10.2, module version = 2.5.0
    [ 151.165] ABI class: X.Org Video Driver, version 10.0
    [ 151.165] (II) RADEON(0): KMS Color Tiling: disabled
    [ 151.165] (II) RADEON(0): KMS Pageflipping: enabled
    [ 151.165] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 151.170] (II) RADEON(0): Output DisplayPort-0 has no monitor section
    [ 151.176] (II) RADEON(0): Output DisplayPort-1 has no monitor section
    [ 151.180] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 151.184] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 151.238] (II) RADEON(0): Output DVI-1 has no monitor section
    [ 151.243] (II) RADEON(0): EDID for output DisplayPort-0
    [ 151.250] (II) RADEON(0): EDID for output DisplayPort-1
    [ 151.254] (II) RADEON(0): EDID for output HDMI-0
    [ 151.257] (II) RADEON(0): EDID for output DVI-0
    [ 151.312] (II) RADEON(0): EDID for output DVI-1
    [ 151.312] (II) RADEON(0): Manufacturer: SAM Model: 736 Serial#: 1129132595
    [ 151.312] (II) RADEON(0): Year: 2010 Week: 51
    [ 151.312] (II) RADEON(0): EDID Version: 1.3
    [ 151.312] (II) RADEON(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 151.312] (II) RADEON(0): Sync: Separate Composite SyncOnGreen
    [ 151.312] (II) RADEON(0): Max Image Size [cm]: horiz.: 51 vert.: 29
    [ 151.312] (II) RADEON(0): Gamma: 2.20
    [ 151.312] (II) RADEON(0): DPMS capabilities: Off; RGB/Color Display
    [ 151.312] (II) RADEON(0): First detailed timing is preferred mode
    [ 151.312] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 151.312] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 151.312] (II) RADEON(0): Supported established timings:
    [ 151.312] (II) RADEON(0): 640x480@60Hz
    [ 151.312] (II) RADEON(0): 800x600@56Hz
    [ 151.312] (II) RADEON(0): 800x600@60Hz
    [ 151.312] (II) RADEON(0): 1024x768@60Hz
    [ 151.312] (II) RADEON(0): Manufacturer's mask: 0
    [ 151.312] (II) RADEON(0): Supported standard timings:
    [ 151.312] (II) RADEON(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 151.312] (II) RADEON(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 151.312] (II) RADEON(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 151.312] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 151.312] (II) RADEON(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 151.312] (II) RADEON(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 151.312] (II) RADEON(0): Supported detailed timing:
    [ 151.312] (II) RADEON(0): clock: 148.5 MHz Image Size: 477 x 268 mm
    [ 151.312] (II) RADEON(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 151.312] (II) RADEON(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 151.312] (II) RADEON(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 75 kHz, PixClock max 175 MHz
    [ 151.312] (II) RADEON(0): Monitor name: SM2333T
    [ 151.312] (II) RADEON(0): Serial No: HVRZC00505
    [ 151.312] (II) RADEON(0): EDID (in hex):
    [ 151.312] (II) RADEON(0): 00ffffffffffff004c2d360733324d43
    [ 151.312] (II) RADEON(0): 331401030e331d782aee91a3544c9926
    [ 151.312] (II) RADEON(0): 0f50542308008100814081809500b300
    [ 151.312] (II) RADEON(0): a94001010101023a801871382d40582c
    [ 151.312] (II) RADEON(0): 4500dd0c1100001e000000fd00383d1e
    [ 151.312] (II) RADEON(0): 4b11000a202020202020000000fc0053
    [ 151.312] (II) RADEON(0): 4d32333333540a2020202020000000ff
    [ 151.312] (II) RADEON(0): 004856525a4330303530350a20200083
    [ 151.312] (II) RADEON(0): Printing probed modes for output DVI-1
    [ 151.312] (II) RADEON(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 151.312] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.312] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.312] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.312] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.312] (II) RADEON(0): Output DisplayPort-0 disconnected
    [ 151.312] (II) RADEON(0): Output DisplayPort-1 disconnected
    [ 151.312] (II) RADEON(0): Output HDMI-0 disconnected
    [ 151.312] (II) RADEON(0): Output DVI-0 disconnected
    [ 151.312] (II) RADEON(0): Output DVI-1 connected
    [ 151.312] (II) RADEON(0): Using exact sizes for initial modes
    [ 151.312] (II) RADEON(0): Output DVI-1 using initial mode 1920x1080
    [ 151.312] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 151.312] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:80000000 visible:f7d7000
    [ 151.312] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 151.312] (==) RADEON(0): DPI set to (96, 96)
    [ 151.312] (II) Loading sub module "fb"
    [ 151.312] (II) LoadModule: "fb"
    [ 151.312] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 151.312] (II) Module fb: vendor="X.Org Foundation"
    [ 151.312] compiled for 1.10.2, module version = 1.0.0
    [ 151.312] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 151.312] (II) Loading sub module "ramdac"
    [ 151.312] (II) LoadModule: "ramdac"
    [ 151.312] (II) Module "ramdac" already built-in
    [ 151.312] (--) Depth 24 pixmap format is 32 bpp
    [ 151.312] (II) RADEON(0): [DRI2] Setup complete
    [ 151.312] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 151.312] (II) RADEON(0): Front buffer size: 8100K
    [ 151.312] (II) RADEON(0): VRAM usage limit set to 221119K
    [ 151.312] (==) RADEON(0): Backing store disabled
    [ 151.312] (II) RADEON(0): Direct rendering enabled
    [ 151.312] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 151.313] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 151.313] (II) EXA(0): Driver registered support for the following operations:
    [ 151.313] (II) Solid
    [ 151.313] (II) Copy
    [ 151.313] (II) Composite (RENDER acceleration)
    [ 151.313] (II) UploadToScreen
    [ 151.313] (II) DownloadFromScreen
    [ 151.313] (II) RADEON(0): Acceleration enabled
    [ 151.313] (==) RADEON(0): DPMS enabled
    [ 151.313] (==) RADEON(0): Silken mouse enabled
    [ 151.313] (II) RADEON(0): Set up textured video
    [ 151.313] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 151.313] (--) RandR disabled
    [ 151.313] (II) Initializing built-in extension Generic Event Extension
    [ 151.313] (II) Initializing built-in extension SHAPE
    [ 151.313] (II) Initializing built-in extension MIT-SHM
    [ 151.313] (II) Initializing built-in extension XInputExtension
    [ 151.313] (II) Initializing built-in extension XTEST
    [ 151.313] (II) Initializing built-in extension BIG-REQUESTS
    [ 151.313] (II) Initializing built-in extension SYNC
    [ 151.313] (II) Initializing built-in extension XKEYBOARD
    [ 151.313] (II) Initializing built-in extension XC-MISC
    [ 151.313] (II) Initializing built-in extension SECURITY
    [ 151.313] (II) Initializing built-in extension XINERAMA
    [ 151.313] (II) Initializing built-in extension XFIXES
    [ 151.313] (II) Initializing built-in extension RENDER
    [ 151.313] (II) Initializing built-in extension RANDR
    [ 151.313] (II) Initializing built-in extension COMPOSITE
    [ 151.313] (II) Initializing built-in extension DAMAGE
    [ 151.317] (EE) AIGLX error: Calling driver entry point failed
    [ 151.317] (EE) AIGLX: reverting to software rendering
    [ 151.317] (II) AIGLX: Screen 0 is not DRI capable
    [ 151.318] (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/swrast_dri.so
    [ 151.318] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 151.318] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 151.343] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 151.343] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 151.343] (II) LoadModule: "evdev"
    [ 151.343] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.343] (II) Module evdev: vendor="X.Org Foundation"
    [ 151.343] compiled for 1.10.0, module version = 2.6.0
    [ 151.344] Module class: X.Org XInput Driver
    [ 151.344] ABI class: X.Org XInput driver, version 12.2
    [ 151.344] (II) Using input driver 'evdev' for 'Power Button'
    [ 151.344] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.344] (**) Power Button: always reports core events
    [ 151.344] (**) Power Button: Device: "/dev/input/event1"
    [ 151.363] (--) Power Button: Found keys
    [ 151.363] (II) Power Button: Configuring as keyboard
    [ 151.363] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 151.363] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 151.363] (**) Option "xkb_rules" "evdev"
    [ 151.363] (**) Option "xkb_model" "evdev"
    [ 151.363] (**) Option "xkb_layout" "us"
    [ 151.378] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 151.378] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 151.378] (II) Using input driver 'evdev' for 'Power Button'
    [ 151.378] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.378] (**) Power Button: always reports core events
    [ 151.378] (**) Power Button: Device: "/dev/input/event0"
    [ 151.403] (--) Power Button: Found keys
    [ 151.403] (II) Power Button: Configuring as keyboard
    [ 151.403] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 151.403] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 151.403] (**) Option "xkb_rules" "evdev"
    [ 151.403] (**) Option "xkb_model" "evdev"
    [ 151.403] (**) Option "xkb_layout" "us"
    [ 151.404] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event4)
    [ 151.404] (II) No input driver/identifier specified (ignoring)
    [ 151.406] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event5)
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 151.406] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 151.406] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 151.406] (**) Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event5"
    [ 151.433] (--) Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 151.433] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 151.433] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/input/input5/event5"
    [ 151.433] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD)
    [ 151.433] (**) Option "xkb_rules" "evdev"
    [ 151.433] (**) Option "xkb_model" "evdev"
    [ 151.433] (**) Option "xkb_layout" "us"
    [ 151.433] (II) config/udev: Adding input device Microsoft Comfort Curve Keyboard 2000 (/dev/input/event6)
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: Applying InputClass "evdev keyboard catchall"
    [ 151.433] (II) Using input driver 'evdev' for 'Microsoft Comfort Curve Keyboard 2000'
    [ 151.433] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: always reports core events
    [ 151.433] (**) Microsoft Comfort Curve Keyboard 2000: Device: "/dev/input/event6"
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found 1 mouse buttons
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found scroll wheel(s)
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found relative axes
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found absolute axes
    [ 151.456] (--) Microsoft Comfort Curve Keyboard 2000: Found keys
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as mouse
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Configuring as keyboard
    [ 151.456] (II) Microsoft Comfort Curve Keyboard 2000: Adding scrollwheel support
    [ 151.456] (**) Microsoft Comfort Curve Keyboard 2000: YAxisMapping: buttons 4 and 5
    [ 151.456] (**) Microsoft Comfort Curve Keyboard 2000: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 151.456] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/input/input6/event6"
    [ 151.456] (II) XINPUT: Adding extended input device "Microsoft Comfort Curve Keyboard 2000" (type: KEYBOARD)
    [ 151.456] (**) Option "xkb_rules" "evdev"
    [ 151.456] (**) Option "xkb_model" "evdev"
    [ 151.456] (**) Option "xkb_layout" "us"
    [ 151.457] (EE) Microsoft Comfort Curve Keyboard 2000: failed to initialize for relative axes.
    [ 151.457] (II) Microsoft Comfort Curve Keyboard 2000: initialized for absolute axes.
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) keeping acceleration scheme 1
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration profile 0
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration factor: 2.000
    [ 151.457] (**) Microsoft Comfort Curve Keyboard 2000: (accel) acceleration threshold: 4
    [ 151.458] (II) config/udev: Adding input device Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel (/dev/input/event7)
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Applying InputClass "evdev pointer catchall"
    [ 151.458] (II) Using input driver 'evdev' for 'Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel'
    [ 151.458] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: always reports core events
    [ 151.458] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Device: "/dev/input/event7"
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found 9 mouse buttons
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found scroll wheel(s)
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found relative axes
    [ 151.483] (--) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Found x and y relative axes
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Configuring as mouse
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: Adding scrollwheel support
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: YAxisMapping: buttons 4 and 5
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 151.483] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input7/event7"
    [ 151.483] (II) XINPUT: Adding extended input device "Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel" (type: MOUSE)
    [ 151.483] (II) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: initialized for relative axes.
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) keeping acceleration scheme 1
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration profile 0
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration factor: 2.000
    [ 151.483] (**) Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel: (accel) acceleration threshold: 4
    [ 151.483] (II) config/udev: Adding input device Microsoft Microsoft Notebook Optical Mouse with Tilt Wheel (/dev/input/mouse0)
    [ 151.483] (II) No input driver/identifier specified (ignoring)
    [ 151.485] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event3)
    [ 151.485] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 151.485] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
    [ 151.485] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 151.485] (**) Eee PC WMI hotkeys: always reports core events
    [ 151.485] (**) Eee PC WMI hotkeys: Device: "/dev/input/event3"
    [ 151.510] (--) Eee PC WMI hotkeys: Found keys
    [ 151.510] (II) Eee PC WMI hotkeys: Configuring as keyboard
    [ 151.510] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input3/event3"
    [ 151.510] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD)
    [ 151.510] (**) Option "xkb_rules" "evdev"
    [ 151.510] (**) Option "xkb_model" "evdev"
    [ 151.510] (**) Option "xkb_layout" "us"
    [ 151.510] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 151.510] (II) No input driver/identifier specified (ignoring)
    [ 151.592] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.592] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 151.592] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 151.592] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.592] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.592] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.592] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.592] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.592] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.732] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.732] (II) RADEON(0): Using hsync ranges from config file
    [ 151.732] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.732] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.732] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.732] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.732] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.732] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.732] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.805] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.805] (II) RADEON(0): Using hsync ranges from config file
    [ 151.805] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.805] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.805] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.805] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.805] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.805] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.805] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.885] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.885] (II) RADEON(0): Using hsync ranges from config file
    [ 151.885] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.885] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.885] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.885] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.885] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.885] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.885] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 151.958] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 151.958] (II) RADEON(0): Using hsync ranges from config file
    [ 151.958] (II) RADEON(0): Using vrefresh ranges from config file
    [ 151.958] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 151.958] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 151.958] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 151.958] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 151.958] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 151.958] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 156.162] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 156.162] (II) RADEON(0): Using hsync ranges from config file
    [ 156.162] (II) RADEON(0): Using vrefresh ranges from config file
    [ 156.162] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 156.162] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 156.162] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 156.162] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 156.162] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 156.162] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.229] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.229] (II) RADEON(0): Using hsync ranges from config file
    [ 157.229] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.229] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.229] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.229] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.229] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.229] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.229] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.308] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.308] (II) RADEON(0): Using hsync ranges from config file
    [ 157.308] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.308] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.308] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.308] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.308] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.308] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.308] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.902] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.902] (II) RADEON(0): Using hsync ranges from config file
    [ 157.902] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.902] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.902] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.902] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.902] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.902] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.902] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 157.978] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 157.978] (II) RADEON(0): Using hsync ranges from config file
    [ 157.978] (II) RADEON(0): Using vrefresh ranges from config file
    [ 157.978] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 157.978] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 157.978] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 157.978] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 157.978] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 157.978] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 158.056] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 158.056] (II) RADEON(0): Using hsync ranges from config file
    [ 158.056] (II) RADEON(0): Using vrefresh ranges from config file
    [ 158.056] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 158.056] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 158.056] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 158.056] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 158.056] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 158.056] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 158.915] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 158.915] (II) RADEON(0): Using hsync ranges from config file
    [ 158.915] (II) RADEON(0): Using vrefresh ranges from config file
    [ 158.915] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 158.915] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 158.915] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 158.915] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 158.915] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 158.915] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 162.988] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 162.988] (II) RADEON(0): Using hsync ranges from config file
    [ 162.988] (II) RADEON(0): Using vrefresh ranges from config file
    [ 162.988] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 162.988] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 162.988] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 162.988] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 162.988] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 162.988] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    [ 166.595] (II) RADEON(0): EDID vendor "SAM", prod id 1846
    [ 166.595] (II) RADEON(0): Using hsync ranges from config file
    [ 166.595] (II) RADEON(0): Using vrefresh ranges from config file
    [ 166.595] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 166.595] (II) RADEON(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
    [ 166.595] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 166.595] (II) RADEON(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 166.595] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1440x900"x0.0 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1680x1050"x0.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 166.595] (II) RADEON(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
    And more commands:
    [root@yakir-arch ~]# glxinfo | grep -i opengl
    Unknown chipset 0x6719
    OpenGL vendor string: VMware, Inc.
    OpenGL renderer string: Gallium 0.4 on softpipe
    OpenGL version string: 2.1 Mesa 7.10.2
    OpenGL shading language version string: 1.20
    OpenGL extensions:
    [root@yakir-arch ~]# glxinfo | grep dire
    Unknown chipset 0x6719
    direct rendering: Yes
    [root@yakir-arch ~]# dmesg | grep drm
    [ 1.336436] [drm] Initialized drm 1.1.0 20060810
    [ 1.358306] [drm] radeon defaulting to kernel modesetting.
    [ 1.358371] [drm] radeon kernel modesetting enabled.
    [ 1.359832] [drm] initializing kernel modesetting (CAYMAN 0x1002:0x6719).
    [ 1.359961] [drm] register mmio base: 0xFE620000
    [ 1.360031] [drm] register mmio size: 131072
    [ 1.360464] [drm] Detected VRAM RAM=2048M, BAR=256M
    [ 1.360526] [drm] RAM width 256bits DDR
    [ 1.360894] [drm] radeon: 2048M of VRAM memory ready
    [ 1.360957] [drm] radeon: 512M of GTT memory ready.
    [ 1.361025] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.361088] [drm] Driver supports precise vblank timestamp query.
    [ 1.361268] [drm] radeon: irq initialized.
    [ 1.361331] [drm] GART: num cpu pages 131072, num gpu pages 131072
    [ 1.361684] [drm] Loading CAYMAN Microcode
    [ 1.385086] [drm] ring test succeeded in 1 usecs
    [ 1.385214] [drm] radeon: ib pool ready.
    [ 1.385372] [drm] ib test succeeded in 0 usecs
    [ 1.385938] [drm] Radeon Display Connectors
    [ 1.386008] [drm] Connector 0:
    [ 1.386076] [drm] DisplayPort
    [ 1.386146] [drm] HPD5
    [ 1.386209] [drm] DDC: 0x6430 0x6430 0x6434 0x6434 0x6438 0x6438 0x643c 0x643c
    [ 1.386280] [drm] Encoders:
    [ 1.386345] [drm] DFP1: INTERNAL_UNIPHY2
    [ 1.386426] [drm] Connector 1:
    [ 1.386489] [drm] DisplayPort
    [ 1.386551] [drm] HPD4
    [ 1.386616] [drm] DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
    [ 1.386685] [drm] Encoders:
    [ 1.386748] [drm] DFP2: INTERNAL_UNIPHY2
    [ 1.386812] [drm] Connector 2:
    [ 1.386874] [drm] HDMI-A
    [ 1.386936] [drm] HPD6
    [ 1.386999] [drm] DDC: 0x6460 0x6460 0x6464 0x6464 0x6468 0x6468 0x646c 0x646c
    [ 1.387068] [drm] Encoders:
    [ 1.387131] [drm] DFP3: INTERNAL_UNIPHY1
    [ 1.387194] [drm] Connector 3:
    [ 1.387257] [drm] DVI-D
    [ 1.387319] [drm] HPD1
    [ 1.387382] [drm] DDC: 0x6450 0x6450 0x6454 0x6454 0x6458 0x6458 0x645c 0x645c
    [ 1.387454] [drm] Encoders:
    [ 1.387518] [drm] DFP4: INTERNAL_UNIPHY1
    [ 1.387580] [drm] Connector 4:
    [ 1.387641] [drm] DVI-I
    [ 1.387702] [drm] HPD3
    [ 1.387763] [drm] DDC: 0x6470 0x6470 0x6474 0x6474 0x6478 0x6478 0x647c 0x647c
    [ 1.387831] [drm] Encoders:
    [ 1.387893] [drm] DFP5: INTERNAL_UNIPHY
    [ 1.387955] [drm] CRT1: INTERNAL_KLDSCP_DAC1
    [ 2.259873] [drm] Internal thermal controller with fan control
    [ 2.260918] [drm] radeon: power management initialized
    [ 2.331033] [drm] fb mappable at 0xC0140000
    [ 2.331093] [drm] vram apper at 0xC0000000
    [ 2.331152] [drm] size 8294400
    [ 2.331210] [drm] fb depth is 24
    [ 2.331268] [drm] pitch is 7680
    [ 2.331359] fbcon: radeondrmfb (fb0) is primary device
    [ 2.542497] fb0: radeondrmfb frame buffer device
    [ 2.542497] drm: registered panic notifier
    [ 2.542500] [drm] Initialized radeon 2.9.0 20080528 for 0000:01:00.0 on minor 0
    [ 29.818060] Modules linked in: eeepc_wmi(+) asus_wmi snd sparse_keymap rfkill pci_hotplug ehci_hcd soundcore wmi ppdev snd_page_alloc parport_pc r8169 usbcore i2c_i801 evdev parport intel_agp sg intel_gtt pcspkr processor button video iTCO_wdt iTCO_vendor_support serio_raw mii fuse ext4 mbcache jbd2 crc16 sd_mod at

    KingYes wrote:
    [root@yakir-arch ~]# glxinfo | grep -i opengl
    Unknown chipset 0x6719
    OpenGL vendor string: VMware, Inc.
    OpenGL renderer string: Gallium 0.4 on softpipe
    EDIT:In the glxinfo command its say 'OpenGL vendor string: VMware, Inc'. Why?
    I don't really know it but "Unknown chipset" sounds like the card may be so new that it is not yet supported, even in testing. "softpipe" means that it is using software rendering instead of the actual 3d hardware.
    It probably will work with newer git versions from mesa and xf86-video-ati and maybe the radeon branch of the kernel. All is found in the inofficial [radeon] repository:
    https://bbs.archlinux.org/viewtopic.php?id=79509

  • 20" iMac and external Dell 24" : doesn't work with Mini DVI to DV adapter!

    Help! My lovely Dell HP LP2475w 24" Monitor can't be used as an external monitor. The native screen resolution is 1900x1200 60Hz. The Apple site claims the iMac is capable of being able to output this resolution.
    When the HP is plugged in via the apple mini to dvi adapter a (tested) DVI lead, it recognises the monitor, but can't bring it to life. Just an occasional flash. In the resolution listing for the HP, the native resolution 1900x1200 isn't listed.
    Plugging a cruddy old 20" Samsung with the same DVI leads works with no problems.
    I NEED to use the HP for my Photo editing, and phone calls to Apples support have proved fruitless.
    Does anyone have a 20" Intel iMac and an HP LP2475w set up that works?
    Many thanks for any help.

    I'm glad you got it working!
    So do you have it working at full 1900x1200? I've noticed a few more oddities about my iMac on this monitor. First off is that initially I could only go as high as 1680x1050, which I think is the native resolution of the iMac. Now I actually see two more options, one of which being 1920x1200. This surprises me since you couldn't get it to a full 1920. Both resolutions produce the same size image on the HP, but the 1680x1050 is fuzzier. It's odd to me, same dimensions just a little less clear. I can stretch that using the HP's settings to full screen, but I cannot adjust the 1920/1200 image even though there is a black border around it.
    Can you tell me what color settings you have on the HP? I have really struggled to find something I like. I actually like how things look in my iMac, and my MBP. I can't get things to look the same on the HP. I also feel like text is just a hair fuzzier on the HP than on either the iMac or MBP. I'm tempted to try a used 23" Apple Cinema Display, but I'm not sure I'll have any better luck with that. I mostly concerned about the image quality when I use my laptop, and for some reason I'm not getting great results with the HP or Dell externals that I've tried.

  • Will the Apple mini DVI to video adapter work with a macbook? What to Buy?

    I went to my local Apple Reseller and asked for a mini dvi to video adapter to use to connect my macbook to a tv using either s-video or the yellow RCA cable. I was told that they only had the one that was for an ibook and Power book and that this would not work with a Macbook. I would need a different one. Is this correct. If so, what do I need? I have looked on the online Apple Store and cannot find anything that fits this description. They only list one type of Mini DVI to tv adapter? I just want to be able to connect my Macbook to a TV.

    As it happens, I just bought the mini-DVI to video connector for my wife's Macbook (C2D) yesterday. I am in Australia (which is a PAL country), but I didn't see anything on the device or the packaging which indicated it as being PAL-specific. In fact, in Display Preferences when it is connected to the Mac and TV and in use, the panel relating to the TV output (which is shown by the Mac on the TV screen) is where you select between PAL-50Hz and NTSC-60Hz, so I'd guess it is a single worldwide device, rather than their being separately-manufactured PAL and NTSC variants of the connector.
    Anyway, on the back of the top cardboard part of the packaging is a picture of the connectors (because you cannot really see the pins in the Mini-DVI connector itself when packaged, due to an opaque plastic "keeper" over the end of the plug).
    To reconfirm what is said above, the pin configuration on the mini-DVI port on the MacBook and what you need on the Mini-DVI connector is a horseshoe or "U" shape. I don't remember if any specific model of Mac is listed, but I believe as long as it is that U-shaped connector you'll be fine with the same connector kit.
    The "mini-VGA to video" connector is not what you want for a MacBook; mini-VGA is not "U"-shaped inside, but rather two rows of pins in "II" configuration (even though the outside dimensions of mini-VGA and mini-DVI look very similar).
    ted.h.
    Mac Mini (Pro Duo) and MacBook (C2D)   Mac OS X (10.4.8)  

  • Is there a way to predict which video projectors will not work with the 2012 MacBook Air using the Mini-display to VGA adapter?

    I recently upgraded from a 2011 MBA to a 2012 MBA due to the larger capacity SSD.  The 2011 MBA running Lion and Mountain Lion worked with every video projector for lectures.  The new 2012 MBA is hit or miss with video projectors.  It is not an adapter problem.  I have multiple Apple mini-display to VGA adapters with the latest firmware.  They all work just fine with the 2011 MBA. Re-starting the 2012 MBA with the adapter and projector connected has not helped.   
    It it not acceptable to have a laptop that works with projectors some of the time.  Apple is aware of the problem.  Is the only choice to go back to the 2011 MBA? 
    RC 

    I installed 10.8.2 update today with my 2012 MBA.  The details of the update include:  Resolves a video issue with some VGA projectors when connected to certain Mac notebooks.
    I tried using the MBA with a video projector and it found the correct resolution and connected with the projector automatically.  Using detect displays in the disoplay preference pane wasn't even necessary. 
    I hope this is the fix I have been waiting for with the 2012 MBA.
    Thank you Apple.
    RC
              (http://support.apple.com/kb/HT5460)

  • HT1151 i have a new apple external dvd drive, and i can't get it to work with my iMac?

    I have a new apple dvd drive, I was told it will work with my imac,  but when i plug it in ...nothing... iv been for update... still nothing. How can i get it to work???

    If it is this drive, note that it is for MBA's and Mini's only:
    http://store.apple.com/us/product/MC684ZM/A
    Ciao.

  • In the previous version i was able to close my mozilla and to open it again, the web pages which i was working with remained however i've tried many ways to have this advantage again but it is not working what can i do ???

    in the previous Mozilla version i used to leave some web sites opened and when i start working again my Mozilla showed the web pages i was working with in that occasion, i have looked in the options menu but there is no way, perhaps it was an add-on and now it is removed??? i would like to have this advantage again in my Mozilla could it be possible?? thx!

    Your webpages/tabs are still there. When you start firefox again, there is a "Restore Previous Session" icon below. If you click that, it will open up all your tabs again.
    Or you could see this article for better understanding-
    http://support.mozilla.com/en-US/kb/Firefox%20does%20not%20ask%20to%20save%20tabs%20and%20windows%20on%20exit?s=how+to+save+tabs&as=s#os=win&browser=fx4

  • How I got my 2011 MacBook Pro (17") to work with the UML290 without any 'hackery'

    Frustrated and fed up with waiting for Verizon to finally fully support an operating system that is almost two and a half years old now, I decided to experiment and play around with things myself.  Here is what I learned:
    For some reason, the "dial your number" network hack that people got working didn't work for me.  I set up everything as the tutorials all said (GRPS (GSM/2G), APN to "vzwinternet", dial your phone number, user name is [email protected], password is vzw, CID 3, etc).  It just would not work for me.  Maybe it's becasue I had my UML290 hooked up to a Windows 7 box that updated the firmware, which may have rendered this 'hack' inept.  I don't know; all I know as that, despite trying to get this method to work for several days, I was never able to get it to work.
    There was no way, as far as I could see, to force the Verizon Access Manager (VZAM) software to run in 32bit mode as you can with most other programs.  Typically, you can hilight a program, press CMD+I and select a checkbox to run an app in 32bit mode, but no such option existed for VZAM (for whatever reason).
    Finally, I found a workaround to get the modem working until Verizon gets their act together and makes VZAM work with 64bit OS X.  Here's how:
    Completely power off your computer. 
    Depress and hold the "3" key and the "2" key (at the top of your keyboard) at the same time BEFORE pressing the power button.
    Press the power button while continuing to hold the "3" key and the "2" key.
    Continue to hold the "3" key and the "2" key until the login prompt comes up.
    Log in as normal (you may have to remove a bunch of characters from the password field; just CMD+A and delete what's in there and type your password as usual).
    After following the steps above, you should have forced your Mac to run in 32bit mode.  Run VZAM as normal and you should have no trouble connecting to the 4G/3G network.
    Note: This measure is TEMPORARY, and will force OS X to load the 32bit kernel instead of the default 64bit kernel (if your MacBook is set up to use the 64bit kernel by default).  This change will be undone at your next restart provided you do not hold down the "3" key and the "2" key.
    Note: If you used previously posted "dial-up" methods to get your modem working on your Mac, you will need to undo the 'damage' to your settings that that workaround caused.  Please see my post here (post 14) for detailed instructions on how to do so.
    Note: This is a temporary solution that carries with it some down sides:
    True 64bit support offers higher levels of security than 32bit.
    You will likely be unable to use more than 3GB of of memory as a 32bit OS cannot, by nature, address that much RAM.
    Please let me know if you have any problems.  I can't promise I can help, but I'll do my best.

    Hey, it's a simple fix that should give most people what they want until there is full VZW support: the ability to use their card with the VZAM software.  I didn't see anyone else offering that suggestion...  If you don't want to use it, you don't have to.
    At the very least, this does seem to prove the theory that this is an issue with the 32/64bit compatability that some have refuted.

  • I bought Aperature and PS from a university store, not under my apple username, now it won't let me update it to work with Yosemite because it isn't hooked to my username.  how do i fix it and get the upgrade

    A few years ago or so i bought Aperture and Photoshop (the whole kit and caboodle) from a university subsidized store (my husband worked there and buying programs like those two, the whole Microsoft office Suite, all kinds of things) at a very significant discount, i think we paid 25$ for Photoshop vs the 400$ it was selling for on the open market. 
    Yesterday i upgraded most of my laptops to Yosemite (one of them I'm sure was the one that had Aperture on it, a 17in MacBookPro, its about 2 years old now, but at the time i bought it it was the highest computer apple had on the regular floor, I'm sure i could have added some stuff to customize it for extra, but basically we are talking top of the line computer.  I recently just required a 2012 MackBook Air with also fairly heavy specs from a family member that was upgrading (I'm not sure why, i know they couldn't possibly be using this thing for anything beyond its capacity, its basically new,  and they aren't 3D animation rendering and needed a "quicker" one).
    I was very happy with the upgrade, and now it does work much more seamlessly with my iPads and my iPhone, but the whole reason i uploaded it was to work on pictures, adjust them, change the size and then print them out to include in jewelry, and Yosemite won't let me use Aperture at all, when i click to upgrade it (in the bar all it has basically old icon with a (no sign or ghost busters like sign over it) i click on it and it says, you did not buy this with your apple account name and i could not upgrade it.  But it just made me click ok, and did not give me any info on how to upgrade it.  i do physically own it, or my husband does, I'm not sure to whom it is registered, but sholdnt i still make it able to work with this new operating system, even if not through regular "software updates"  it used to always be asking me to upgrade "word" and i got that in the same way, so what is the issue and what do i do to get it to work on this new system?

    Wow that was really quick, thank you so much.  Im not sure at all which version it was because i said it was around 4 years ago he bought it.  I know it isn't under his username, since he's a PC person (ugh) so i know its probably registered to one of our actual names.  isn't there some way to look it up since we did register it, because I'm not even sure where the disks are from when we bought it (we've moved a lot and also have two storage lockers, i know i would have kept it with other disks) but my cd rom drive is actually broken on my computer as well ( i think it got stepped on and is now squished and won't eject or run disks.)
    So is there anyway they can look up that its registered to one of our names since we did register it when we bought and installed it, or do i really have to find the disk with some sort of proof of purchase (i know there would be no receipt after all this time)
    either way, ill do what you suggested to the best of my abilities and thank you so much for answering my questions, i can't even open the program as its incompatible and find out the info from that) so I'm in a bit of a pickle and your response was so thorough and it didn't seem to be posted long enough to even write a well researched response, thanks, all the best,
    sarucia

Maybe you are looking for

  • UWC/CE 6.3 and Access Manager 7.1 SSO sometimes fails (seems like a bug)

    PREAMBULA: I started writing this post thinking that our AM SSO setup was at fault in some step. As I was gathering data, checking the doc-links and config files and finally sniffed the servers for HTTP dialogs, I grew pretty sure there's a bug in UW

  • How to validate long text in me31k( contract creation)

    Hi,    I want to validate the long text in creation of contract(T_code - ME31k). In creation it self i want to get the long text for validation. How to get the long text value. For eg. "Release order text'  i am giving the value as '10'. While saving

  • Change Protected Attribute - E-recruiting default the sender E-mail Address

    Hi Experts, I am trying to modify the me->sender->emai_address with some default value at the staringof the method as an implicit enhancement in IF_HRRCF_CHANNEL_MAIL~SEND_DOCUMENT in CL_HRRCF_CS_DOC_CAT_SF_SUPER. As SENDER is an Protected attribute

  • Configure InstanceName

    hi Recently Steve Muench posted this discussion message at http://groups.google.com/group/adf-methodology/msg/5b8bd1437d87b4e5 An ActionBinding can call backing bean method by using an EL expression in the action binding's "InstanceName" attribute in

  • Can I separate the pages of one PDF file into separate files

    Is there a quick way to separate the pages of a PDF? For example, I want to take a 10 page PDF, separate the pages and save them as 10 separate files. I know I can go through and extract each page, but I need to do this with multiple documents that c