E17 via CVS - problem compiling e

Hi. I'm currently running Arch along with another distro, and i would like to have e17 installed on both, and in order to avoid conflict between e17 versions, i want to have them both installed via CVS. I'm using the easy_e17.sh script.
I've sucessfully compiled e17 under Debian many times, but i'm stuck with Arch at the step of compiling e, during make. Here are the errors i get:
rm -f fi.gmo && /usr/bin/msgfmt -c --statistics -o fi.gmo fi.po
rm -f zh_CN.gmo && /usr/bin/msgfmt -c --statistics -o zh_CN.gmo zh_CN.po
/usr/bin/msgfmt: (null): warning: PO file header fuzzy
                         warning: older versions of msgfmt will give an error on this
fi.po:3760: number of format specifications in 'msgid' and 'msgstr' does not match
fi.po:3782: number of format specifications in 'msgid' and 'msgstr' does not match
540 translated messages, 236 fuzzy translations, 487 untranslated messages.
/usr/bin/msgfmt: found 2 fatal errors
1164 translated messages, 68 fuzzy translations, 31 untranslated messages.
make[3]: *** [fi.gmo] Error 1
make[3]: *** Waiting for unfinished jobs....
make[3]: Leaving directory `/home/clement/e17_cvs/e17/apps/e/po'
make[2]: *** [stamp-po] Error 2
make[2]: Leaving directory `/home/clement/e17_cvs/e17/apps/e/po'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/clement/e17_cvs/e17/apps/e'
make: *** [all] Error 2
I really have no idea what to do. I though of reinstalling msgfmt, but i can't find whch package does it belong to.
Any help would be greatly appreciated.

Azriel wrote:I really have no idea what to do. I though of reinstalling msgfmt, but i can't find whch package does it belong to.
gettext.

