Problem  in out from for loop

Here i drew connect four board game which has 6 row and 7 columns . There is an additional row appear . How can i out from loop to not draw seven rows. ??
import java.awt.Dimension;
import javax.swing.JFrame;
public class TestNet extends JFrame {
    private DrawingNet drawingNet;
    public TestNet() {
        drawingNet = new DrawingNet();
        getContentPane().add(drawingNet);
    public static void main(String[] args) {
        TestNet testNet = new TestNet();
        testNet.setDefaultCloseOperation(TestNet.EXIT_ON_CLOSE);
        testNet.setSize(new Dimension(600, 300));
        testNet.setLocationRelativeTo(null);
        testNet.setVisible(true);
        testNet.setExtendedState(MAXIMIZED_BOTH);
import java.awt.Color;
import java.awt.Graphics;
import javax.swing.JPanel;
class DrawingNet extends JPanel {
    private int X_START = 100, Y_START = 100, DISTANCE = 0;
    private static final int ROW = 6, COL = 7;
  //  private final int[][] arrayNet;
    public DrawingNet() {
    //    arrayNet = new int[ROW][COL];
    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.BLACK);
        for (int c = 0; c < COL; c++) {
//            if (c ==7 ) {
//                break;
            for (int r = 0; r < ROW; r++) {
//                if (r == 5) {
//                    break;
                g.drawLine(X_START, Y_START + DISTANCE, X_START * COL, Y_START + DISTANCE);
                g.drawLine(X_START + DISTANCE, Y_START, X_START + DISTANCE, Y_START * ROW);
            DISTANCE += 100;
}Thanks

if you compile my code you will see board consist of 6 row and seven column but there is seven row under the board i want not draw this
how can i stop loop from drawing this row ??
i do like this but also it is appear:
    @Override
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        g.setColor(Color.BLACK);
        for (int c = 0; c < COL; c++) {  // col from 0 to 6  (7 columns)
            for (int r = 0; r < ROW; r++) {  // row from 0 to 5  (6 rows)
                g.drawLine(X_START, Y_START + DISTANCE, X_START * COL, Y_START + DISTANCE);
                g.drawLine(X_START + DISTANCE, Y_START, X_START + DISTANCE, Y_START * ROW);
                if (r == 6) {  // the  goal from this to not draw  the seven row
                    continue;
            DISTANCE += 100;
    }Many thanks .
Edited by: beshoyatefw on Mar 21, 2010 6:18 AM

Similar Messages

  • How to get out of for loop in eclipse debugging

    How to get out of for loop in eclipse debugging for java classes ?
    I am in a for loop in a code. i want to get out of it ...but how ?

    is changing the behaviour of a running class like that really going to be any use for debugging? what's the actual problem?

  • Display text in label from 'for loop'

    Hi
    I'm new to Java, in fact so new just started yesterday.
    I'm trying to display all the values from a for loop into a label control in my application.
    Problem is, its only displaying the last number. Can anyone please help.
    Thanks
    George
    --------------------------------------------Code----------------------------------------------
    int lottoNumbers1 = Integer.parseInt(txtLotteryNumbers1.getText());
            int lottoNumbers2 = Integer.parseInt(txtLotteryNumbers2.getText());
            int lottoNumbers3 = Integer.parseInt(txtLotteryNumbers3.getText());
            int lottoNumbers4 = Integer.parseInt(txtLotteryNumbers4.getText());
            int lottoNumbers5 = Integer.parseInt(txtLotteryNumbers5.getText());
            //int lottoNumbers6 = Integer.parseInt(txtLotteryNumbers6.getText());
            int arrUserInput[] = {lottoNumbers1, lottoNumbers2, lottoNumbers3, lottoNumbers4, lottoNumbers5};
            int arrRnd[] = new int[5];
            Random rnd = new Random();
            for (int i = 0; i < arrRnd.length; i++) {
                arrRnd[i] = rnd.nextInt(49);
            boolean isfound = false;
            for (int i = 0; i < arrUserInput.length; i++) {
                isfound = false;
                for (int j = 0; j < arrRnd.length; j++) {
                    if (arrUserInput[i] == arrRnd[j]) {
                        isfound = true;
                if (isfound) {
                    //System.out.println("Same Numbers again : " +arrUserInput[i]);
                    String numbers = Integer.toString(arrUserInput[i]);
                    int res = NumberCount.wordcount(numbers);
                    //System.out.println("Number of matches : " +res);
                    switch (res) {
                        case 1:
                            lblNumbersEntered.setText("You matched 1 number " + arrUserInput[i] + " and win nothing");
                            System.out.println("Number of matches : " +res);
                            break;
                        case 2:
                            lblNumbersEntered.setText("You matched 2 number " + arrUserInput[i] + " and win £2");
                            System.out.println("Number of matches : " +res);
                            break;
                        case 3:
                            lblNumbersEntered.setText("You matched 3 number " + arrUserInput[i] + " and win £10");
                            System.out.println("Number of matches : " +res);
                            break;
                        case 4:
                            lblNumbersEntered.setText("You matched 4 number " + arrUserInput[i] + " and win £50");
                            System.out.println("Number of matches : " +res);
                            break;
                        case 5:
                            lblNumbersEntered.setText("You matched 5 number " + arrUserInput[i] + " and £1000");
                            System.out.println("Number of matches : " +res);
                            break;
                        default:
                            lblNumbersEntered.setText("You have matched no numbers");
                            System.out.println("Number of matches : " +res);
                            break;

    If you want a complete history of each time you go through the loop, you have to construct the history:
    [code]
    myLabel.setText("This");
    MyLabel.setText(" is");
    myLabel.setText(" good");
    [/code]
    myLabel will contain only " good", since that is what myLabel was set to last, but if you want the history:
    [code]
    myLabel.setText("This");
    MyLabel.setText(myLabel.getText() + " is");
    myLabel.setText(myLabel.getText() + " good");
    [code]
    Should give you "This is good", as each time the contents of myLabel are retrieved and appended before myLabel is given the new set value.

  • Problem in executing cursor for loop

    hi all,
    I am facing following problem.
    We are using cron utility on unix to run pl/sql stored procedure.
    This procedure in turn calls separate procedures. However any one of the procedure does not end in pl/sql even though it has completed its intended processing.
    We are using cursor for loop for data processing and also using database link to fetch data from other instance.
    Can anyone help me on possible reasons for this problem

    The proc only needs a single 'open s_cursor for ...' statement where the query is a join between all the tables involved. You have obfuscated your query so much in the post that I can't construct it for you (your second select doesn't even join to the 's' table), but the point is that you don't need a cursor loop, just a single query.

  • Graph from For Loop

    hello,
    I have a problem with one of my applications I am developing.
    I calculate a timeSeries and I need to graph it on linechart. The timeSeries is calculated through an iteration of For Loop
    I have tried to write in an array, but it didn't work since I can only take one value.
    I tried to write the value in a datagrid but that didn't work either!
    not because it is impossible, but because I am an idiot
    http://alimsyed.com

    Hi Dimitris,
    Thanks for the post and I hope your well today.
    You can achieve this by using a reference of the graph from the main VI, pass it to the subVI vi and use a property node to update the graphs value. 
    I have attached an edit of your code to show this, labVIEW 8.6. 
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!
    Attachments:
    mainVI.vi ‏9 KB
    subVI.vi ‏13 KB

  • Systemd Boot Problem - Times out waiting for LVM partitions

    At first I had a problem in which the initramfs didn't map LVM partitions to /dev/vg0/lv, only /dev/mapper/vg0-lv. I changed /dev/vg0/root to /dev/mapper/vg0-root in bootloader configuration as a hacky workaround.
    Getting closer to a working system, systemd failed boot because my fstab entries are uuids, and for some reason, my LVM volumes aren't showing up in /dev/disk/by-*. My flash drive boot partition shows up in there though.
    I replaced the uuids with /dev/mapper/vg0-* and tried again. Now my boot fails with this:
    Oct 21 19:19:31 archserver systemd[1]: Job dev-mapper-vg0\x2dmedia.device/start timed out.
    Oct 21 19:19:31 archserver systemd[1]: Timed out waiting for device dev-mapper-vg0\x2dmedia.device.
    Oct 21 19:19:31 archserver systemd[1]: Dependency failed for /mnt/media.
    Oct 21 19:19:31 archserver systemd[1]: Dependency failed for Local File Systems.
    Boot log: http://sprunge.us/LEhG
    mkinitcpio.conf: http://sprunge.us/QEBK
    What should I do?

    This may be LVM's incompatibility with anything hotplug (it may not be, your issue sounds more obscure). You need to create your own, local lvm service file. I'll tell you how. This is /usr/lib/systemd/system/lvm.service:
    [Unit]
    Description=LVM activation
    DefaultDependencies=no
    Requires=systemd-udev-settle.service
    After=systemd-udev-settle.service
    Before=basic.target shutdown.target
    Conflicts=shutdown.target
    [Service]
    ExecStart=/sbin/vgchange --available y
    Type=oneshot
    TimeoutSec=0
    RemainAfterExit=yes
    [Install]
    WantedBy=basic.target
    Create /etc/systemd/system/lvm_local.service:
    [Unit]
    Description=LVM activation
    DefaultDependencies=no
    Requires=dev-something-something1.device
    After=dev-something-something1.device
    Requires=dev-something-something2.device
    After=dev-something-something2.device
    Before=basic.target shutdown.target
    Conflicts=shutdown.target
    [Service]
    ExecStart=/sbin/vgchange --available y
    Type=oneshot
    TimeoutSec=0
    RemainAfterExit=yes
    [Install]
    WantedBy=basic.target
    No, what to you put in those "something-something1" places above? For each LVM physical volume, run 'systemctl status /dev/disk/by-uuid/$UUID' where $UUID is the UUID of your physical volume. You'll get a status output showing the exact name of the correct .device unit. Then 'systemctl enable lvm_local.service'.
    This speeds up boot and makes sure lvm is properly initialized. After writing all this, I am unsure if this is at all related to your problem, as your volume group is activated in initramfs and the links should be set up by udev.

  • Is it possible possible to exist from FOR loop while executing

    Hi
    Like break in C, is it any method available in LabVIEW to exist from a FOR LOOP while executing.
    thanks in advance

    No. You have to use a while loop.

  • Pick up specific indices from for loop

    hi guys , 
    i have a for loop with N = 60 , i'm trying to make something when the index (i) reachs specific number , the indecies i'm interested in are
    1 ,5 , 9,13, 17, 22, 26, ,30,34,38,43,47,51,55,59
    the difference is 4 in some of them but it changes to 5 @ 22 and 43 and come back to 4 in between .
    can anybody help me pick up these indecies ?
    Solved!
    Go to Solution.

    Why would you need a mathematical formula?
    What is a "boolean variable"? In the context of LabVIEW, you need to explain in more detains what you mean )
    I would just do something similar to the following (The second loop will iterate 60 times):
    Note that the parts on the left will be folded into a single boolean array constant at compile time, so there is no overhead during execution.
    (You can also do it all in a single loop. try it. )
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    IrregularSelection.png ‏16 KB

  • Value out from unfinished loop

    Hi!
    I have a smaller problem. How do I pass out a boolean value from a whileloop
    when the loop is running?
    See attached file..

    Use a local variable !
    See your vi, back...
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        
    Attachments:
    huvud2.vi ‏27 KB

  • Problem logging out from xmonad

    Dear Everyone:
    I updated my system on monday 3/11, and since then have had the following strange behavior:  When I go to log out of my X session (by pressing super-shift-q, which sends the logout message through xmonad), my xdm login screen fails to appear as it should.  Instead, everything just seems to hang.  I have a blank screen, and hitting ctrl-alt-F2 (F3 or F4, etc. etc.) does not open a new terminal.
    I was too busy to deal with this last week, and so updated again today, hoping the problem would be fixed.  But the problem continues.
    I realize this is a vague post.  Could someone give me some guidance as to how I might go about diagnosing the problem.   (I thought of dmesg -- but of course I can't run it right after I've logged out when the problem seems to occur.)
    Thanks!
    -Stu

    Thanks for the response .nz.
    first of all, I've not been keeping good enough track of when this problem started relative to my updates to know where to look in my pacman logs.  However, I can be pretty detailed about everything else:
    Here is the current status of my system:
    1) I've uninstalled xdm entirely.
    2) I set the default target to multi-user (i.e. ran sudo systemctl enable multi-user.target)
    here is my .xinitrc:
    if [ -d /etc/X11/xinit/xinitrc.d]; then
    for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
    done
    unset f
    fi
    setxkbmap -option ctrl:swapcaps
    xrdb -merge .Xresources
    xsetroot -solid black
    exec xmonad
    and here is my xmonad.hs:
    import XMonad
    import XMonad.Hooks.ManageDocks -- imports stuff to keep bars/trays visible
    import XMonad.Util.Run(spawnPipe) -- imports spawnPipe through which we start xmobar
    import XMonad.Hooks.DynamicLog
    import System.IO
    main = do
    spawn "trayer --edge top --align right --SetDockType true --SetPartialStrut true --expand true --width 10 --height 12"
    spawn "dropboxd start"
    spawn "xmobar"
    xmonad $ defaultConfig
    { manageHook = manageDocks <+> myManageHook <+> manageHook defaultConfig
    , layoutHook = avoidStruts $ layoutHook defaultConfig
    , logHook = dynamicLogString defaultPP{ppCurrent = xmobarColor "blue" "gray", ppSep = "|", ppOrder = \(ws:_:t:_) -> [ws,t]} >>= xmonadPropLog
    , borderWidth = 5
    , terminal = "urxvt"
    , normalBorderColor = "#3399cc"
    , focusedBorderColor = "#33ff00"
    , modMask = mod4Mask
    , workspaces = ["1:shell","2:emacs","3:web","4:pdf","5:audio","6:draw","7","8"]
    myManageHook = composeAll
    [ className =? "Firefox" --> doShift "3:web"
    , className =? "URxvt" --> doShift "1:shell"
    , className =? "Emacs" --> doShift "2:emacs"
    , className =? "Audacious" --> doShift "5:audio"
    , className =? "Evince" --> doShift "4:pdf"
    , className =? "Inkscape" --> doShift "6:draw"
    Now, here is what I have done leading up to my current problem:
    1) started up, which resulted in me reaching the multiuser target, and thus a login prompt in a terminal
    2) logged in
    3) ran 'sudo echo "" > /var/log/Xorg.0.log' to make sure that everything that was going into the log file in the subsequent steps was from the coming session of X
    3) ran xinit.  This resulting in a fully working X session with xmonad acting exactly as I want it to
    4) hit super-shift-q (which is the key that is supposed to kill xmonad and the X server, and how I used to log out of my system when I was using xdm)
    The problem is what happens at that point:  The screen goes black, then I see a message on my screen that says "entering powersave mode".  At that point, the keyboard and mouse become unresponsive -- no pressing of keys seems to wake my machine up.  Ideally, I'd like this not to happen, and instead return to a login prompt after super-shift-q.
    my video card is AMD ATI RV530GL
    my video driver is xf86-video-ati
    Here is the Xorg.0.log resulting after I rebooted my machine back to the multi-user target:
    [ 1842.146]
    X.Org X Server 1.14.0
    Release Date: 2013-03-05
    [ 1842.152] X Protocol Version 11, Revision 0
    [ 1842.154] Build Operating System: Linux 3.8.2-1-ARCH i686
    [ 1842.157] Current Operating System: Linux rocdaddy 3.8.3-2-ARCH #1 SMP PREEMPT Sun Mar 17 13:38:16 CET 2013 i686
    [ 1842.157] Kernel command line: root=/dev/disk/by-uuid/d1ec8093-d3dc-4b9f-97c3-403c2ff83ea3 ro
    [ 1842.161] Build Date: 09 March 2013 11:46:22AM
    [ 1842.163]
    [ 1842.165] Current version of pixman: 0.28.2
    [ 1842.170] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1842.170] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1842.179] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 21 11:26:48 2013
    [ 1842.227] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1842.229] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 1842.369] (==) ServerLayout "Main"
    [ 1842.369] (**) |-->Screen "Screen0" (0)
    [ 1842.369] (**) | |-->Monitor "Monitor0"
    [ 1842.369] (**) | |-->Device "Card0"
    [ 1842.369] (**) |-->Screen "Screen1" (1)
    [ 1842.369] (**) | |-->Monitor "Monitor1"
    [ 1842.369] (**) | |-->Device "Card1"
    [ 1842.369] (**) Option "Xinerama" "true"
    [ 1842.369] (==) Automatically adding devices
    [ 1842.369] (==) Automatically enabling devices
    [ 1842.369] (==) Automatically adding GPU devices
    [ 1842.392] (**) Xinerama: enabled
    [ 1842.446] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1842.446] Entry deleted from font path.
    [ 1842.508] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1842.508] Entry deleted from font path.
    [ 1842.508] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1842.508] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/
    [ 1842.508] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 1842.508] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 1842.525] (II) Loader magic: 0x825b620
    [ 1842.525] (II) Module ABI versions:
    [ 1842.526] X.Org ANSI C Emulation: 0.4
    [ 1842.526] X.Org Video Driver: 14.1
    [ 1842.526] X.Org XInput driver : 19.1
    [ 1842.526] X.Org Server Extension : 7.0
    [ 1842.526] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1842.530] (--) PCI:*(0:7:0:0) 1002:71d2:1002:3b02 rev 0, Mem @ 0xc0000000/268435456, 0xdfbe0000/65536, I/O @ 0x0000dc00/256, BIOS @ 0x????????/131072
    [ 1842.530] (--) PCI: (0:7:0:1) 1002:71f2:1002:3b03 rev 0, Mem @ 0xdfbf0000/65536
    [ 1842.539] Initializing built-in extension Generic Event Extension
    [ 1842.542] Initializing built-in extension SHAPE
    [ 1842.544] Initializing built-in extension MIT-SHM
    [ 1842.546] Initializing built-in extension XInputExtension
    [ 1842.548] Initializing built-in extension XTEST
    [ 1842.550] Initializing built-in extension BIG-REQUESTS
    [ 1842.552] Initializing built-in extension SYNC
    [ 1842.554] Initializing built-in extension XKEYBOARD
    [ 1842.556] Initializing built-in extension XC-MISC
    [ 1842.557] Initializing built-in extension SECURITY
    [ 1842.559] Initializing built-in extension XINERAMA
    [ 1842.561] Initializing built-in extension XFIXES
    [ 1842.563] Initializing built-in extension RENDER
    [ 1842.564] Initializing built-in extension RANDR
    [ 1842.566] Initializing built-in extension COMPOSITE
    [ 1842.568] Initializing built-in extension DAMAGE
    [ 1842.570] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1842.571] Initializing built-in extension DOUBLE-BUFFER
    [ 1842.573] Initializing built-in extension RECORD
    [ 1842.575] Initializing built-in extension DPMS
    [ 1842.576] Initializing built-in extension X-Resource
    [ 1842.578] Initializing built-in extension XVideo
    [ 1842.580] Initializing built-in extension XVideo-MotionCompensation
    [ 1842.581] Initializing built-in extension XFree86-VidModeExtension
    [ 1842.583] Initializing built-in extension XFree86-DGA
    [ 1842.584] Initializing built-in extension XFree86-DRI
    [ 1842.586] Initializing built-in extension DRI2
    [ 1842.586] (II) "glx" will be loaded by default.
    [ 1842.586] (II) LoadModule: "dri2"
    [ 1842.586] (II) Module "dri2" already built-in
    [ 1842.586] (II) LoadModule: "glamoregl"
    [ 1842.593] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 1842.647] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 1842.647] compiled for 1.14.0, module version = 0.5.0
    [ 1842.647] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1842.647] (II) LoadModule: "glx"
    [ 1842.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1842.912] (II) Module glx: vendor="X.Org Foundation"
    [ 1842.912] compiled for 1.14.0, module version = 1.0.0
    [ 1842.912] ABI class: X.Org Server Extension, version 7.0
    [ 1842.912] (==) AIGLX enabled
    [ 1842.923] Loading extension GLX
    [ 1842.923] (II) LoadModule: "radeon"
    [ 1842.923] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 1843.107] (II) Module radeon: vendor="X.Org Foundation"
    [ 1843.107] compiled for 1.14.0, module version = 7.1.0
    [ 1843.107] Module class: X.Org Video Driver
    [ 1843.107] ABI class: X.Org Video Driver, version 14.1
    [ 1843.107] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE
    [ 1843.120] (--) using VT number 2
    [ 1843.145] (II) [KMS] Kernel modesetting enabled.
    [ 1843.145] (II) [KMS] Kernel modesetting enabled.
    [ 1843.145] (II) RADEON(0): Creating default Display subsection in Screen section
    "Screen0" for depth/fbbpp 24/32
    [ 1843.146] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 1843.146] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1843.146] (==) RADEON(0): Default visual is TrueColor
    [ 1843.146] (==) RADEON(0): RGB weight 888
    [ 1843.146] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 1843.146] (--) RADEON(0): Chipset: "ATI FireGL V3400" (ChipID = 0x71d2)
    [ 1843.146] (II) Loading sub module "dri2"
    [ 1843.146] (II) LoadModule: "dri2"
    [ 1843.146] (II) Module "dri2" already built-in
    [ 1843.146] (II) Loading sub module "exa"
    [ 1843.146] (II) LoadModule: "exa"
    [ 1843.146] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1843.214] (II) Module exa: vendor="X.Org Foundation"
    [ 1843.214] compiled for 1.14.0, module version = 2.6.0
    [ 1843.214] ABI class: X.Org Video Driver, version 14.1
    [ 1843.214] (II) RADEON(0): KMS Color Tiling: enabled
    [ 1843.214] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 1843.214] (II) RADEON(0): KMS Pageflipping: enabled
    [ 1843.214] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 1843.246] (II) RADEON(0): Output DVI-0 using monitor section Monitor0
    [ 1843.310] (II) RADEON(0): EDID for output DVI-0
    [ 1843.310] (II) RADEON(0): Manufacturer: DEL Model: 405b Serial#: 1112233813
    [ 1843.311] (II) RADEON(0): Year: 2011 Week: 41
    [ 1843.311] (II) RADEON(0): EDID Version: 1.3
    [ 1843.311] (II) RADEON(0): Digital Display Input
    [ 1843.311] (II) RADEON(0): Max Image Size [cm]: horiz.: 38 vert.: 30
    [ 1843.311] (II) RADEON(0): Gamma: 2.20
    [ 1843.311] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 1843.311] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 1843.311] (II) RADEON(0): Default color space is primary color space
    [ 1843.311] (II) RADEON(0): First detailed timing is preferred mode
    [ 1843.311] (II) RADEON(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 1843.311] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 1843.311] (II) RADEON(0): Supported established timings:
    [ 1843.311] (II) RADEON(0): 720x400@70Hz
    [ 1843.311] (II) RADEON(0): 640x480@60Hz
    [ 1843.311] (II) RADEON(0): 640x480@75Hz
    [ 1843.311] (II) RADEON(0): 800x600@60Hz
    [ 1843.311] (II) RADEON(0): 800x600@75Hz
    [ 1843.311] (II) RADEON(0): 1024x768@60Hz
    [ 1843.311] (II) RADEON(0): 1024x768@75Hz
    [ 1843.311] (II) RADEON(0): 1280x1024@75Hz
    [ 1843.311] (II) RADEON(0): Manufacturer's mask: 0
    [ 1843.311] (II) RADEON(0): Supported standard timings:
    [ 1843.311] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1843.311] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1843.311] (II) RADEON(0): Supported detailed timing:
    [ 1843.311] (II) RADEON(0): clock: 108.0 MHz Image Size: 376 x 301 mm
    [ 1843.311] (II) RADEON(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 1843.311] (II) RADEON(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 1843.311] (II) RADEON(0): Serial No: M39MD1AABKWU
    [ 1843.311] (II) RADEON(0): Monitor name: DELL P190S
    [ 1843.311] (II) RADEON(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 1843.311] (II) RADEON(0): EDID (in hex):
    [ 1843.311] (II) RADEON(0): 00ffffffffffff0010ac5b4055574b42
    [ 1843.311] (II) RADEON(0): 2915010380261e78eeee95a3544c9926
    [ 1843.311] (II) RADEON(0): 0f5054a54b00714f8180010101010101
    [ 1843.311] (II) RADEON(0): 010101010101302a009851002a403070
    [ 1843.311] (II) RADEON(0): 1300782d1100001e000000ff004d3339
    [ 1843.311] (II) RADEON(0): 4d44314141424b57550a000000fc0044
    [ 1843.311] (II) RADEON(0): 454c4c2050313930530a2020000000fd
    [ 1843.311] (II) RADEON(0): 00384c1e510e000a2020202020200016
    [ 1843.312] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 1843.312] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 1843.312] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1843.312] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1843.312] (II) RADEON(0): Output DVI-0 connected
    [ 1843.312] (II) RADEON(0): Using exact sizes for initial modes
    [ 1843.312] (II) RADEON(0): Output DVI-0 using initial mode 1280x1024
    [ 1843.312] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1843.312] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:8000000 visible:76f6000
    [ 1843.312] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 1843.312] (==) RADEON(0): DPI set to (96, 96)
    [ 1843.312] (II) Loading sub module "fb"
    [ 1843.312] (II) LoadModule: "fb"
    [ 1843.312] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1843.364] (II) Module fb: vendor="X.Org Foundation"
    [ 1843.364] compiled for 1.14.0, module version = 1.0.0
    [ 1843.364] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1843.364] (II) Loading sub module "ramdac"
    [ 1843.364] (II) LoadModule: "ramdac"
    [ 1843.364] (II) Module "ramdac" already built-in
    [ 1843.364] (II) RADEON(1): Creating default Display subsection in Screen section
    "Screen1" for depth/fbbpp 24/32
    [ 1843.364] (==) RADEON(1): Depth 24, (--) framebuffer bpp 32
    [ 1843.365] (II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1843.365] (==) RADEON(1): Default visual is TrueColor
    [ 1843.365] (==) RADEON(1): RGB weight 888
    [ 1843.365] (II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
    [ 1843.365] (--) RADEON(1): Chipset: "ATI FireGL V3400" (ChipID = 0x71d2)
    [ 1843.365] (II) RADEON(1): reusing fd for second head
    [ 1843.365] (II) Loading sub module "dri2"
    [ 1843.365] (II) LoadModule: "dri2"
    [ 1843.365] (II) Module "dri2" already built-in
    [ 1843.365] (II) Loading sub module "exa"
    [ 1843.365] (II) LoadModule: "exa"
    [ 1843.365] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1843.365] (II) Module exa: vendor="X.Org Foundation"
    [ 1843.365] compiled for 1.14.0, module version = 2.6.0
    [ 1843.365] ABI class: X.Org Video Driver, version 14.1
    [ 1843.365] (II) RADEON(1): KMS Color Tiling: enabled
    [ 1843.365] (II) RADEON(1): KMS Color Tiling 2D: disabled
    [ 1843.365] (II) RADEON(1): KMS Pageflipping: enabled
    [ 1843.365] (II) RADEON(1): SwapBuffers wait for vsync: enabled
    [ 1843.429] (II) RADEON(1): Output DVI-1 using monitor section Monitor1
    [ 1843.461] (II) RADEON(1): EDID for output DVI-1
    [ 1843.461] (II) RADEON(1): Manufacturer: DEL Model: a016 Serial#: 878008147
    [ 1843.461] (II) RADEON(1): Year: 2006 Week: 22
    [ 1843.461] (II) RADEON(1): EDID Version: 1.3
    [ 1843.461] (II) RADEON(1): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 1843.461] (II) RADEON(1): Sync: Separate Composite SyncOnGreen
    [ 1843.461] (II) RADEON(1): Max Image Size [cm]: horiz.: 52 vert.: 33
    [ 1843.461] (II) RADEON(1): Gamma: 2.20
    [ 1843.461] (II) RADEON(1): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 1843.461] (II) RADEON(1): Default color space is primary color space
    [ 1843.461] (II) RADEON(1): First detailed timing is preferred mode
    [ 1843.461] (II) RADEON(1): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 1843.461] (II) RADEON(1): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 1843.461] (II) RADEON(1): Supported established timings:
    [ 1843.461] (II) RADEON(1): 720x400@70Hz
    [ 1843.461] (II) RADEON(1): 640x480@60Hz
    [ 1843.461] (II) RADEON(1): 640x480@75Hz
    [ 1843.461] (II) RADEON(1): 800x600@60Hz
    [ 1843.461] (II) RADEON(1): 800x600@75Hz
    [ 1843.461] (II) RADEON(1): 1024x768@60Hz
    [ 1843.461] (II) RADEON(1): 1024x768@75Hz
    [ 1843.461] (II) RADEON(1): 1280x1024@75Hz
    [ 1843.461] (II) RADEON(1): Manufacturer's mask: 0
    [ 1843.461] (II) RADEON(1): Supported standard timings:
    [ 1843.461] (II) RADEON(1): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1843.461] (II) RADEON(1): #1: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 1843.461] (II) RADEON(1): #2: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1843.462] (II) RADEON(1): #3: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 1843.462] (II) RADEON(1): Supported detailed timing:
    [ 1843.462] (II) RADEON(1): clock: 154.0 MHz Image Size: 519 x 324 mm
    [ 1843.462] (II) RADEON(1): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 1843.462] (II) RADEON(1): v_active: 1200 v_sync: 1203 v_sync_end 1209 v_blanking: 1235 v_border: 0
    [ 1843.462] (II) RADEON(1): Serial No: CC30265V4UWS
    [ 1843.462] (II) RADEON(1): Monitor name: DELL 2407WFP
    [ 1843.462] (II) RADEON(1): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
    [ 1843.462] (II) RADEON(1): EDID (in hex):
    [ 1843.462] (II) RADEON(1): 00ffffffffffff0010ac16a053575534
    [ 1843.462] (II) RADEON(1): 161001030e342178eeee91a3544c9926
    [ 1843.462] (II) RADEON(1): 0f5054a54b008180a940714fb3000101
    [ 1843.462] (II) RADEON(1): 010101010101283c80a070b023403020
    [ 1843.462] (II) RADEON(1): 360007442100001a000000ff00434333
    [ 1843.462] (II) RADEON(1): 30323635563455575320000000fc0044
    [ 1843.462] (II) RADEON(1): 454c4c20323430375746500a000000fd
    [ 1843.462] (II) RADEON(1): 00384c1e5311000a20202020202000d6
    [ 1843.462] (II) RADEON(1): Printing probed modes for output DVI-1
    [ 1843.462] (II) RADEON(1): Modeline "1920x1200"x60.0 154.00 1920 1968 2000 2080 1200 1203 1209 1235 +hsync -vsync (74.0 kHz eP)
    [ 1843.462] (II) RADEON(1): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1843.462] (II) RADEON(1): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1843.462] (II) RADEON(1): Output DVI-1 connected
    [ 1843.462] (II) RADEON(1): Using exact sizes for initial modes
    [ 1843.462] (II) RADEON(1): Output DVI-1 using initial mode 1920x1200
    [ 1843.462] (II) RADEON(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1843.462] (II) RADEON(1): mem size init: gart size :1fdff000 vram size: s:8000000 visible:76f6000
    [ 1843.462] (II) RADEON(1): EXA: Driver will allow EXA pixmaps in VRAM
    [ 1843.462] (==) RADEON(1): DPI set to (96, 96)
    [ 1843.462] (II) Loading sub module "fb"
    [ 1843.462] (II) LoadModule: "fb"
    [ 1843.463] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1843.463] (II) Module fb: vendor="X.Org Foundation"
    [ 1843.463] compiled for 1.14.0, module version = 1.0.0
    [ 1843.463] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1843.463] (II) Loading sub module "ramdac"
    [ 1843.463] (II) LoadModule: "ramdac"
    [ 1843.463] (II) Module "ramdac" already built-in
    [ 1843.463] (--) Depth 24 pixmap format is 32 bpp
    [ 1843.464] (II) RADEON(0): [DRI2] Setup complete
    [ 1843.464] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 1843.464] (II) RADEON(0): [DRI2] VDPAU driver: r300
    [ 1843.464] (II) RADEON(0): Front buffer size: 5120K
    [ 1843.464] (II) RADEON(0): VRAM usage limit set to 105012K
    [ 1843.479] (==) RADEON(0): Backing store disabled
    [ 1843.479] (II) RADEON(0): Direct rendering enabled
    [ 1843.479] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 1843.479] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 1843.479] (II) EXA(0): Driver registered support for the following operations:
    [ 1843.479] (II) Solid
    [ 1843.479] (II) Copy
    [ 1843.479] (II) Composite (RENDER acceleration)
    [ 1843.479] (II) UploadToScreen
    [ 1843.479] (II) DownloadFromScreen
    [ 1843.479] (II) RADEON(0): Acceleration enabled
    [ 1843.479] (==) RADEON(0): DPMS enabled
    [ 1843.479] (==) RADEON(0): Silken mouse enabled
    [ 1843.483] (II) RADEON(0): Set up textured video
    [ 1843.483] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 1843.483] (II) RADEON(0): [XvMC] Extension initialized.
    [ 1843.483] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1843.492] (--) RandR disabled
    [ 1843.492] (II) RADEON(1): [DRI2] Setup complete
    [ 1843.492] (II) RADEON(1): [DRI2] DRI driver: r300
    [ 1843.492] (II) RADEON(1): [DRI2] VDPAU driver: r300
    [ 1843.492] (II) RADEON(1): Front buffer size: 9000K
    [ 1843.492] (II) RADEON(1): VRAM usage limit set to 101520K
    [ 1843.492] (==) RADEON(1): Backing store disabled
    [ 1843.492] (II) RADEON(1): Direct rendering enabled
    [ 1843.492] (II) RADEON(1): Render acceleration enabled for R300/R400/R500 type cards.
    [ 1843.492] (II) EXA(1): Driver allocated offscreen pixmaps
    [ 1843.492] (II) EXA(1): Driver registered support for the following operations:
    [ 1843.492] (II) Solid
    [ 1843.492] (II) Copy
    [ 1843.492] (II) Composite (RENDER acceleration)
    [ 1843.492] (II) UploadToScreen
    [ 1843.492] (II) DownloadFromScreen
    [ 1843.492] (II) RADEON(1): Acceleration enabled
    [ 1843.492] (==) RADEON(1): DPMS enabled
    [ 1843.492] (==) RADEON(1): Silken mouse enabled
    [ 1843.492] (II) RADEON(1): Set up textured video
    [ 1843.492] (II) RADEON(1): [XvMC] Associated with Radeon Textured Video.
    [ 1843.492] (II) RADEON(1): [XvMC] Extension initialized.
    [ 1843.492] (II) RADEON(1): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1843.493] (--) RandR disabled
    [ 1847.046] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1847.046] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1847.046] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1847.050] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1847.050] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1847.050] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1847.050] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1847.051] (II) AIGLX: Loaded and initialized r300
    [ 1847.051] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 1847.052] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1847.052] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1847.052] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1847.052] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1847.052] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1847.052] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1847.052] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1847.053] (II) AIGLX: Loaded and initialized r300
    [ 1847.053] (II) GLX: Initialized DRI2 GL provider for screen 1
    [ 1847.880] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 1847.880] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1847.880] (II) LoadModule: "evdev"
    [ 1847.881] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 1847.939] (II) Module evdev: vendor="X.Org Foundation"
    [ 1847.939] compiled for 1.14.0, module version = 2.7.3
    [ 1847.939] Module class: X.Org XInput Driver
    [ 1847.939] ABI class: X.Org XInput driver, version 19.1
    [ 1847.939] (II) Using input driver 'evdev' for 'Power Button'
    [ 1847.939] (**) Power Button: always reports core events
    [ 1847.939] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 1847.939] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1847.939] (--) evdev: Power Button: Found keys
    [ 1847.939] (II) evdev: Power Button: Configuring as keyboard
    [ 1847.939] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 1847.939] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 1847.939] (**) Option "xkb_rules" "evdev"
    [ 1847.939] (**) Option "xkb_model" "evdev"
    [ 1847.939] (**) Option "xkb_layout" "us"
    [ 1847.974] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 1847.975] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1847.975] (II) Using input driver 'evdev' for 'Power Button'
    [ 1847.975] (**) Power Button: always reports core events
    [ 1847.975] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 1847.975] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1847.975] (--) evdev: Power Button: Found keys
    [ 1847.975] (II) evdev: Power Button: Configuring as keyboard
    [ 1847.975] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
    [ 1847.975] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 1847.975] (**) Option "xkb_rules" "evdev"
    [ 1847.975] (**) Option "xkb_model" "evdev"
    [ 1847.975] (**) Option "xkb_layout" "us"
    [ 1847.975] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1847.976] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event5)
    [ 1847.976] (II) No input driver specified, ignoring this device.
    [ 1847.976] (II) This device may have been added with another device file.
    [ 1847.977] (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event6)
    [ 1847.977] (II) No input driver specified, ignoring this device.
    [ 1847.977] (II) This device may have been added with another device file.
    [ 1847.977] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event7)
    [ 1847.977] (II) No input driver specified, ignoring this device.
    [ 1847.977] (II) This device may have been added with another device file.
    [ 1847.978] (II) config/udev: Adding input device HDA Intel Line Out (/dev/input/event8)
    [ 1847.978] (II) No input driver specified, ignoring this device.
    [ 1847.978] (II) This device may have been added with another device file.
    [ 1847.978] (II) config/udev: Adding input device Logitech Optical USB Mouse (/dev/input/event3)
    [ 1847.978] (**) Logitech Optical USB Mouse: Applying InputClass "evdev pointer catchall"
    [ 1847.978] (II) Using input driver 'evdev' for 'Logitech Optical USB Mouse'
    [ 1847.978] (**) Logitech Optical USB Mouse: always reports core events
    [ 1847.978] (**) evdev: Logitech Optical USB Mouse: Device: "/dev/input/event3"
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Vendor 0x46d Product 0xc016
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found 3 mouse buttons
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found scroll wheel(s)
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found relative axes
    [ 1847.978] (--) evdev: Logitech Optical USB Mouse: Found x and y relative axes
    [ 1847.978] (II) evdev: Logitech Optical USB Mouse: Configuring as mouse
    [ 1847.979] (II) evdev: Logitech Optical USB Mouse: Adding scrollwheel support
    [ 1847.979] (**) evdev: Logitech Optical USB Mouse: YAxisMapping: buttons 4 and 5
    [ 1847.979] (**) evdev: Logitech Optical USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1847.979] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input3/event3"
    [ 1847.979] (II) XINPUT: Adding extended input device "Logitech Optical USB Mouse" (type: MOUSE, id 8)
    [ 1847.979] (II) evdev: Logitech Optical USB Mouse: initialized for relative axes.
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) keeping acceleration scheme 1
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration profile 0
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration factor: 2.000
    [ 1847.979] (**) Logitech Optical USB Mouse: (accel) acceleration threshold: 4
    [ 1847.980] (II) config/udev: Adding input device Logitech Optical USB Mouse (/dev/input/mouse0)
    [ 1847.980] (II) No input driver specified, ignoring this device.
    [ 1847.980] (II) This device may have been added with another device file.
    [ 1847.980] (II) config/udev: Adding input device DELL DELL USB Keyboard (/dev/input/event4)
    [ 1847.980] (**) DELL DELL USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1847.980] (II) Using input driver 'evdev' for 'DELL DELL USB Keyboard'
    [ 1847.980] (**) DELL DELL USB Keyboard: always reports core events
    [ 1847.980] (**) evdev: DELL DELL USB Keyboard: Device: "/dev/input/event4"
    [ 1847.980] (--) evdev: DELL DELL USB Keyboard: Vendor 0x413c Product 0x2005
    [ 1847.980] (--) evdev: DELL DELL USB Keyboard: Found keys
    [ 1847.980] (II) evdev: DELL DELL USB Keyboard: Configuring as keyboard
    [ 1847.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.2/usb4/4-2/4-2:1.0/input/input4/event4"
    [ 1847.981] (II) XINPUT: Adding extended input device "DELL DELL USB Keyboard" (type: KEYBOARD, id 9)
    [ 1847.981] (**) Option "xkb_rules" "evdev"
    [ 1847.981] (**) Option "xkb_model" "evdev"
    [ 1847.981] (**) Option "xkb_layout" "us"
    [ 1847.982] (II) config/udev: Adding input device Wacom Bamboo Connect Pen (/dev/input/event9)
    [ 1847.982] (**) Wacom Bamboo Connect Pen: Applying InputClass "evdev tablet catchall"
    [ 1847.982] (**) Wacom Bamboo Connect Pen: Applying InputClass "Wacom class"
    [ 1847.982] (II) LoadModule: "wacom"
    [ 1847.982] (II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
    [ 1848.043] (II) Module wacom: vendor="X.Org Foundation"
    [ 1848.043] compiled for 1.14.0, module version = 0.20.0
    [ 1848.043] Module class: X.Org XInput Driver
    [ 1848.043] ABI class: X.Org XInput driver, version 19.1
    [ 1848.044] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Pen'
    [ 1848.044] (**) Wacom Bamboo Connect Pen: always reports core events
    [ 1848.044] (**) Option "Device" "/dev/input/event9"
    [ 1848.044] (II) Wacom Bamboo Connect Pen: type not specified, assuming 'stylus'.
    [ 1848.044] (II) Wacom Bamboo Connect Pen: other types will be automatically added.
    [ 1848.044] (--) Wacom Bamboo Connect Pen stylus: using pressure threshold of 27 for button 1
    [ 1848.044] (--) Wacom Bamboo Connect Pen stylus: Wacom Unknown USB tablet maxX=14720 maxY=9200 maxZ=1023 resX=100000 resY=100000 tilt=enabled
    [ 1848.044] (II) Wacom Bamboo Connect Pen stylus: hotplugging dependent devices.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'cursor' for this device.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'touch' for this device.
    [ 1848.044] (EE) Wacom Bamboo Connect Pen stylus: Invalid type 'pad' for this device.
    [ 1848.044] (II) Wacom Bamboo Connect Pen stylus: hotplugging completed.
    [ 1848.046] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input9/event9"
    [ 1848.046] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Pen stylus" (type: STYLUS, id 10)
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) keeping acceleration scheme 1
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration profile 0
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration factor: 2.000
    [ 1848.046] (**) Wacom Bamboo Connect Pen stylus: (accel) acceleration threshold: 4
    [ 1848.047] (II) config/udev: Adding input device Wacom Bamboo Connect Pen (/dev/input/mouse1)
    [ 1848.047] (II) No input driver specified, ignoring this device.
    [ 1848.047] (II) This device may have been added with another device file.
    [ 1848.048] (II) config/udev: Adding input device Wacom Bamboo Connect Finger (/dev/input/event10)
    [ 1848.048] (**) Wacom Bamboo Connect Finger: Applying InputClass "evdev touchpad catchall"
    [ 1848.048] (**) Wacom Bamboo Connect Finger: Applying InputClass "Wacom class"
    [ 1848.048] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Finger'
    [ 1848.048] (**) Wacom Bamboo Connect Finger: always reports core events
    [ 1848.048] (**) Option "Device" "/dev/input/event10"
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'stylus' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'eraser' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger: Invalid type 'cursor' for this device.
    [ 1848.048] (II) Wacom Bamboo Connect Finger: type not specified, assuming 'touch'.
    [ 1848.048] (II) Wacom Bamboo Connect Finger: other types will be automatically added.
    [ 1848.048] (--) Wacom Bamboo Connect Finger touch: using pressure threshold of 27 for button 1
    [ 1848.048] (--) Wacom Bamboo Connect Finger touch: Wacom Unknown USB tablet maxX=4096 maxY=4096 maxZ=0 resX=27000 resY=44000
    [ 1848.048] (II) Wacom Bamboo Connect Finger touch: hotplugging dependent devices.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'stylus' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'eraser' for this device.
    [ 1848.048] (EE) Wacom Bamboo Connect Finger touch: Invalid type 'cursor' for this device.
    [ 1848.048] (II) Wacom Bamboo Connect Finger touch: hotplugging completed.
    [ 1848.049] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input10/event10"
    [ 1848.049] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Finger touch" (type: TOUCH, id 11)
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) keeping acceleration scheme 1
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration profile 0
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration factor: 2.000
    [ 1848.049] (**) Wacom Bamboo Connect Finger touch: (accel) acceleration threshold: 4
    [ 1848.050] (II) config/udev: Adding input device Wacom Bamboo Connect Finger (/dev/input/mouse2)
    [ 1848.050] (II) No input driver specified, ignoring this device.
    [ 1848.050] (II) This device may have been added with another device file.
    [ 1848.050] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 1848.050] (II) No input driver specified, ignoring this device.
    [ 1848.050] (II) This device may have been added with another device file.
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: Applying InputClass "evdev tablet catchall"
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: Applying InputClass "Wacom class"
    [ 1848.058] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Pen eraser'
    [ 1848.058] (**) Wacom Bamboo Connect Pen eraser: always reports core events
    [ 1848.058] (**) Option "Device" "/dev/input/event9"
    [ 1848.058] (**) Option "Type" "eraser"
    [ 1848.058] (--) Wacom Bamboo Connect Pen eraser: Wacom Unknown USB tablet maxX=14720 maxY=9200 maxZ=1023 resX=100000 resY=100000 tilt=enabled
    [ 1848.066] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.0/input/input9/event9"
    [ 1848.066] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Pen eraser" (type: ERASER, id 12)
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) keeping acceleration scheme 1
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration profile 0
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration factor: 2.000
    [ 1848.067] (**) Wacom Bamboo Connect Pen eraser: (accel) acceleration threshold: 4
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: Applying InputClass "evdev touchpad catchall"
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: Applying InputClass "Wacom class"
    [ 1848.067] (II) Using input driver 'wacom' for 'Wacom Bamboo Connect Finger pad'
    [ 1848.067] (**) Wacom Bamboo Connect Finger pad: always reports core events
    [ 1848.067] (**) Option "Device" "/dev/input/event10"
    [ 1848.067] (**) Option "Type" "pad"
    [ 1848.067] (--) Wacom Bamboo Connect Finger pad: Wacom Unknown USB tablet maxX=4096 maxY=4096 maxZ=0 resX=27000 resY=44000
    [ 1848.067] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.3/usb5/5-1/5-1:1.1/input/input10/event10"
    [ 1848.067] (II) XINPUT: Adding extended input device "Wacom Bamboo Connect Finger pad" (type: PAD, id 13)
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) keeping acceleration scheme 1
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration profile 0
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration factor: 2.000
    [ 1848.068] (**) Wacom Bamboo Connect Finger pad: (accel) acceleration threshold: 4
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) UnloadModule: "wacom"
    [ 3145.527] (II) evdev: DELL DELL USB Keyboard: Close
    [ 3145.527] (II) UnloadModule: "evdev"
    [ 3145.527] (II) evdev: Logitech Optical USB Mouse: Close
    [ 3145.527] (II) UnloadModule: "evdev"
    [ 3145.527] (II) evdev: Power Button: Close
    [ 3145.528] (II) UnloadModule: "evdev"
    [ 3145.528] (II) evdev: Power Button: Close
    [ 3145.528] (II) UnloadModule: "evdev"
    Thanks!!!!!
    Last edited by stuvjordan (2013-03-21 17:56:52)

  • Exclude from for loop

    Hi,
    I have this script and error :
    Declare
    Cursor C1 is
    select d.product_code,b.responsibility_key from FND_USER_RESP_GROUPS_ALL a,fnd_responsibility b,fnd_user c,fnd_application d
    where a.user_id = c.user_id
    and a.responsibility_id = b.responsibility_id
    and b.application_id = d.application_id
    and c.user_name ='SYSADMIN'; -- user you want to copy
    v c1%rowtype;
    BEGIN
    for v in c1 loop
    FND_USER_PKG.AddResp('MYUSER',v.product_code, v.responsibility_key,
    'Standard', 'DESCRIPTION', sysdate, null);
    end loop;
    END;
    ERROR at line 1:
    ORA-20001: APP-FND-02604: Invalide data
    APPLICATION_SHORT_NAME=OE, RESPONSIBILITY_KEY=ORDER_ENTRY_SUPER_USER,
    SECURITY_GROUP=Standard.
    ORA-06512: Ó "APPS.APP_EXCEPTION", ligne 70
    ORA-06512: Ó "APPS.FND_USER_PKG", ligne 2140
    ORA-06512: Ó ligne 11
    How can I exclude the case RESPONSIBILITY_KEY=ORDER_ENTRY_SUPER_USER,in my for v in c1 loop ? For example :
    if v.responsibility_key=ORDER_ENTRY_SUPER_USER then go to next.
    Many thanks.

    If I have understood it correctly...
    If you dont want to see this value at all, then probably by adding this condition to where clause of the select query (of the cursor). Or trying out something with parameterised cursors.
    Sidhu
    Message was edited by:
    Sidhu

  • Problem stopping applicationI from middle loop of a three loop vi.

    I have a "Prompt User for Input" in the middle loop of a three loop vi.
    I would like the loop to stop when the user presses "Test 2" on the front panel then checks "input" on the prompt.
    I'm trying to do this using a "User Event". Can anyone tell me what I"m doing wrong?  
    Thanks.
    Solved!
    Go to Solution.
    Attachments:
    TEST.zip ‏156 KB

    add a dynamic stop to the stop event case structure in upper loop by editing the stop event case and add event, dynamic <stop> user event_value change......and you can leave out the stop command in the 2nd test event case structure, wire a false constant to the stop. please mark as solution and kudos those who have helped
    Attachments:
    DH2 Attractive Forcemod.vi ‏74 KB

  • Problem finding out datatype for jdbc scenario

    Hi all,
    Here is my scenario. JDBC(oracle)->FILE
    I have a database table orders in oracle with three fields id,name,num. I want to select this table values and map to a different format and send it to a file system.
    Can anyone tell me what should be the format of the sender message interface(or data type)?
    I've created sender message as ordersJDBC with three fileds id name num. i've configured sender adapter too..but i didnt see any message in my xi server!!!
    one more thing should i change the document name in sender jdbc communication channel form resultset to my sender message interface ?
    I think the datatype may be wrong can anyone please help me with this?
    Thanks in advance.......
    Santhosh.

    Hi All,
    It's been a great support from you all, I really appreciate your time.
    I've seen the status of my adapter and got the message like "The Network adapter could not establish the connection".
    Is it the problem with my connection parameter. Did i mention it correct?
    can anyone please cross check my settings......
    driver: oracle.jdbc.driver.OracleDriver
    connection: jdbc:oracle:thin:@ipaddress:port:databasename
    where can i find the information regadring oracle driver in my xi server?
    Thanks in advance.......
    Santhosh.
    Message was edited by: santhosh goli

  • How can I make a Java program pyramid using for loops??

    Hi guys, so I'm stuck with my program here... I don't know how to make it work, and i've been trying really hard.. So now i give up and need some guidance.. Please help me here.
    Your job in this assignment is to write programs to solve each of these six problems.
    1. Write a GraphicsProgram subclass that draws a pyramid consisting of bricks
    arranged in horizontal rows, so that the number of bricks in each row decreases by
    one as you move up the pyramid, as shown in the following sample run:
    The pyramid should be centered at the bottom of the window and should use
    constants for the following parameters:
    BRICK_WIDTH The width of each brick (30 pixels)
    BRICK_HEIGHT The height of each brick (12 pixels)
    BRICKS_IN_BASE The number of bricks in the base (14)
    The numbers in parentheses show the values for this diagram, but you must be able
    to change those values in your program.
    * File: Pyramid.java
    * Name:
    * Section Leader:
    * This file is the starter file for the Pyramid problem.
    * It includes definitions of the constants that match the
    * sample run in the assignment, but you should make sure
    * that changing these values causes the generated display
    * to change accordingly.
    import acm.graphics.*;
    import acm.program.*;
    import java.awt.*;
    public class Pyramid extends GraphicsProgram {
    /** Width of each brick in pixels */
         private static final int BRICK_WIDTH = 30;
    /** Width of each brick in pixels */
         private static final int BRICK_HEIGHT = 12;
    /** Number of bricks in the base of the pyramid */
         private static final int BRICKS_IN_BASE = 14;
         public void run() {     
    }That's my problem.

    yo, so i figure out my for loop. my code is very very very very ugly, so dont laugh i know its ugly! just wanna ask for some tips
    public void run() {
              int initBrick = 30;
              int initPlacement = (getWidth() - BRICK_WIDTH) / 2;
              for (int i = 0; i < initBrick; i += 30)
                   int initX = i;
                   int x = initX + initPlacement;
                   GRect brick = new GRect(x, 0, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 60; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 15;
                   int y = 12;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 90; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 30;
                   int y = 24;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 120; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 45;
                   int y = 36;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 150; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 60;
                   int y = 48;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 180; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 75;
                   int y = 60;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 210; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 90;
                   int y = 72;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 240; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 105;
                   int y = 84;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 270; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 120;
                   int y = 96;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 300; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 135;
                   int y = 108;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 330; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 150;
                   int y = 120;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 360; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 165;
                   int y = 132;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 390; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 180;
                   int y = 144;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
              for (int i = 0; i < 420; i += 30)
                   int initX = i;
                   int x = (initX + initPlacement) - 195;
                   int y = 156;
                   GRect brick = new GRect(x, y, BRICK_WIDTH, BRICK_HEIGHT);
                   add(brick);
         }So yeah, it's very ugly. not general. BUT now; I know the logic of the program..
    I need to change 3 variables here.
    the Y var, the X variable, and the size of the loop test..
    so I need to make a one compact for loop that will change those 3 for every time the loop finish, or for every row the variable will change...
    Ill try to think again, ill head to the balcony, and squeeze my brain. YEAH it took me this long to figure this out, anyway im a noob YET. But i was working a while ago.
    ANYWAY, leave some tips please.. I NEED TIPS NOT SOLUTION

  • How to skip for loop execution

    Hi all,
    How to skip execution of for loop , if one particular condition is satisfied within that loop .
    I know that we can use exit within for loop to come out of for loop, please let me know if there is any other approach .
    Thanks,
    P Prakash

    BluShadow wrote:
    11g (new feature) - it is called the CONTINUE statement.Blergh! it's horrible. May as well use a GOTO.... :{noformat}/{noformat}Hehe.. Yeah - it essentially creates another exit point in the loop, except that it falls into the top of the loop and not out of the bottom.
    So in that respect, the EXIT statement ain't much better. {noformat} ;-) {noformat}
    Personally I don't think it that bad - could be useful for very tight loops where you want to cut down machine code to the absolute minimum. But then why would one ever write such a loop in PL/SQL?
    Reserving judgement on this one for the time being. I very very seldom have used a continue or skip instruction in programming... As far as I recall - only in bash shell scripts.
    So yeah, I would like to see the code and justification for that code using the CONTINUE statement. There always could be The Real And Seldom Seen Bigfoot-like Exception that justifies using that statement... {noformat} :-) {noformat}

Maybe you are looking for

  • SSRS report - A single selection dropdown list converted to text box

    Hello everyone, We created a single selection dropdown parameter (City parameter) on a report. The data in this parameter is populated using MDX query. Also, it is filtered based on selection of another single selection dropdown list (Country paramet

  • ADAPTER in the Central Adapter Engine

    Hello I have problem with my Adapter in the Central Adapter Engine. There are to adapter inside, a JMS and A JDBC. This two adpater have in the monitoring status green. But JMS adapter get no message in the system, and by the JDBC adapter the select

  • Sign in - Adobe Premiere Elements 12

    Hey guys, I'm having trouble signing in. It says that I have no connection with the internet, but actually I do. Plus, I can't download the effects either. When I had to activate, I had to do it offline, because it accused that I wasn't connected. Ca

  • Crash when calling dlll built by LV using timed loop.

    I have built a dll with Labview 7.1. Then I use VC++ 6.0 to call this dll. Everything is fine except that it will crash after the whole program finishes.  Without timed loop the program can exit normally. When built to exe file, it can also run norma

  • I am getting script errors on startup - Script: chrome://global/content/bindings/browser.xml:194 WHY?

    The last couple of days I have been getting script errors on startup - Script: chrome://global/content/bindings/browser.xml:194 , I am also getting shutdown errors when I power down "end program" types including sgtray.exe, hkcmd.exe, directcd.exe, m