Similar Messages

  • Error during upload pictures in CCM 2.0 via CVS file

    Hello everybody,
    We're using SRM5.0 and CCM2.0.
    I'm trying to upload (via CVS upload) pictures but during the upload in the supplier catalog following error message appears: Value for catalog item xxx (supplier part number) of supplier xxx is incorrect.
    This errors appears only when we add our picture characteristics which are in our upload file : /CCM/PICTURES#/CCM/URL and also /CCM/PICTURES#/CCM/DESCRIPTION.
    We put all pictures in MIME repository and also put the MIME repositerory URL link on schema level into procurement catalog. We're using "Pictures" characteristic. But I know that characteristic "Image" also exists. What do I have to use? Do I have to put something specific into cahracteristic /CCM/PICTURE (our OCI field is still empty there...)?
    It would be great if somebody can help me on that,
    Regards,
    Caroline

    Hi,
    I don't understand very well, the standard characteristic for images is /CCM/PICTURE.
    It's a complex characteristic composed by
    /CCM/DESCRIPTION
    /CCM/URL
    /CCM/MIME_TYPE. (for example image/jpeg).
    If your problems still exist, you can send me your file
    Regards

  • E17 battery module problem?

    I'm just wondering if anyone else has a problem with the battery module in e17 (e-cvs).  It used to work correctly before the upgrade but I just noticed that it now shows 100% on the battery all the time.  My conky app still shows the proper battery level (ie. discharging 35%) so I'm assuming it has something to do with the e17 battery module.  I'm running E17 on a T21 IBM Thinkpad by the way.
    Edit: It's definitely the e-cvs upgrade that's the culprit.  I went back to e-cvs-2008220-1.pkg.tar.gz and now the battery level is correct again.
    Last edited by bgc1954 (2008-03-05 17:11:32)

    iggy wrote: battery module still broken, even after upgrade to the new packages (20080317)!
    The battery time remaining does not work indeed, though the battery percentage remaining does work on my end (which was also broken before for me). Can you confirm that or does it not work at all for you ?

  • Problem compiling Abstract class

    Hi
    I have writting an abstract class Sort.java and another class BubbleSort.java. I am having problems compiling BubbleSort.java class.
    The following is the error message
    BubbleSort.java:8: missing method body, or declare abstract
         public int doSorting(int[] array);
    ^
    BubbleSort.java:11: return outside method
              return num;
    ^
    The following is the code
    public abstract class Sort
    public abstract int doSorting(int[] array);
    }// End of class
    public class BubbleSort extends Sort
    private int num = 2;
    public int doSorting(int[] array);
    num = num + 2;
    return num;
    } // end of class

    Remove the semi-colon.
    public int doSorting(int[] array); // <------- there

  • Having problems compiling *.java with import javax.servlet.jsp......

    I've been trying to do the tutorials in a book titled Apache Jakarta-Tomcat as part of my introduction to JSP. I'm new to Java but do know the basics. I have on my machine Java 1.3, Java 1.4, Java FrameWorks 2.1 and Jython 2.1 on Win2000 Pro. So enough about my configuration. I have never worked with packages also.
    I downloaded the files from the books site due to the fact I make a lot of typos when hand coding Java (I've become a pretty good debugger of my own code). But everytime I go to compile the *.java I get error messages. So below you will find HelloTag.java and beneath that the error messages that are thrown when I try and compile it. I tested other bits of *.java and have had no problem compiling them. Is there a JSP module I'm missing?
    Am I doing something wrong or am I missing something from my configuration.
    Marijan Madunic
    package chapter2;
    import javax.servlet.jsp.JspException;
    import javax.servlet.jsp.JspTagException;
    import javax.servlet.jsp.tagext.TagSupport;
    public class HelloTag extends TagSupport
    public void HelloTag() {
    // Method called when the closing hello tag is encountered
    public int doEndTag() throws JspException {
    try {
    // We use the pageContext to get a Writer
    // We then print the text string Hello
    pageContext.getOut().print("Hello");
    catch (Exception e) {
    throw new JspTagException(e.getMessage());
    // We want to return SKIP_BODY because this Tag does not support
    // a Tag Body
    return SKIP_BODY;
    public void release() {
    // Call the parent's release to release any resources
    // used by the parent tag.
    // This is just good practice for when you start creating
    // hierarchies of tags.
    super.release();
    D:\Java\JDK 1.3\bin>javac HelloTag.java
    HelloTag.java:3: cannot resolve symbol
    symbol : class JspException
    location: package jsp
    import javax.servlet.jsp.JspException;
    ^
    HelloTag.java:4: cannot resolve symbol
    symbol : class JspTagException
    location: package jsp
    import javax.servlet.jsp.JspTagException;
    ^
    HelloTag.java:5: cannot resolve symbol
    symbol : class TagSupport
    location: package tagext
    import javax.servlet.jsp.tagext.TagSupport;
    ^
    HelloTag.java:7: cannot resolve symbol
    symbol : class TagSupport
    location: class chapter2.HelloTag
    public class HelloTag extends TagSupport
    ^
    HelloTag.java:14: cannot resolve symbol
    symbol : class JspException
    location: class chapter2.HelloTag
    public int doEndTag() throws JspException {
    ^
    HelloTag.java:20: cannot resolve symbol
    symbol : variable pageContext
    location: class chapter2.HelloTag
    pageContext.getOut().print("Hello");
    ^
    HelloTag.java:24: cannot resolve symbol
    symbol : class JspTagException
    location: class chapter2.HelloTag
    throw new JspTagException(e.getMessage());
    ^
    HelloTag.java:28: cannot resolve symbol
    symbol : variable SKIP_BODY
    location: class chapter2.HelloTag
    return SKIP_BODY;
    ^
    HelloTag.java:37: cannot resolve symbol
    symbol : variable super
    location: class chapter2.HelloTag
    super.release();
    ^
    9 errors

    Well, it looks like you've not got the servlet development kit JAR on your classpath. I think it'll probably be called servlet.jar on your system. Add that to the classpath if it's not already there.
    Incidentally, you've bumped into one of the areas Java's slightly lenient - declaring a method that looks like a constructor:
    public HelloTag() { }
    public void HelloTag() { }The first is a constructor, the second is a normal method. I'm assuming you intended to have the former instead of the latter.
    Anyway, hope this helps.

  • Problems compiling Zaptel package [SOLVED-ISH]

    Hey guys, I'm on an Arch64 system and I'm having problems compiling Zaptel (a dependancy for Asterisk).
    Here's the pastebin of the errors I get from the Zaptel makefile: http://pastebin.com/776475
    Here's my analysis so far:
    There's a line in the Makefile for the zaptel driver that goes like this:
    make -C /lib/modules/2.6.17-ARCH/build/ SUBDIRS=/home/woogie/zaptel/src/zaptel-1.2.8 modules
    This line activates the kernel's makefile in order to build modules, but specifies that the source directory for zaptel should be included in the make process.
    Then things go down the proverbial drain - linux/err_kernel_only.h gets included in the build process, which is designed to do one thing only - stop the build process. So I'm not entirely too sure what's going on here. Is there something misconfigured on my system, or is the Zaptel build system flawed somehow, such that I need to compensate for it?

    Further information:
    I've manually run the problematic make command from /lib/modules/2.6.17-ARCH/build on my own. After reading the kernel makefile documentation, I've learned of the V=1 flag to show me exactly what's going on. The failing command is this one:
    gcc -Wp,-MD,/home/cestus/zaptel/src/zaptel-1.2.8/.zaptel.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-unknown-linux-gnu/4.1.1/include -D__
    KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -O2
    -fomit-frame-pointer -m64 -mno-red-zone -mcmodel=kernel -pipe -fno-reorder-blocks -Wno-sign-compare -fno-asynchronous-unwind-tables -fun
    it-at-a-time -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -Wdeclaration-after-statement -Wno-pointer-sign -I. -Iinclude -O4 -g -Wall -DBUILDING_T
    ONEZONE -m64 -DSTANDALONE_ZAPATA -DZAPTEL_CONFIG="/etc/zaptel.conf" -DHOTPLUG_FIRMWARE -I/home/cestus/zaptel/src/zaptel-1.2.8//include
    -I/home/cestus/zaptel/src/zaptel-1.2.8//include/oct6100api -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(zaptel)" -D"KBUIL
    D_MODNAME=KBUILD_STR(zaptel)" -c -o /home/cestus/zaptel/src/zaptel-1.2.8/zaptel.o /home/cestus/zaptel/src/zaptel-1.2.8/zaptel.c
    I've figured out that the bit which causes the failure is "-include include/linux/autoconf.h", because autoconf.h just includes the "err_kernel_only" header automatically, which then slays the build process. And I've also discovered that the Zaptel devs are uber-leet. They've found the magical -O4 level in gcc. You know, the one above 3, where the supported optimization levels in gcc are -O, -Os, -O2 and -O3 

  • Problem compiling Java on XP

    i'm new to java, just went through the tutorial just now..
    tried compilling my program the first time on XP, but the system doesn't recognise the command JAVAC,
    i've installed the java compiler (j2re-1_4_1_01-windows-i586.exe)
    but it still isn't working.. any help?
    thanks!

    then again.. i'm still having problems compiling..
    i managed to install the right sdk, but.. i have to run the command javac from the bin directory.. else the command prompt won't recognise it..
    anyway to get around this?
    also.. because of this.. i can't compile my program.. :(

  • Having problems compiling script

    I am rather new to java an started a couple of days ago and I ran into a problem compiling this script in the command line
    class VariableDemo {
    public static void main (String args[]) {
    int num = 1000;
    System.out.println (num + " is the value of num") ;
    At first I forgot to capitolize the 'S' in System (which is why I was getting errors) but after I had corrected it , I still could not get it to compile in a command prompt
    even after I corrected my mistakes, I still get this error:
    error: cannot read: VariableDemo.java
    1 error
    When I ran it through JCreator it compiled it just fine and found no errors. SO I just want to know if it is some thing that has to do with the command line or is there an error I am not seeing?
    I am running Windows XP Pro with service pack 2 and using JCreator 3.50.010

    Sorry, I am new to this I just called it script out of ignorance, but, yes it is in the same directory. I even Pathed it out again to be sure.

  • Problems compiling program

    hello.
    this is james mcfadden. i'm having problems compiling the Demo.java program. the Demo.java program is shown below along with the MediaPanel.java and MediaTest.java programs. when i compile the Demo.java program i get the following errors. i really need help in getting rid of these errors.
    ----jGRASP exec: javac -g X:\CP4B Project\Demo.java
    Demo.java:297: cannot find symbol
    symbol : class Media
    location: class Demo
    MediaTest media=new Media();
    ^
    Demo.java:301: cannot find symbol
    symbol : class Media
    location: class Demo
    MediaTest media=new Media();
    ^
    Demo.java:305: cannot find symbol
    symbol : class Media
    location: class Demo
    MediaTest media=new Media();
    ^
    3 errors
    ----jGRASP wedge2: exit code for process is 1.
    ----jGRASP: operation complete.
    //Written by:Seamus McFadden
    //Class:CP4B
    //Program Number:1
    //Program Name:Demo.java
    //Description:
    //Supervisor:Gerard McCloskey
    import java.awt.*;//Contains all of the classes for creating user interfaces and for painting graphics and images
    import java.awt.event.*;//Provides interfaces and classes for dealing with different types of events fired by AWT components
    import javax.swing.*;//Provides a set of lightweight components that, to the maximum degree possible, work the same on all platforms
    public class Demo extends JFrame{
        public static void main(String[] args){
            int choice=-1;//a variable of type int that is set to -1
            choice=getChoice();//invokes the method getChoice()
            if(choice!=0){
               getSelected(choice);//invokes the method getSelected(choice)
            }//end if
        }//end main
        public static int getChoice(){
            String choice;//a variable of type string
            int ch;//a variable of type int
            choice=JOptionPane.showInputDialog(null,
                    "1. Product Menu\n" +
                    "2. Member Menu\n" +
                    "3. Rental Menu\n" +
                          "4. Media Menu\n" +
                    "5. Log Off\n\n" +
                    "Enter your choice");//asks the user for some input
            ch=Integer.parseInt(choice);//a class that wraps a value of the primitive type int in an object
            return ch;//a method that returns an integer value
        }//end getChoice
        public static void getSelected(int choice){
            if(choice == 1) {
                   product();
            }//end if
            if(choice==2){
               member();
            }//end if
            if(choice==3){
               rental();
            }//end if
                if(choice==4){
               media();
            }//end if
                if(choice==5){
                   LogOff logoff=new LogOff();
                }//end if
                else{
                   ErrorMessage error=new ErrorMessage();
        }//end getSelected
        public static void product(){
             int productChoice=-1;//a variable of type int that is set to -1
           productChoice=getProductChoice();//invokes the method getChoice()
           if(productChoice!=0){
              getProductSelected(productChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
        public static void member(){
           int memberChoice=-1;//a variable of type int that is set to -1
           memberChoice=getMemberChoice();//invokes the method getChoice()
           if(memberChoice!=0){
              getMemberSelected(memberChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
        public static void rental(){
           int rentalChoice=-1;//a variable of type int that is set to -1
           rentalChoice=getRentalChoice();//invokes the method getChoice()
           if(rentalChoice!=0){
              getRentalSelected(rentalChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice();
          public static void media(){
           int mediaChoice=-1;//a variable of type int that is set to -1
           mediaChoice=getMediaChoice();//invokes the method getChoice()
           if(mediaChoice!=0){
              getMediaSelected(mediaChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
          public static int getProductChoice(){
           String productChoice;//a variable of type string
           int pch;//a variable of type int
           productChoice=JOptionPane.showInputDialog(null,
                   "1. Add product details\n" +
                   "2. View product details\n" +
                   "3. Edit product details\n" +
                         "4. Delete product details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           pch=Integer.parseInt(productChoice);//a class that wraps a value of the primitive type int in an object
           return pch;//a method that returns an integer value
        }//end getProductChoice
          public static int getMemberChoice(){
           String memberChoice;//a variable of type string
           int mch;//a variable of type int
           memberChoice=JOptionPane.showInputDialog(null,
                   "1. Add member details\n" +
                   "2. View member details\n" +
                   "3. Edit member details\n" +
                             "4. Delete member details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           mch=Integer.parseInt(memberChoice);//a class that wraps a value of the primitive type int in an object
           return mch;//a method that returns an integer value
        }//end getMemberChoice
          public static int getRentalChoice(){
           String rentalChoice;//a variable of type string
           int rch;//a variable of type int
           rentalChoice=JOptionPane.showInputDialog(null,
                   "1. Add rental details\n" +
                   "2. View rental details\n" +
                   "3. Edit rental details\n" +
                             "4. Delete rental details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           rch=Integer.parseInt(rentalChoice);//a class that wraps a value of the primitive type int in an object
           return rch;//a method that returns an integer value
        }//end getRentalChoice
          public static int getMediaChoice(){
           String mediaChoice;//a variable of type string
           int mtch;//a variable of type int
           mediaChoice=JOptionPane.showInputDialog(null,
                   "1. Listen to songs\n" +
                             "2. View movie previews\n" +
                             "3. View game previews\n" +
                   "4. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           mtch=Integer.parseInt(mediaChoice);//a class that wraps a value of the primitive type int in an object
           return mtch;//a method that returns an integer value
        }//end getMediaChoice
          public static void getProductSelected(int productChoice){
           if(productChoice==1){
                  addProducts();
           }//end if
           if(productChoice==2){
              viewProducts();
           }//end if
           if(productChoice==3){
              editProducts();
           }//end if
               if(productChoice==4){
              deleteProducts();
           }//end if
               else{
                   ErrorMessage error=new ErrorMessage();
        }//end getProductSelected
          public static void getMemberSelected(int memberChoice){
           if(memberChoice==1){
                  addMembers();
           }//end if
           if(memberChoice==2){
              viewMembers();
           }//end if
           if(memberChoice==3){
              editMembers();
           }//end if
               if(memberChoice==4){
              deleteMembers();
           }//end if
               else{
                   ErrorMessage error=new ErrorMessage();
        }//end getMemberSelected
          public static void getRentalSelected(int rentalChoice){
           if(rentalChoice==1){
                  addRentals();
           }//end if
           if(rentalChoice==2){
              viewRentals();
           }//end if
           if(rentalChoice==3){
              editRentals();
           }//end if
               if(rentalChoice==4){
              deleteRentals();
           }//end if
               else{
                   ErrorMessage error=new ErrorMessage();
        }//end getRentalSelected
          public static void getMediaSelected(int mediaChoice){
           if(mediaChoice==1){
                  hearSongs();
           }//end if
           if(mediaChoice==2){
              viewMovies();
           }//end if
           if(mediaChoice==3){
              viewGames();
           }//end if
               else{
                   ErrorMessage error=new ErrorMessage();
        }//end getMediaSelected
          public static void addProducts(){
           ProductForm product=new ProductForm();
           product.getInput();
               product.setVisible(true);
          public static void viewProducts(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editProducts(){
           ProductForm product=new ProductForm();
               product.getInput();
               product.setVisible(true);
          public static void deleteProducts(){
           ProductForm product=new ProductForm();
               product.setVisible(true);
          public static void addMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void viewMembers(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void deleteMembers(){
           MemberForm member=new MemberForm();
               member.setVisible(true);
          public static void addRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void viewRentals(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void deleteRentals(){
           RentalForm rental=new RentalForm();
               rental.setVisible(true);
        public static void hearSongs(){
           MediaTest media=new Media(); 
        public static void viewMovies(){
           MediaTest media=new Media();   
        public static void viewGames(){
           MediaTest media=new Media();   
    }//end class Demo
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.net.URL;
    import javax.media.CannotRealizeException;
    import javax.media.Manager;
    import javax.media.NoPlayerException;
    import javax.media.Player;
    import javax.swing.JPanel;
    public class MediaPanel extends JPanel{
       public MediaPanel(URL mediaURL){
          setLayout(new BorderLayout());//use a BorderLayout
          //Use lightweight components for Swing compatibility
          Manager.setHint(Manager.LIGHTWEIGHT_RENDERER,true);
          try{
             //create a player to play the media specified in the URL
             Player mediaPlayer=Manager.createRealizedPlayer(mediaURL);
             //get the components for the video and the playback controls
             Component video=mediaPlayer.getVisualComponent();
             Component controls=mediaPlayer.getControlPanelComponent();
             if(video!=null)
                add(video,BorderLayout.CENTER);//add video component
             if(controls!=null)
                add(controls,BorderLayout.SOUTH);//add controls
             mediaPlayer.start();//start playing the media clip
          }//end try
          catch(NoPlayerException noPlayerException){
             System.err.println("No media player found");
          }//end catch
          catch(CannotRealizeException cannotRealizeException){
             System.err.println("Could not realize media player");
          }//end catch
          catch(IOException iOException){
             System.err.println("Error reading from the source");
          }//end catch
       }//end MediaPanel constructor
    }//end class MediaPanel
    import java.io.File;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    public class MediaTest{
       //launch the application
       public static void main(String args[]){
          //create a file chooser
          JFileChooser fileChooser=new JFileChooser();
          //show open file dialog
          int result=fileChooser.showOpenDialog(null);
          if(result==JFileChooser.APPROVE_OPTION){//user chose a file
             URL mediaURL=null;
             try{
                //get the file as URL
                mediaURL=fileChooser.getSelectedFile().toURL();
             }//end try
             catch(MalformedURLException malformedURLException){
                System.err.println("Could not create URL for the file");
             }//end catch
             if(mediaURL!=null) {//only display if there is a valid URL
                JFrame mediaTest=new JFrame("Media Tester");
                mediaTest.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                MediaPanel mediaPanel=new MediaPanel(mediaURL);
                mediaTest.add(mediaPanel);
                mediaTest.setSize(300,300);
                mediaTest.setVisible(true);
             }//end inner if
          }//end outer if
       }//end main
    }//end class MediaTest

    hello.
    this is james mcfadden. thanks for the reply. i did what you told me to do, but i am still having trouble trying to use the 2 JMF programs (MediaPanel.java and MediaTest.java) with the Demo.java program. the Demo.java program compiles and runs ok, but when i press 1 (for listening to songs) in the media menu i get a JOptionPane (An Error Message) displayed on screen. how can i fix this problem?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Demo extends JFrame{
        public static void main(String[] args){
            int choice=-1;//a variable of type int that is set to -1
            choice=getChoice();//invokes the method getChoice()
            if(choice!=0){
               getSelected(choice);//invokes the method getSelected(choice)
            }//end if
        }//end main
        public static int getChoice(){
            String choice;//a variable of type string
            int ch;//a variable of type int
            choice=JOptionPane.showInputDialog(null,
                    "1. Product Menu\n" +
                    "2. Member Menu\n" +
                    "3. Rental Menu\n" +
                          "4. Media Menu\n" +
                    "5. Log Off\n\n" +
                    "Enter your choice");//asks the user for some input
            ch=Integer.parseInt(choice);//a class that wraps a value of the primitive type int in an object
            return ch;//a method that returns an integer value
        }//end getChoice
        public static void getSelected(int choice){
            if(choice == 1) {
                   product();
            }//end if
            if(choice==2){
               member();
            }//end if
            if(choice==3){
               rental();
            }//end if
                if(choice==4){
               media();
            }//end if
                if(choice==5){
                   LogOff logoff=new LogOff();
                }//end if
                else{
                   JOptionPane.showMessageDialog(null,"Error\n\nInvalid options\nPlease choose 1, 2, 3, 4 or 5 on the main menu\nPlease choose 1, 2, 3, 4 or 5 on the product menu\nPlease choose 1, 2, 3, 4 or 5 on the member menu\nPlease choose 1, 2, 3, 4 or 5 on the rental menu\nPlease choose 1, 2, 3 or 4 on the media menu");
                   System.exit(0);
        }//end getSelected
        public static void product(){
             int productChoice=-1;//a variable of type int that is set to -1
           productChoice=getProductChoice();//invokes the method getChoice()
           if(productChoice!=0){
              getProductSelected(productChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
        public static void member(){
           int memberChoice=-1;//a variable of type int that is set to -1
           memberChoice=getMemberChoice();//invokes the method getChoice()
           if(memberChoice!=0){
              getMemberSelected(memberChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
        public static void rental(){
           int rentalChoice=-1;//a variable of type int that is set to -1
           rentalChoice=getRentalChoice();//invokes the method getChoice()
           if(rentalChoice!=0){
              getRentalSelected(rentalChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice();
          public static void media(){
           int mediaChoice=-1;//a variable of type int that is set to -1
           mediaChoice=getMediaChoice();//invokes the method getChoice()
           if(mediaChoice!=0){
              getMediaSelected(mediaChoice);//invokes the method getSelected(choice)
           }//end if
           getChoice(); 
          public static int getProductChoice(){
           String productChoice;//a variable of type string
           int pch;//a variable of type int
           productChoice=JOptionPane.showInputDialog(null,
                   "1. Add product details\n" +
                   "2. View product details\n" +
                   "3. Edit product details\n" +
                         "4. Delete product details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           pch=Integer.parseInt(productChoice);//a class that wraps a value of the primitive type int in an object
           return pch;//a method that returns an integer value
        }//end getProductChoice
          public static int getMemberChoice(){
           String memberChoice;//a variable of type string
           int mch;//a variable of type int
           memberChoice=JOptionPane.showInputDialog(null,
                   "1. Add member details\n" +
                   "2. View member details\n" +
                   "3. Edit member details\n" +
                             "4. Delete member details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           mch=Integer.parseInt(memberChoice);//a class that wraps a value of the primitive type int in an object
           return mch;//a method that returns an integer value
        }//end getMemberChoice
          public static int getRentalChoice(){
           String rentalChoice;//a variable of type string
           int rch;//a variable of type int
           rentalChoice=JOptionPane.showInputDialog(null,
                   "1. Add rental details\n" +
                   "2. View rental details\n" +
                   "3. Edit rental details\n" +
                             "4. Delete rental details\n" +
                   "5. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           rch=Integer.parseInt(rentalChoice);//a class that wraps a value of the primitive type int in an object
           return rch;//a method that returns an integer value
        }//end getRentalChoice
          public static int getMediaChoice(){
           String mediaChoice;//a variable of type string
           int mtch;//a variable of type int
           mediaChoice=JOptionPane.showInputDialog(null,
                   "1. Listen to songs\n" +
                             "2. View movie previews\n" +
                             "3. View game previews\n" +
                   "4. Return to main menu\n\n" +
                   "Enter your choice");//asks the user for some input
           mtch=Integer.parseInt(mediaChoice);//a class that wraps a value of the primitive type int in an object
           return mtch;//a method that returns an integer value
        }//end getMediaChoice
          public static void getProductSelected(int productChoice){
           if(productChoice==1){
                  addProducts();
           }//end if
           if(productChoice==2){
              viewProducts();
           }//end if
           if(productChoice==3){
              editProducts();
           }//end if
               if(productChoice==4){
              deleteProducts();
           }//end if
               else{
                   JOptionPane.showMessageDialog(null,"Error\n\nInvalid options\nPlease choose 1, 2, 3, 4 or 5 on the main menu\nPlease choose 1, 2, 3, 4 or 5 on the product menu\nPlease choose 1, 2, 3, 4 or 5 on the member menu\nPlease choose 1, 2, 3, 4 or 5 on the rental menu\nPlease choose 1, 2, 3 or 4 on the media menu");
                   System.exit(0);
        }//end getProductSelected
          public static void getMemberSelected(int memberChoice){
           if(memberChoice==1){
                  addMembers();
           }//end if
           if(memberChoice==2){
              viewMembers();
           }//end if
           if(memberChoice==3){
              editMembers();
           }//end if
               if(memberChoice==4){
              deleteMembers();
           }//end if
               else{
                   JOptionPane.showMessageDialog(null,"Error\n\nInvalid options\nPlease choose 1, 2, 3, 4 or 5 on the main menu\nPlease choose 1, 2, 3, 4 or 5 on the product menu\nPlease choose 1, 2, 3, 4 or 5 on the member menu\nPlease choose 1, 2, 3, 4 or 5 on the rental menu\nPlease choose 1, 2, 3 or 4 on the media menu");
                   System.exit(0);
        }//end getMemberSelected
          public static void getRentalSelected(int rentalChoice){
           if(rentalChoice==1){
                  addRentals();
           }//end if
           if(rentalChoice==2){
              viewRentals();
           }//end if
           if(rentalChoice==3){
              editRentals();
           }//end if
               if(rentalChoice==4){
              deleteRentals();
           }//end if
               else{
                   JOptionPane.showMessageDialog(null,"Error\n\nInvalid options\nPlease choose 1, 2, 3, 4 or 5 on the main menu\nPlease choose 1, 2, 3, 4 or 5 on the product menu\nPlease choose 1, 2, 3, 4 or 5 on the member menu\nPlease choose 1, 2, 3, 4 or 5 on the rental menu\nPlease choose 1, 2, 3 or 4 on the media menu");
                   System.exit(0);
        }//end getRentalSelected
          public static void getMediaSelected(int mediaChoice){
           if(mediaChoice==1){
                  hearSongs();
           }//end if
           if(mediaChoice==2){
              viewMovies();
           }//end if
           if(mediaChoice==3){
              viewGames();
           }//end if
               else{
                   JOptionPane.showMessageDialog(null,"Error\n\nInvalid options\nPlease choose 1, 2, 3, 4 or 5 on the main menu\nPlease choose 1, 2, 3, 4 or 5 on the product menu\nPlease choose 1, 2, 3, 4 or 5 on the member menu\nPlease choose 1, 2, 3, 4 or 5 on the rental menu\nPlease choose 1, 2, 3 or 4 on the media menu");
                   System.exit(0);
        }//end getMediaSelected
          public static void addProducts(){
           ProductForm product=new ProductForm();
           product.getInput();
               product.setVisible(true);
          public static void viewProducts(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editProducts(){
           ProductForm product=new ProductForm();
               product.getInput();
               product.setVisible(true);
          public static void deleteProducts(){
           ProductForm product=new ProductForm();
               product.setVisible(true);
          public static void addMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void viewMembers(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editMembers(){
           MemberForm member=new MemberForm();
               member.getInput();
               member.setVisible(true);
          public static void deleteMembers(){
           MemberForm member=new MemberForm();
               member.setVisible(true);
          public static void addRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void viewRentals(){
           DatabaseTest tt=new DatabaseTest();
               tt.setVisible(true);
          public static void editRentals(){
           RentalForm rental=new RentalForm();
               rental.getInput();
               rental.setVisible(true);
          public static void deleteRentals(){
           RentalForm rental=new RentalForm();
               rental.setVisible(true);
        public static void hearSongs(){
           MediaTest media=new MediaTest(); 
        public static void viewMovies(){
           MediaTest media=new MediaTest();   
        public static void viewGames(){
           MediaTest media=new MediaTest();   
    }//end class Demo
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.net.URL;
    import javax.media.CannotRealizeException;
    import javax.media.Manager;
    import javax.media.NoPlayerException;
    import javax.media.Player;
    import javax.swing.JPanel;
    public class MediaPanel extends JPanel{
       public MediaPanel(URL mediaURL){
          setLayout(new BorderLayout());//use a BorderLayout
          //Use lightweight components for Swing compatibility
          Manager.setHint(Manager.LIGHTWEIGHT_RENDERER,true);
          try{
             //create a player to play the media specified in the URL
             Player mediaPlayer=Manager.createRealizedPlayer(mediaURL);
             //get the components for the video and the playback controls
             Component video=mediaPlayer.getVisualComponent();
             Component controls=mediaPlayer.getControlPanelComponent();
             if(video!=null)
                add(video,BorderLayout.CENTER);//add video component
             if(controls!=null)
                add(controls,BorderLayout.SOUTH);//add controls
             mediaPlayer.start();//start playing the media clip
          }//end try
          catch(NoPlayerException noPlayerException){
             System.err.println("No media player found");
          }//end catch
          catch(CannotRealizeException cannotRealizeException){
             System.err.println("Could not realize media player");
          }//end catch
          catch(IOException iOException){
             System.err.println("Error reading from the source");
          }//end catch
       }//end MediaPanel constructor
    }//end class MediaPanel
    import java.io.File;
    import java.net.MalformedURLException;
    import java.net.URL;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    public class MediaTest{
       //launch the application
       public static void main(String args[]){
          //create a file chooser
          JFileChooser fileChooser=new JFileChooser();
          //show open file dialog
          int result=fileChooser.showOpenDialog(null);
          if(result==JFileChooser.APPROVE_OPTION){//user chose a file
             URL mediaURL=null;
             try{
                //get the file as URL
                mediaURL=fileChooser.getSelectedFile().toURL();
             }//end try
             catch(MalformedURLException malformedURLException){
                System.err.println("Could not create URL for the file");
             }//end catch
             if(mediaURL!=null) {//only display if there is a valid URL
                JFrame mediaTest=new JFrame("Media Tester");
                mediaTest.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                MediaPanel mediaPanel=new MediaPanel(mediaURL);
                mediaTest.add(mediaPanel);
                mediaTest.setSize(300,300);
                mediaTest.setVisible(true);
             }//end inner if
          }//end outer if
       }//end main
    }//end class MediaTest

  • Problems compiling at91 driver for samutils-0.2.1

    Hello All!
    I'm having problems compiling the usb driver for sam7 tools. I am receiving the following errors:
    make -C /lib/modules/2.6.39-ARCH/build SUBDIRS=/home/bailey/Source/sam7utils-0.2.1/driver modules
    make[1]: Entering directory `/usr/src/linux-2.6.39-ARCH'
    CC [M] /home/bailey/Source/sam7utils-0.2.1/driver/at91.o
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_write_bulk_callbackâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:154:2: error: implicit declaration of function âusb_buffer_freeâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:140:19: warning: variable âdevâ set but not used [-Wunused-but-set-variable]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_writeâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:178:2: error: implicit declaration of function âusb_buffer_allocâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:178:6: warning: assignment makes pointer from integer without a cast [enabled by default]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:192:6: warning: passing argument 6 of âusb_fill_bulk_urbâ from incompatible pointer type [enabled by default]
    include/linux/usb.h:1266:20: note: expected âusb_complete_tâ but argument is of type âvoid (*)(struct urb *, struct pt_regs *)â
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_probeâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:305:2: error: implicit declaration of function âinfoâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c: In function âat91_disconnectâ:
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:320:2: error: implicit declaration of function âlock_kernelâ [-Werror=implicit-function-declaration]
    /home/bailey/Source/sam7utils-0.2.1/driver/at91.c:328:2: error: implicit declaration of function âunlock_kernelâ [-Werror=implicit-function-declaration]
    cc1: some warnings being treated as errors
    make[2]: *** [/home/bailey/Source/sam7utils-0.2.1/driver/at91.o] Error 1
    make[1]: *** [_module_/home/bailey/Source/sam7utils-0.2.1/driver] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    make: *** [default] Error 2
    output of uname -a
    2.6.39-ARCH #1 SMP PREEMPT Mon Jun 27 22:01:13 CEST 2011 i686 Intel(R) Pentium(R) 4 CPU 1.50GHz GenuineIntel GNU/Linux
    I am running gcc 4.6.1-1 and have installed kernel26headers. If there is any info I'm missing plz let me know.
    Thanks for your help in advance

    Thank you for the reply, I noticed that the post below (its for Ubuntu) shows the gcc version to be 4.0.3
    [link]http://www.makingthings.com/documentati … -sam7utils[/link]
    I poked around the Makefile in /usr/src/linux-2.6.39 and got rid of "-Wall" and "-Wno-implicit-function-declaration"
    it compiled with the following warnings:
    make[1]: Entering directory `/usr/src/linux-2.6.39-ARCH'
    Building modules, stage 2.
    MODPOST 1 modules
    WARNING: "info" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "unlock_kernel" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "lock_kernel" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "usb_buffer_alloc" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    WARNING: "usb_buffer_free" [/home/bailey/Source/sam7utils-0.2.1/driver/at91.ko] undefined!
    CC /home/bailey/Source/sam7utils-0.2.1/driver/at91.mod.o
    LD [M] /home/bailey/Source/sam7utils-0.2.1/driver/at91.ko
    make[1]: Leaving directory `/usr/src/linux-2.6.39-ARCH'
    but when I tried to install, the output was
    insmod: error inserting 'at91.ko': -1 Unknown symbol in module
    Unfortunately, I tried grabbing the package from the AUR, but I ran into the same issues. Seems the only common factor in this process is gcc.
    Thanks for the help

  • Problems compiling with packages

    Hi,
    I wonder if anyone could help me.
    I have had problems compiling using a package. I have altered the classpath in autoexec.bat with:
    SET CLASSPATH=%classpath%;C:\jdk1.3.1_02\classes;.
    the package class files are stored in C:\jdk1.3.1_02\classes\helliker\id3
    and I have imported the class with:
    import helliker.id3.*;
    I am getting the following error:
    C:\My Documents\Uni work\mp3 project\test\Driver.java:1: package helliker.id3 does not exist
    import helliker.id3.*;
    ^
    Can anybody help?
    Thanks,
    Dave

    Perhaps the version of Windows you are using does not use autoexec.bat. For example, in NT and XP, you set Classpath using ControlPanel/System/Advanced/Environment Variables.
    Perhaps there is a typo in your Classpath, for example an extra space.
    On a command line, try this:
    javac -classpath C:\jdk1.3.1_02\classes C:\My Documents\Uni work\mp3 project\test\Driver.java
    If that works, then definitely Classpath is not set as you think it is.

  • [svn:osmf:] 11626: Added TestContentProtectable Trait's test to the 10. 0 build target (previously was protected via 10.1 compile target).

    Revision: 11626
    Author:   [email protected]
    Date:     2009-11-10 12:15:58 -0800 (Tue, 10 Nov 2009)
    Log Message:
    Added TestContentProtectable Trait's test to the 10.0 build target (previously was protected via 10.1 compile target).
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as

    Hi
    The issue "Unable to set the transaction attribute for method 'retrieveUserInfo(Login)' on EJB 'UserBean'. No matching method could be found." seems like a known issue.
    There is a workaround to update the build.xml of the ejb project, to avoid this issue. The bug number for the issue is
    CR302494
    You can create a support case at http://support.bea.com and refer to the CR (CR302494) and a support enginner can guide you through the workaround.
    Vimala-

  • MSI 6712 (KT4V) : list of ATI AGP HD4* cards compatible (no VIA chipset problems

    I still have an MSI-6712 MB with an AGP ATI 9600XT but need to get a more powerfull card (no money for new MB and all that comes with this).  I had started looking at some AGP ATI HD4* cards but the first one I saw mentioned possible problems with VIA chipsets (dont recall which card). So this made me wonder.  I already have a problem where I cannot go higher the ATI Drivers 8.4 (problems with VIA chipsets) but maybe with a new card, I could pass over that problem. 
    There is no point in looking for AGP Nvidia cards as the strongest I could find was about the same as my ATI 9600XT. SO I am stuck with going for ATI. Also, having Linux partitions, the ATI drivers no longer support less then an HD* card (so does XP).
    I want to know which AGP ATI HD* cards have NO problems AT ALL with an MSI-6712 and all its VIA chipsets.
    I am just tring to get better graphics with my games (some stopped working) at the lowest cost possible until I have a better salary (probably next year).

    X1950 is a powerful AGP card. Still stands ground well. A little power hungry though, and mind you get one with a quiet fan - they can be a bit noisy. Don't know quite, but around 20 Amps on the PSU:s 12 volt line might do, perhaps a little more. Please have a look at the side of your PSU, especially if you are on a budget. - I'm always on a budget, but I'm a clerk sort of. 
    Haven't heard about the VIA comp. problems. Usually there are ways around every obstacle, or climb it for fun. 

  • E17 - problem compiling [SOLVED]

    HI,
    I'm using the easy_17.sh script to compile e17 on a fresh install of Arch.  For almost every program I getthe following;
    EASY_E17 CMD: ./autogen.sh --prefix=/opt/e17 
    Running aclocal...
    Running autoheader...
    Running libtoolize...
    Running automake...
    Running autoconf...
    configure.in:65: error: possibly undefined macro: AC_DEFINE
          If this token and others are legitimate, please use m4_pattern_allow.
          See the Autoconf documentation.
    So far I haven't been able to come up with a fix. Does anyone have any ideas??
    TIA
    Last edited by MillTek (2008-01-20 18:39:04)

    MillTek wrote:
    I installed base but not devel. Is there a list of the devel software available anywhere?
    Thanks Skottish
    Sure, through pacman
    [ronald@Miranda ~]$ pacman -Sg base-devel
    base-devel
    abs autoconf automake bin86 bison csup diffutils ed fakeroot flex
    gcc libtool m4 make patch pkgconfig

  • [Solved]Via vn986 problem

    Hi
    Just installed Arch and i have got some questions;
    1. I have got a Via Vn986/P4M900 chipset and Via Chrome9 HC Igp graphic card in my laptop. Here is my lspci:
    00:00.0 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:00.1 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:00.2 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:00.3 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:00.4 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:00.5 PIC: VIA Technologies, Inc. P4M900 I/O APIC Interrupt Controller
    00:00.6 Host bridge: VIA Technologies, Inc. P4M900 Security Device
    00:00.7 Host bridge: VIA Technologies, Inc. P4M900 Host Bridge
    00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI Bridge
    00:02.0 PCI bridge: VIA Technologies, Inc. P4M900 PCI to PCI Bridge Controller (rev 80)
    00:03.0 PCI bridge: VIA Technologies, Inc. P4M900 PCI to PCI Bridge Controller (rev 80)
    00:0f.0 IDE interface: VIA Technologies, Inc. VT8237A SATA 2-Port Controller (rev 80)
    00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 07)
    00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev a0)
    00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev a0)
    00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev a0)
    00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev a0)
    00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
    00:11.0 ISA bridge: VIA Technologies, Inc. VT8237A PCI to ISA Bridge
    00:11.7 Host bridge: VIA Technologies, Inc. VT8251 Ultra VLINK Controller
    00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 7c)
    00:13.0 PCI bridge: VIA Technologies, Inc. VT8237A Host Bridge
    00:13.1 PCI bridge: VIA Technologies, Inc. VT8237A PCI to PCI Bridge
    01:00.0 VGA compatible controller: VIA Technologies, Inc. Chrome9 HC IGP (rev 01)
    05:01.0 Audio device: VIA Technologies, Inc. VIA High Definition Audio Controller (rev 10)
    06:04.0 FLASH memory: ENE Technology Inc ENE PCI Memory Stick Card Reader Controller
    06:04.1 SD Host controller: ENE Technology Inc ENE PCI SmartMedia / xD Card Reader Controller
    06:04.3 FLASH memory: ENE Technology Inc ENE PCI Secure Digital / MMC Card Reader Controller
    Everything is working perfect but only my graphic card is really bad. X starts only root account. When i want to start X with a user account when X opens after 2 seconds it's freeze. Using Vesa now. And here's my xorg.conf
    Section "ServerLayout"
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
    InputDevice "USB Mouse" "CorePointer"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "true"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
    FontPath "/usr/share/fonts/cyrillic"
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    # Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "keyboard"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "us"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "Serial Mouse"
    Driver "mouse"
    Option "Protocol" "Microsoft"
    Option "Device" "/dev/ttyS0"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mice"
    Option "SendCoreEvents" "true"
    Option "Protocol" "IMPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
    Identifier "Monitor0"
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    HorizSync 28.0 - 96.0 # Warning: This may fry old Monitors
    VertRefresh 50.0 - 75.0 # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync Interlace
    # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    # Additional modelines
    ModeLine "1800x1440" 230 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    ModeLine "1800x1440" 250 1800 1896 2088 2392 1440 1441 1444 1490 +HSync +VSync
    # Extended modelines with GTF timings
    # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
    ModeLine "640x480" 43.16 640 680 744 848 480 481 484 509 -HSync +Vsync
    # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
    ModeLine "768x576" 34.96 768 792 872 976 576 577 580 597 -HSync +Vsync
    # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
    ModeLine "768x576" 42.93 768 800 880 992 576 577 580 601 -HSync +Vsync
    # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
    ModeLine "768x576" 45.51 768 808 888 1008 576 577 580 602 -HSync +Vsync
    # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
    ModeLine "768x576" 51.84 768 808 888 1008 576 577 580 605 -HSync +Vsync
    # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
    ModeLine "768x576" 62.57 768 816 896 1024 576 577 580 611 -HSync +Vsync
    # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
    ModeLine "800x600" 68.18 800 848 936 1072 600 601 604 636 -HSync +Vsync
    # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
    ModeLine "1024x768" 113.31 1024 1096 1208 1392 768 769 772 814 -HSync +Vsync
    # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
    ModeLine "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 -HSync +Vsync
    # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
    ModeLine "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 -HSync +Vsync
    # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
    ModeLine "1152x864" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync
    # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
    ModeLine "1280x960" 124.54 1280 1368 1504 1728 960 961 964 1001 -HSync +Vsync
    # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
    ModeLine "1280x960" 129.86 1280 1368 1504 1728 960 961 964 1002 -HSync +Vsync
    # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
    ModeLine "1280x960" 178.99 1280 1376 1520 1760 960 961 964 1017 -HSync +Vsync
    # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
    ModeLine "1280x1024" 190.96 1280 1376 1520 1760 1024 1025 1028 1085 -HSync +Vsync
    # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
    ModeLine "1400x1050" 122.61 1400 1488 1640 1880 1050 1051 1054 1087 -HSync +Vsync
    # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
    ModeLine "1400x1050" 149.34 1400 1496 1648 1896 1050 1051 1054 1094 -HSync +Vsync
    # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
    ModeLine "1400x1050" 155.85 1400 1496 1648 1896 1050 1051 1054 1096 -HSync +Vsync
    # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
    ModeLine "1400x1050" 179.26 1400 1504 1656 1912 1050 1051 1054 1103 -HSync +Vsync
    # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
    ModeLine "1400x1050" 214.39 1400 1512 1664 1928 1050 1051 1054 1112 -HSync +Vsync
    # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
    ModeLine "1600x1200" 280.64 1600 1728 1904 2208 1200 1201 1204 1271 -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
    Identifier "Card0"
    Driver "vesa"
    VendorName "All"
    BoardName "All"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultColorDepth 16
    SubSection "Display"
    Depth 1
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    Mode 0666
    EndSection
    2. I want to install openchrome drivers from openchrome.org but it's gives an error like this:
    bash-3.2# ./autogen.sh --prefix=/usr
    autoreconf: Entering directory `.'
    autoreconf: configure.ac: not using Gettext
    autoreconf: running: aclocal
    autoreconf: configure.ac: tracing
    autoreconf: running: libtoolize --copy
    libtoolize: `config.guess' exists: use `--force' to overwrite
    libtoolize: `config.sub' exists: use `--force' to overwrite
    libtoolize: `ltmain.sh' exists: use `--force' to overwrite
    autoreconf: running: /usr/bin/autoconf
    autoreconf: running: /usr/bin/autoheader
    autoreconf: running: automake --add-missing --copy --no-force
    autoreconf: Leaving directory `.'
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... no
    checking whether to enable maintainer-specific portions of Makefiles... yes
    checking build system type... i686-pc-linux-gnu
    checking host system type... i686-pc-linux-gnu
    checking for style of include used by make... none
    checking for gcc... gcc
    checking for C compiler default output file name... a.out
    checking whether the C compiler works... yes
    checking whether we are cross compiling... no
    checking for suffix of executables...
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... none
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for ld used by gcc... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for /usr/bin/ld option to reload object files... -r
    checking for BSD-compatible nm... /usr/bin/nm -B
    checking whether ln -s works... yes
    checking how to recognize dependent libraries... pass_all
    checking how to run the C preprocessor... gcc -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking dlfcn.h usability... yes
    checking dlfcn.h presence... yes
    checking for dlfcn.h... yes
    checking for g++... g++
    checking whether we are using the GNU C++ compiler... yes
    checking whether g++ accepts -g... yes
    checking dependency style of g++... none
    checking how to run the C++ preprocessor... g++ -E
    checking for g77... no
    checking for xlf... no
    checking for f77... no
    checking for frt... no
    checking for pgf77... no
    checking for cf77... no
    checking for fort77... no
    checking for fl32... no
    checking for af77... no
    checking for xlf90... no
    checking for f90... no
    checking for pgf90... no
    checking for pghpf... no
    checking for epcf90... no
    checking for gfortran... gfortran
    checking whether we are using the GNU Fortran 77 compiler... yes
    checking whether gfortran accepts -g... yes
    checking the maximum length of command line arguments... 98304
    checking command to parse /usr/bin/nm -B output from gcc object... ok
    checking for objdir... .libs
    checking for ar... ar
    checking for ranlib... ranlib
    checking for strip... strip
    checking if gcc supports -fno-rtti -fno-exceptions... no
    checking for gcc option to produce PIC... -fPIC
    checking if gcc PIC flag -fPIC works... yes
    checking if gcc static flag -static works... yes
    checking if gcc supports -c -o file.o... yes
    checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    configure: creating libtool
    appending configuration tag "CXX" to libtool
    checking for ld used by g++... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking for g++ option to produce PIC... -fPIC
    checking if g++ PIC flag -fPIC works... yes
    checking if g++ static flag -static works... yes
    checking if g++ supports -c -o file.o... yes
    checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    (cached) (cached) checking how to hardcode library paths into programs... immediate
    appending configuration tag "F77" to libtool
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... no
    checking for gfortran option to produce PIC... -fPIC
    checking if gfortran PIC flag -fPIC works... yes
    checking if gfortran static flag -static works... yes
    checking if gfortran supports -c -o file.o... yes
    checking whether the gfortran linker (/usr/bin/ld) supports shared libraries... yes
    checking dynamic linker characteristics... GNU/Linux ld.so
    (cached) (cached) checking how to hardcode library paths into programs... immediate
    checking for gcc... (cached) gcc
    checking whether we are using the GNU C compiler... (cached) yes
    checking whether gcc accepts -g... (cached) yes
    checking for gcc option to accept ISO C89... (cached) none needed
    checking dependency style of gcc... (cached) none
    ./configure: line 20581: pkg-config: command not found
    checking if RANDR is defined... no
    ./configure: line 20639: pkg-config: command not found
    checking if RENDER is defined... no
    ./configure: line 20697: pkg-config: command not found
    checking if XV is defined... no
    ./configure: line 20755: pkg-config: command not found
    checking if XF86DRI is defined... no
    ./configure: line 20813: pkg-config: command not found
    checking if DPMSExtension is defined... no
    ./configure: line 20871: syntax error near unexpected token `XORG,'
    ./configure: line 20871: `PKG_CHECK_MODULES(XORG, xorg-server xproto xvmc fontsproto libdrm $REQUIRED_MODULES)'
    Waiting your answers...
    Last edited by eren (2008-03-10 20:35:37)

    thanks again bro
    i have a black screen
    here is my xorg log
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.4.0.90
    Release Date: 5 September 2007
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.24-ARCH i686
    Current Operating System: Linux dragonball 2.6.24-ARCH #1 SMP PREEMPT Wed Feb 27 01:15:32 CET 2008 i686
    Build Date: 03 February 2008 02:54:48PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Mar 9 17:47:07 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Xorg Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "LCD-Panel"
    (**) | |-->Device "VN896"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "USB Mouse"
    (**) Option "AllowMouseOpenFail" "true"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/PEX" does not exist.
    Entry deleted from font path.
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/cyrillic".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/cyrillic").
    (WW) The directory "/usr/share/fonts/ttf/western" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/ttf/decoratives" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/openoffice" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/truetype/ttf-bitstream-vera" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/latex-ttf-fonts" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/CID" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/defoma/TrueType" does not exist.
    Entry deleted from font path.
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc:unscaled,
    /usr/share/fonts/misc,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/75dpi,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/100dpi,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (**) Extension "RENDER" is enabled
    (WW) Ignoring unrecognized extension "RenderAccel"
    (WW) Ignoring unrecognized extension "backingstore"
    (WW) Ignoring unrecognized extension "AllowGLXWithComposite"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d65c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 2.0
    X.Org XInput driver : 2.0
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 1106,0364 card 1106,0364 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:00:1: chip 1106,1364 card 0000,0000 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:00:2: chip 1106,2364 card 0000,0000 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:00:3: chip 1106,3364 card 0000,0000 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:00:4: chip 1106,4364 card 0000,0000 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:00:5: chip 1106,5364 card 0000,0000 rev 00 class 08,00,20 hdr 80
    (II) PCI: 00:00:6: chip 1106,6364 card 0000,0000 rev 00 class 06,00,00 hdr 80
    (II) PCI: 00:00:7: chip 1106,7364 card 0000,0000 rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 1106,b198 card 0000,0000 rev 00 class 06,04,00 hdr 01
    (II) PCI: 00:02:0: chip 1106,a364 card 0000,0000 rev 80 class 06,04,00 hdr 01
    (II) PCI: 00:03:0: chip 1106,c364 card 0000,0000 rev 80 class 06,04,00 hdr 81
    (II) PCI: 00:0f:0: chip 1106,0591 card 1558,0669 rev 80 class 01,01,8f hdr 80
    (II) PCI: 00:0f:1: chip 1106,0571 card 1558,0669 rev 07 class 01,01,8a hdr 00
    (II) PCI: 00:10:0: chip 1106,3038 card 1558,0669 rev a0 class 0c,03,00 hdr 80
    (II) PCI: 00:10:1: chip 1106,3038 card 1558,0669 rev a0 class 0c,03,00 hdr 80
    (II) PCI: 00:10:2: chip 1106,3038 card 1558,0669 rev a0 class 0c,03,00 hdr 80
    (II) PCI: 00:10:3: chip 1106,3038 card 1558,0669 rev a0 class 0c,03,00 hdr 80
    (II) PCI: 00:10:4: chip 1106,3104 card 1558,0669 rev 86 class 0c,03,20 hdr 80
    (II) PCI: 00:11:0: chip 1106,3337 card 1558,0669 rev 00 class 06,01,00 hdr 80
    (II) PCI: 00:11:7: chip 1106,287e card 1106,337e rev 00 class 06,00,00 hdr 00
    (II) PCI: 00:12:0: chip 1106,3065 card 1558,0669 rev 7c class 02,00,00 hdr 00
    (II) PCI: 00:13:0: chip 1106,337b card 0000,0000 rev 00 class 06,04,00 hdr 81
    (II) PCI: 00:13:1: chip 1106,337a card 0000,0000 rev 00 class 06,04,01 hdr 01
    (II) PCI: 01:00:0: chip 1106,3371 card 1558,0669 rev 01 class 03,00,00 hdr 00
    (II) PCI: 05:01:0: chip 1106,3288 card 1106,3288 rev 10 class 04,03,00 hdr 00
    (II) PCI: 06:04:0: chip 1524,0730 card 1558,0669 rev 00 class 05,01,00 hdr 80
    (II) PCI: 06:04:1: chip 1524,0750 card 1558,0669 rev 00 class 08,05,01 hdr 80
    (II) PCI: 06:04:3: chip 1524,0751 card 1558,0669 rev 00 class 05,01,00 hdr 80
    (II) PCI: End of PCI scan
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,6), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:2:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:3:0), (0,3,4), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 3 I/O range:
    [0] -1 0 0x00005000 - 0x000050ff (0x100) IX[b]
    [1] -1 0 0x00005400 - 0x000054ff (0x100) IX[b]
    [2] -1 0 0x00005800 - 0x000058ff (0x100) IX[b]
    [3] -1 0 0x00005c00 - 0x00005cff (0x100) IX[b]
    [4] -1 0 0x00006000 - 0x000060ff (0x100) IX[b]
    [5] -1 0 0x00006400 - 0x000064ff (0x100) IX[b]
    [6] -1 0 0x00006800 - 0x000068ff (0x100) IX[b]
    [7] -1 0 0x00006c00 - 0x00006cff (0x100) IX[b]
    (II) Bus 3 non-prefetchable memory range:
    [0] -1 0 0xc8800000 - 0xc8ffffff (0x800000) MX[b]
    (II) Bus 3 prefetchable memory range:
    [0] -1 0 0xc8000000 - 0xc87fffff (0x800000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:17:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (II) PCI-to-PCI bridge:
    (II) Bus 5: bridge is at (0:19:0), (0,5,5), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 5 non-prefetchable memory range:
    [0] -1 0 0xca000000 - 0xca0fffff (0x100000) MX[b]
    (II) Subtractive PCI-to-PCI bridge:
    (II) Bus 6: bridge is at (0:19:1), (0,6,6), BCTRL: 0x0004 (VGA_EN is cleared)
    (II) Bus 6 non-prefetchable memory range:
    [0] -1 0 0xca100000 - 0xca1fffff (0x100000) MX[b]
    (--) PCI:*(1:0:0) unknown vendor (0x1106) unknown chipset (0x3371) rev 1, Mem @ 0xa0000000/29, 0xc9000000/24
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) PCI Memory resource overlap reduced 0xc0000000 from 0xc7ffffff to 0xbfffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [1] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [2] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [3] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [4] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [5] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [6] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [7] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [8] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [9] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [10] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [11] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [12] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [13] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [14] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [15] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [16] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [17] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [18] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [19] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    (II) Inactive PCI resource ranges:
    [0] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [1] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [2] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [3] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [4] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [5] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [6] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [7] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [8] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [9] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [10] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [11] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [12] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [13] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [14] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [15] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [16] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [17] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [18] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [19] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [5] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [6] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [7] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [8] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [9] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [10] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [12] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [16] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [17] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [18] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [19] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [20] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [21] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [22] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [23] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [24] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [25] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [26] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.4.0.90, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.1.0
    ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "type1"
    (WW) Warning, couldn't open module type1
    (II) UnloadModule: "type1"
    (EE) Failed to load module "type1" (module does not exist, 0)
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "openchrome"
    (II) Loading /usr/lib/xorg/modules/drivers//openchrome_drv.so
    (II) Module openchrome: vendor="http://openchrome.org/"
    compiled for 1.4.0.90, module version = 0.2.901
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input//kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 1.4.0, module version = 1.2.3
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.0
    (II) OPENCHROME: Driver for VIA Chrome chipsets: CLE266, KM400/KN400,
    K8M800/K8N800, PM800/PM880/CN400, P4M800Pro/VN800/CN700,
    K8M890/K8N890, P4M900/VN896/CN896, CX700/VX700, P4M890
    (II) Primary Device is: PCI 01:00:0
    (--) Chipset P4M900/VN896/CN896 found
    (!!) VIA Technologies does not support this driver in any way.
    (!!) For support, please refer to http://openchrome.org/.
    (!!) (development build, at svn revision 532)
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [5] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [6] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [7] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [8] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [9] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [10] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [12] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [15] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [16] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [17] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [18] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [19] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [20] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [21] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [22] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [23] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [24] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [25] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [26] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [5] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [6] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [7] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [8] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [9] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [10] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [11] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [12] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [18] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [19] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [20] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [21] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [22] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [23] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [24] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [25] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [26] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [27] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [28] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [29] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    [30] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [31] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) CHROME(0): VIAPreInit
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 0.1.0
    ABI class: X.Org Video Driver, version 2.0
    (II) CHROME(0): VIAGetRec
    (**) CHROME(0): Depth 24, (--) framebuffer bpp 32
    (==) CHROME(0): RGB weight 888
    (==) CHROME(0): Default visual is TrueColor
    (--) CHROME(0): Chipset: P4M900/VN896/CN896
    (--) CHROME(0): Chipset revision: 0
    (--) CHROME(0): Probed amount of VideoRAM = 262144 kB
    (II) CHROME(0): Setting up default chipset options.
    (II) CHROME(0): VIASetupDefaultOptions
    (II) CHROME(0): Reading config file...
    (**) CHROME(0): Option "SWCursor"
    (**) CHROME(0): Option "ActiveDevice" "CRT,LCD"
    (II) CHROME(0): Starting to parse config file options...
    (==) CHROME(0): Shadow framebuffer is disabled.
    (==) CHROME(0): Hardware acceleration is enabled.
    (==) CHROME(0): Using XAA acceleration architecture.
    (**) CHROME(0): Using software cursors.
    (==) CHROME(0): GPU virtual command queue will be enabled.
    (==) CHROME(0): DRI IRQ will be enabled if DRI is enabled.
    (==) CHROME(0): AGP DMA will be disabled if DRI is enabled.
    (==) CHROME(0): PCI DMA will not be used for XV image transfer if DRI is enabled.
    (==) CHROME(0): Will not enable VBE modes.
    (==) CHROME(0): VBE VGA register save & restore will not be used
    if VBE modes are enabled.
    (==) CHROME(0): Xv Bandwidth check is enabled.
    (==) CHROME(0): Will not impose a limit on video RAM reserved for DRI.
    (==) CHROME(0): Will try to allocate 32768 kB of AGP memory.
    (==) CHROME(0): Digital output bus width is 12 bits.
    (==) CHROME(0): DVI Center is disabled.
    (==) CHROME(0): Panel size is not selected from config file.
    (==) CHROME(0): Panel will not be forced.
    (==) CHROME(0): TV dotCrawl is disabled.
    (==) CHROME(0): TV deflicker is set to 0.
    (==) CHROME(0): No default TV type is set.
    (==) CHROME(0): No default TV output signal type is set.
    (II) CHROME(0): VIAMapMMIO
    (--) CHROME(0): mapping MMIO @ 0xc9000000 with size 0x9000
    (--) CHROME(0): mapping BitBlt MMIO @ 0xc9200000 with size 0x20000
    (II) CHROME(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) CHROME(0): Will not print VGA registers.
    (==) CHROME(0): Will not scan I2C buses.
    (II) CHROME(0): ...Finished parsing config file options.
    (EE) CHROME(0): Unknown Card-Ids (3371|1558| 669); please report to [email protected]
    (II) CHROME(0): Detected MemClk 8
    (II) CHROME(0): ViaGetMemoryBandwidth
    (II) CHROME(0): Detected TV standard: PAL.
    (==) CHROME(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"(II) Module "i2c" already built-in
    (II) CHROME(0): ViaI2CInit
    (II) CHROME(0): ViaI2CBus1Init
    (II) CHROME(0): I2C bus "I2C bus 1" initialized.
    (II) CHROME(0): ViaI2cBus2Init
    (II) CHROME(0): I2C bus "I2C bus 2" initialized.
    (II) CHROME(0): ViaI2CBus3Init
    (II) CHROME(0): I2C bus "I2C bus 3" initialized.
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) CHROME(0): I2C device "I2C bus 1:ddc2" registered at address 0xA0.
    (II) CHROME(0): I2C device "I2C bus 1:ddc2" removed.
    (II) CHROME(0): ViaOutputsDetect
    (II) CHROME(0): VIATVDetect
    (II) CHROME(0): ViaOutputsSelect
    (II) CHROME(0): ViaOutputsSelect: X Configuration: 0x03
    (II) CHROME(0): ViaOutputsSelect: BIOS Initialised register: 0x07
    (WW) CHROME(0): Unable to activate panel: no panel is present.
    (II) CHROME(0): ViaOutputsSelect: CRT.
    (II) CHROME(0): ViaModesAttach
    (II) CHROME(0): LCD-Panel: Using default hsync range of 31.50-37.90 kHz
    (II) CHROME(0): LCD-Panel: Using default vrefresh range of 50.00-70.00 Hz
    (II) CHROME(0): Clock range: 20.00 to 230.00 MHz
    (II) CHROME(0): ViaValidMode: Validating 640x350 (31500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "640x350" (vrefresh out of range)
    (II) CHROME(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 640x400 (31500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "640x400" (vrefresh out of range)
    (II) CHROME(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 720x400 (35500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "720x400" (vrefresh out of range)
    (II) CHROME(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 640x480 (25175)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 640x480 (31500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "640x480" (vrefresh out of range)
    (II) CHROME(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 640x480 (31500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "640x480" (vrefresh out of range)
    (II) CHROME(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 640x480 (36000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "640x480" (hsync out of range)
    (II) CHROME(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (36000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (40000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (50000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "800x600" (hsync out of range)
    (II) CHROME(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (49500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "800x600" (hsync out of range)
    (II) CHROME(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (56300)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "800x600" (hsync out of range)
    (II) CHROME(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1024x768 (44900)
    (II) CHROME(0): Not using default mode "1024x768" (interlace mode not supported)
    (II) CHROME(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1024x768 (65000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1024x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1024x768 (75000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1024x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1024x768 (78750)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1024x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1024x768 (94500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1024x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (108000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x960 (108000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x960" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x960 (148500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x960" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x480" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x1024 (108000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x1024" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x1024 (135000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x1024" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x1024 (157500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x1024" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x512" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1200 (162000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1200 (175500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1200 (189000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1200 (202500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1200 (229500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1792x1344 (204800)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1792x1344" (hsync out of range)
    (II) CHROME(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1792x1344" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "896x672" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1856x1392 (218300)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1856x1392" (hsync out of range)
    (II) CHROME(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1856x1392" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "928x696" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 832x624 (57284)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "832x624" (hsync out of range)
    (II) CHROME(0): Not using default mode "416x312" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x768 (64995)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (81620)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (96770)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (104990)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (119650)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (121500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1152x864 (143470)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1152x864" (hsync out of range)
    (II) CHROME(0): Not using default mode "576x432" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x720 (74480)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x720" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x360" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x720 (89040)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x720" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x360" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x720 (95650)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x720" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x360" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x720 (110010)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x720" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x360" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x800 (83460)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x800" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x800 (98890)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x800" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x800 (107210)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x800" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x800 (123380)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x800" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x400" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x768 (80140)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x768 (94980)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x768 (102980)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1280x768 (118530)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1280x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "640x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1360x768 (72000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1360x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "680x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1360x768 (84750)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1360x768" (hsync out of range)
    (II) CHROME(0): Not using default mode "680x384" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (122000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1400x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (145060)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1400x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (151000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1400x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (155800)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): CrtcHSyncEnd out of range.
    (II) CHROME(0): Not using default mode "1400x1050" (horizontal sync too wide)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (179260)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1400x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1400x1050 (184000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1400x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "700x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1440x900 (106500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1440x900" (hsync out of range)
    (II) CHROME(0): Not using default mode "720x450" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1600x1024 (103125)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1600x1024" (hsync out of range)
    (II) CHROME(0): Not using default mode "800x512" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1680x1050 (119000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1680x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1680x1050 (146250)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1680x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1680x1050 (174000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1680x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1680x1050 (187000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1680x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1680x1050 (214750)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1680x1050" (hsync out of range)
    (II) CHROME(0): Not using default mode "840x525" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1080 (138500)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1080" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1080 (173000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1080" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1080 (204250)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1080" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1080 (220750)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1080" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x540" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1200 (154000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1200 (193160)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1200 (228020)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): ViaValidMode: Validating 1920x1200 (230000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): Not using default mode "1920x1200" (hsync out of range)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1200" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1200" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "960x720" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "2560x1600" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using default mode "1280x800" (bad mode clock/interlace/doublescan)
    (II) CHROME(0): Not using mode "1280x800" (no mode of this name)
    (II) CHROME(0): Not using mode "1024x768" (no mode of this name)
    (II) CHROME(0): ViaValidMode: Validating 800x600 (40000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): ViaValidMode: Validating 640x480 (25175)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (II) CHROME(0): ViaValidMode: Validating 800x600 (36000)
    (II) CHROME(0): ViaModePrimaryVGAValid
    (--) CHROME(0): Virtual size is 800x600 (pitch 800)
    (**) CHROME(0): *Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
    (II) CHROME(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    (**) CHROME(0): *Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 59.9 Hz
    (II) CHROME(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    (**) CHROME(0): Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
    (II) CHROME(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    (==) CHROME(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.2.0
    ABI class: X.Org Video Driver, version 2.0
    (II) CHROME(0): VIAUnmapMem
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xc9000000 - 0xc9ffffff (0x1000000) MS[b]
    [1] 0 0 0xa0000000 - 0xbfffffff (0x20000000) MS[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xca100100 - 0xca1001ff (0x100) MX[b]
    [7] -1 0 0xca100000 - 0xca1000ff (0x100) MX[b]
    [8] -1 0 0xca100200 - 0xca10027f (0x80) MX[b]
    [9] -1 0 0xca000000 - 0xca003fff (0x4000) MX[b]
    [10] -1 0 0xca400400 - 0xca4004ff (0x100) MX[b]
    [11] -1 0 0xca400000 - 0xca4000ff (0x100) MX[b]
    [12] -1 0 0xc9000000 - 0xc9ffffff (0x1000000) MX[b](B)
    [13] -1 0 0xa0000000 - 0xbfffffff (0x20000000) MX[b](B)
    [14] -1 0 0xc0000000 - 0xbfffffff (0x0) MX[b]O
    [15] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [16] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [17] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [20] -1 0 0x00004800 - 0x000048ff (0x100) IX[b]
    [21] -1 0 0x00004c60 - 0x00004c7f (0x20) IX[b]
    [22] -1 0 0x00004c40 - 0x00004c5f (0x20) IX[b]
    [23] -1 0 0x00004c20 - 0x00004c3f (0x20) IX[b]
    [24] -1 0 0x00004c00 - 0x00004c1f (0x20) IX[b]
    [25] -1 0 0x00004c90 - 0x00004c9f (0x10) IX[b]
    [26] -1 0 0x00004400 - 0x000044ff (0x100) IX[b]
    [27] -1 0 0x00004c80 - 0x00004c8f (0x10) IX[b]
    [28] -1 0 0x00004ca0 - 0x00004ca3 (0x4) IX[b]
    [29] -1 0 0x00004ca8 - 0x00004caf (0x8) IX[b]
    [30] -1 0 0x00004ca4 - 0x00004ca7 (0x4) IX[b]
    [31] -1 0 0x00004cb0 - 0x00004cb7 (0x8) IX[b]
    [32] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [33] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) CHROME(0): VIAScreenInit
    (II) CHROME(0): VIAMapFB
    (--) CHROME(0): mapping framebuffer @ 0xa0000000 with size 0x10000000
    (==) CHROME(0): Write-combining range (0xa0000000,0x10000000)
    (--) CHROME(0): Frame buffer start: 0xa7a85000, free start: 0x1d4c00 end: 0x10000000
    (II) CHROME(0): VIAMapMMIO
    (--) CHROME(0): mapping MMIO @ 0xc9000000 with size 0x9000
    (--) CHROME(0): mapping BitBlt MMIO @ 0xc9200000 with size 0x20000
    (II) CHROME(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (II) CHROME(0): VIASave
    (II) CHROME(0): Primary
    (II) CHROME(0): Crtc...
    (II) CHROME(0): TVSave...
    (II) CHROME(0): VIAWriteMode
    (II) CHROME(0): ViaModePrimary
    (II) CHROME(0): ViaModePrimaryVGA
    (II) CHROME(0): ViaModePrimaryVGA: Setting up 800x600
    (II) CHROME(0): CrtcHTotal: 0x420
    (II) CHROME(0): CrtcHDisplay: 0x320
    (II) CHROME(0): CrtcHBlankStart: 0x320
    (II) CHROME(0): CrtcHBlankEnd: 0x420
    (II) CHROME(0): CrtcHSyncStart: 0x348
    (II) CHROME(0): CrtcHSyncEnd: 0x3C8
    (II) CHROME(0): CrtcVTotal: 0x274
    (II) CHROME(0): CrtcVDisplay: 0x258
    (II) CHROME(0): CrtcVSyncStart: 0x259
    (II) CHROME(0): CrtcVSyncEnd: 0x25D
    (II) CHROME(0): CrtcVBlankStart: 0x258
    (II) CHROME(0): CrtcVBlankEnd: 0x274
    (II) CHROME(0): Offset: 0x190
    (II) CHROME(0): Fetch Count: 0x190
    (II) CHROME(0): ViaTVPower: Off.
    (II) CHROME(0): ViaSetPrimaryFIFO
    (II) CHROME(0): ViaSetPrimaryDotclock to 0x848c04
    (II) CHROME(0): ViaSetUseExternalClock
    (II) CHROME(0): VIAAdjustFrame
    (II) CHROME(0): VIAAdjustFrame
    (II) CHROME(0): - Blanked
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: Open failed
    drmOpenByBusid: Searching for BusID PCI:1:0:0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card1
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card2
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card3
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card4
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card5
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card6
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card7
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card8
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card9
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card10
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card11
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card12
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card13
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card14
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenByBusid: drmOpenMinor returns -19
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card1
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card2
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card3
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card4
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card5
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card6
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card7
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card8
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card9
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card10
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card11
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card12
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card13
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card14
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: open result is -1, (No such device)
    drmOpenDevice: Open failed
    (EE) [drm] drmOpen failed.
    (EE) CHROME(0): [dri] DRIScreenInit failed. Disabling DRI.
    (II) CHROME(0): - Visuals set up
    (II) CHROME(0): VIAInternalScreenInit
    (II) CHROME(0): - B & W
    (II) CHROME(0): Using 1800 lines for offscreen memory.
    (**) CHROME(0): Option "XaaNoOffscreenPixmaps" "true"
    (II) CHROME(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    8x8 mono pattern filled rectangles
    8x8 color pattern filled rectangles
    Solid Lines
    Dashed Lines
    Image Writes
    Setting up tile and stipple cache:
    32 128x128 slots
    13 256x256 slots
    32 8x8 color pattern slots
    (==) CHROME(0): Backing store disabled
    (II) CHROME(0): - Backing store set up
    (II) CHROME(0): - SW cursor set up
    (II) CHROME(0): - Def Color map set up
    (II) CHROME(0): VIALoadPalette
    (WW) CHROME(0): VIALoadPalette: Function not implemented for this chipset.
    (II) CHROME(0): - Palette loaded
    (**) Option "dpms"
    (**) CHROME(0): DPMS enabled
    (II) CHROME(0): - DPMS set up
    (II) CHROME(0): - Color maps etc. set up
    (II) CHROME(0): direct rendering disabled
    (II) CHROME(0): Benchmarking video copy. Less time is better.
    (--) CHROME(0): Timed libc YUV420 copy... 8127924. Throughput: 116.5 MiB/s.
    (--) CHROME(0): Timed kernel YUV420 copy... 8146584. Throughput: 116.2 MiB/s.
    (--) CHROME(0): Timed SSE YUV420 copy... 8117196. Throughput: 116.7 MiB/s.
    (--) CHROME(0): Timed MMX YUV420 copy... 8134608. Throughput: 116.4 MiB/s.
    (--) CHROME(0): Ditching 3DNow! YUV420 copy. Not supported by CPU.
    (--) CHROME(0): Timed MMX2 YUV420 copy... 8134128. Throughput: 116.4 MiB/s.
    Freed 7683200 (pool 1)
    (--) CHROME(0): Using SSE YUV42X copy for video.
    (WW) CHROME(0): [XvMC] XvMC is not supported on this chipset.
    (WW) CHROME(0): Option "DRI" is not used
    (II) CHROME(0): - Done
    (==) RandR enabled
    (II) Setting vga for screen 0.
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension XAccessControlExtension
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) AIGLX: Screen 0 is not DRI capable
    (II) Loading sub module "GLcore"
    (II) LoadModule: "GLcore"
    (II) Loading /usr/lib/xorg/modules/extensions//libGLcore.so
    (II) Module GLcore: vendor="X.Org Foundation"
    compiled for 1.4.0.90, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) GLX: Initialized MESA-PROXY GL provider for screen 0
    (**) Option "CoreKeyboard"
    (**) Keyboard0: always reports core events
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (WW) Option "XkbVariant" requires an string value
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (**) Option "Protocol" "IMPS/2"
    (**) USB Mouse: Device: "/dev/input/mice"
    (**) USB Mouse: Protocol: "IMPS/2"
    (**) Option "SendCoreEvents" "true"
    (**) Option "CorePointer"
    (**) USB Mouse: always reports core events
    (**) Option "Device" "/dev/input/mice"
    (**) Option "Buttons" "5"
    (==) USB Mouse: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5"
    (**) USB Mouse: ZAxisMapping: buttons 4 and 5
    (**) USB Mouse: Buttons: 9
    (**) USB Mouse: Sensitivity: 1
    (II) evaluating device (USB Mouse)
    (II) XINPUT: Adding extended input device "USB Mouse" (type: MOUSE)
    (II) evaluating device (Keyboard0)
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) USB Mouse: ps2EnableDataReporting: succeeded
    (II) CHROME(0): VIALoadPalette
    (WW) CHROME(0): VIALoadPalette: Function not implemented for this chipset.

Maybe you are looking for

  • Flash running very slow

    I'm running Flash CS 3 Professional (version 9) on a Mac G5 2ghz dual with 7gb of ram and it's sooooo slow. Switching from another program back to Flash takes quite a few seconds before Flash will respond. Are there any preferences that I can tweak t

  • Add another computer to a WRT 160N

    On Thursday I bought a new WRT 160N. I followed the instructions and I can connect my wife's laptop to the new wireless network with no problem. Managing the network, connecting to the internet wirelessly, etc. with my wife's computer is a snap. Tryi

  • Too many exception"ACCESS.ERROR: Authorization check"

    We found there are too many Exception "ACCESS.ERROR: Authorization check for caller assignment to J2EE security role" occur in our Portal System with a 10 seconds interval after  checking the defalutTrace file. Can anyone help us to resolve the probl

  • Uploading Data onto a buffer that outputs with a custom clock pulse

    Hello, I am currently trying to develop a program that will allow me to upload on or off values to a buffer, and then output these values based on a custom digital waveform I created.  Using a notepad file, I am able to create a digital waveform that

  • Can I change my name on iCloud email?

    I have iCloud email address that is my name before getting married. How can I change my name to show my new name or can I create another email address to use that name?