JavaScript Function Calls it is called twice only when add the component

Hi,
I am developing a SAP Design Studio Extension and I noticed that when I add the component on Application, SAP Design Studio calls the JavaScript SDK Functions twice only when I drag and drop the component.
I found out about this just put an alert message in which JavaScript Function (init, beforeUpdate and afterUpdate).
Is it ok to work this way?
I am really curious if anyone else has come across this issue.
Thank you,
Fabio Almeida

Hi Fabio,
Yes, there does appear to be an issue with SDK component functions being called twice.  Mike Howles has implemented a workaround in this Toolbar example code. Refer to the code in the this.init function at the end.
Regards,
Mustafa.

Similar Messages

  • Hello, I have bought an iphone two weeks ago. Now I have a big problem. Whenever I receive a phone call, the caller could not heare me only when I switch to the handsfree speakers phone. The same issue accurs, when I call somebody.

    I have an iphone and whenever I receive a phone call, the caller could not hear me only when I switch to the hansfree speakers phone. the same issue occurs whenever I call somebody. Could anybody help me?

    Hi
    You should ask your relative to physically take the iPhone to the store rather than shipping it because as diesel vdub has said:
    "No Apple store will accept an iPhone shipped to them"
    All you have to do is safely pack and ship your iPhone from the Philppines to your California-based relative.
    HTH?
    Tony

  • HT201401 Microphone works only when using the phone in hands-free

    Microphone works only when using the phone in hands-free (speaker on) mode.  Otherwise, only a constant buzz, accompanied by regular clicks (repeating 2-3 times/sec) can be heard by called persons or when recording a memo.  Makes Siri unusable, and cannot make private calls unless in a private area.  Does anybody have a fix for this?

    Okay I just solved the problem myself..
    For anyone that may have the same issue:
    The microphone used when recording video, is the little dot next to the jack on top of the iPhone 4S (maybe also iPhone 4, don't know). There was some dirt in this tiny little hole, and I simply just removed it with a very thin needle, and now it works great!

  • Yours sincerely! I just bought a Sony DCR-SD1000 camera only when installing the cd drivers not supported by the operating system Machintosh. I've contacted the seller said the store did not provide for the apple os. How can I move all the files on the ca

    Yours sincerely! I just bought a Sony DCR-SD1000 camera only when installing the cd drivers not supported by the operating system Machintosh. I've contacted the seller said the store did not provide for the apple os. How can I move all the files on the camera the port out is to use a USB data cable to a laptop for my macbookpro can not read the contents of the file and the camera. I also want to use the lens on the camera as a substitute for the embedded camera on my macbookpro, what should I do to replace the embedded camera on macbookpro with sony camera so that the camera could be more variety and can I record when I turned macbookpro . Please help for this so that I can quickly capture the results from sony camera to my macbookpro. Thank you.

    See this page http://macosx.com/forums/networking-compatibility/296947-sony-camcorder-my-mac.h tml - might be some helpful tips there.
    Clinton

  • TPSDLS idoc to be triggered only when deleting the delivery

    Hi,
    We have a requirement: We should be trigerring the TPSDLS idoc only when deleting the delivery in SAP. Currently, we generate the TPSDLS idoc when creating and deleting the delivery.
    The Changes we tried did not help us in anyway.As we are seeing deliveries created with no-output type linked to them and when deleting them, does not provide any TPSDLS idoc.Not sure, how deliveries are created without any output type assocaited to them and what could solve them.
    Any help would be appreciated.
    Thanking You,
    Anish Asokan

    a

  • Hi, I am having trouble opening Final Cut on my Macand opens only when in the Administrator account. nyone know why please? Thanks

    Having trouble opening Final Cut on my Mac and opens only when in the Administrator account and not when in Guest account. anyone know why please? Thanks

    Yes... I can confirm this too...
    If I load up my clips with no audio into the timeline, stuttering is there immediately.
    Then I add an audio track to the timeline and the stutter vanishes.
    Then, if I turn down the volume of the audio to zereo or - 46 dB. The stuttering reappears.
    If, however, I place the cursor (Skimmer) in a clip prior to hitting play, the stutter vanishes yet again...
    I adore FCPx and after getting to know it, there really is NO going back for me. This app is more than a decade ahead of its time and it's new. And still in a sort of beta-phase. At least that is what I tell myself so that I can deal with it ;-)
    At least now we know ONE reason why stuttering appears and by identifying the problem, we can solve it !

  • Urgent  javascript function is not being called

    I have the code as below html and jsp and i want the validation to be done before submission of the form can anybody help me how to solve.
    thanks in advance.
    regards,
    srikanth
    ----(NPV.html code)----
    <HTML>
    <script type="text/javascript" language="javascript">
    function Calc(oForm) {
    var el, msg = 'The following entries are invalid:\n';
    msg += '______________________________\n\n';
    var firVal = parseDouble(oForm.first.value, 10);
    if (isNaN(firVal)) {
    msg += '\First \n';
    if (!el) el = oForm.first;
    var secVal = parseDouble(oForm.second.value, 10);
    if (isNaN(secVal)) {
    msg += '\Second\n';
    if (!el) el = oForm.second;
    var thVal = parseDouble(oForm.third.value, 10);
    if (isNaN(thVal)) {
    msg += '\Third \n';
    if (!el) el = oForm.third;
    var forVal = parseDouble(oForm.fourth.value, 10);
    if (isNaN(forVal)) {
    msg += '\Fourth\n';
    if (!el) el = oForm.fourth;
    var fifVal = parseDouble(oForm.fifth.value, 10);
    if (isNaN(fifVal)) {
    msg += '\Fifth\n';
    if (!el) el = oForm.fifth;
    if (el) {
    msg += '\nPlease correct and re-submit.';
    alert(msg);
    el.focus();
    el.select();
    return false;
    </SCRIPT>
    <BODY>
    <FORM name=npv method=GET action="NPV_Calculate.jsp" onsubmit="return Calc(this)">
    <table align=center>
    <tr>
    <td>
    Enter First no :</TD>
    <TD><input type=TEXT name=first>
    </TD>
    </tr>
    <tr>
    <td>
    Enter Second no :</TD>
    <TD><input type=TEXT name=second>
    </TD>
    </tr>
    <tr>
    <td>
    Enter Third no :</TD>
    <TD><input type=TEXT name=third>
    </TD>
    </tr>
    <tr>
    <td>
    Enter Fourth no :</TD>
    <TD><input type=TEXT name=fourth>
    </TD>
    </tr>
    <tr>
    <td>
    Enter Fifth no :</TD>
    <TD><input type=TEXT name=fifth>
    </TD>
    </tr>
    <tr>
    <td>
    <INPUT type=SUBMIT ></TD></TR>
    </TABLE>
    </FORM>
    </BODY>
    </HTML>
    (NPV_Calculate.jsp)
    <%@page contentType="text/html"%>
    <%@page import="java.util.*"%>
    <html>
    <head><title>JSP Page</title></head>
    <body>
    <%!int one,two,three,four,five=0 ;
    double NPV=0;
    ArrayList al;
    boolean flag=true;
    public void Calculation(ArrayList al1)
    double r = .06;
    double no=1;
    double no1=0;
    double total = 1+r;
    for(int i= 0;i<al1.size() ;i++)
    total =no *total;
    no=1+r;
    NPV= new Double(al1.get(i).toString()).doubleValue()/total;
    NPV= no1 + NPV;
    no1=NPV;
    %>
    <%
    al =new ArrayList();
    try{
    al.add(0,request.getParameter("first"));
    al.add(1,request.getParameter("second"));
    al.add(2,request.getParameter("third"));
    al.add(3,request.getParameter("fourth"));
    al.add(4,request.getParameter("fifth"));
    }catch(NumberFormatException e)
    {flag = false;%>
    <%="Invalid values entered" %> <br>
    <a href= NPV.html>Click here to reenter Pl.. </A>
    <%}
    if(flag){
    Calculation(al);
    out.println("Result: "+ NPV);
    %>
    </body>
    </html>

    ya, i got my problem solved not only by making parseDouble to parseFloat but also making the input type = button (instead of submit) and submiting the form through javascript. i don't know why it is not working when it is a submit button.
    thanks..

  • "...handle is invalid" : Error only when closing the Applicatio​n, at RunTime everything seems fine...

    HI,
    first of all: I'm relatively new to LabWindows, working on it during some practical work as a Student
    (yeah, and sorry for the bad english, I'm from Germany)
    To the Problem:
    The first important Information:
    After having searched for a solution, I just don't know, what to do,
    My Project consists of ONE Main.uir-File with a Tab, a "Main.c" that basically handles the main .uir-Stuff and some Initiating-Stuff and in addition to that Several Sub-Sourc-Files, one for each Tab-Panel of the Main.uir-Tab.
    To use the UI-Items on the Main-Tab with the Sub-Sources, I am initiating Tab-Handles at startup, that can be used by the SubSource-Files, like:
    GetPanelHandleFromTabPage (PANEL, PANEL_TAB, 2, &BALU);
    With this Handle, I can identify every UI-Items, when working with the SubSources
    The second important information:
    In some of the TabPages of the .uir there are several ControlArrays. To use them I create a ControlArrayHandle, like:
    MWSAverageHandle  = GetCtrlArrayFromResourceID (BALU, MWSAverageArray);
    No, I am able to identify specific elements of the Arrays, like:
    SetCtrlVal (BALU, GetCtrlArrayItem (MWSProgressHandle, ActiveBalun), ProgressString);
    Now there is a Problem, I am not able to solve:
    During runtime, everything works out fine, I can use every element of a ControlArray with this ControlArrayHandle ("MWSProgressHandle"), everything works perfect, no errors at all. BUT, when closing the programm, I get the following error-message:
    NON-FATAL RUN-TIME ERROR:   "Baluns.c", line 313, col 16, thread id 0x00000AB8:  
    Library function error (return value == -4 [0xfffffffc]). Panel, menu bar, or control array handle is invalid
    But this seems somehow ridiulous to me, because at runtime every single line works perfect, every Array-Item can be used without Problems...
    Is there anything I am just not able to see???
    Thanks a lot for your help.
    Greeting from Lübeck, Germany!
    Mathias
    Solved!
    Go to Solution.

    Maybe I just figured something out:
    First of all, most of the Functions, that cause the Error, are in Timer-Callbacks (at this state of development, ALL of them)
    So I just added a Test-Function in a normal Button-Callback, which contains a "GetCtrlArrayItem"-Function, and this specific Line does NOT cause an Error... (Or at least it does not occur in the Error-List, when clicking "continue" in debugging-mode). Somehow the Timer-Callbacks seem to be called, when closing the Application...
    BUT: this happens when I don't do anything in the Application, and the all Timers are Disabled, until some Buttons are pushed (so when I close the application right after opening it, they still should be disabled) 
    @ Wolfgang:
    After discarding I do not want to use one of the handles, or at least I'm not doing that purposely
    @ Roberto:
    Actually I am only discaring the MainPanel-Handle in the Main.uir (and one other Panel, but the error occurred before implementing that other panel). Do all Handles (PanelHandles as well as ControlArrayHandles, TabPageHandles and so on) need to be discarded?
    And no, I did not check the Variable Window, I was not aware of this possibility, I will try to figure that out.

  • Xorg hangs and is unkillable, but only when moving the mouse

    Hello everyone!
    I have a special problem related to Xorg, my graphics card and my mouse, as it seems.
    My Setup
    I have the following setup:
    Archlinux 3.6.2-1-ARCH i686 (everything should be pretty much up-to-date)
    Motherboard: Abit BH6 (quite old though)
    2 Video Adapters: One 3Dfx Voodoo 3 (rev 01), PCI at 0:f:0 and an ATI Rage 128, AGP at 1:0:0
    Standard Microsoft PS/2 Mouse (has been working fine ever since I bought it around 2001!)
    Edit: (forgot to mention)
    My BIOS is set up to use the AGP Card to Boot, VGA BIOS Caching, Shadowing and Video RAM Shadowing are disabled alltogether.
    End Edit
    I installed Xorg as described in https://wiki.archlinux.org/index.php/Xorg. (Please find the contents of my /etc/X11/xorg.conf.d/10-configuration.conf below)
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "ForcePCIMode" # [<bool>]
    #Option "CCEPIOMode" # [<bool>]
    #Option "CCENoSecurity" # [<bool>]
    #Option "CCEusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnablePageFlip" # [<bool>]
    #Option "Display" # <str>
    #Option "PanelWidth" # <i>
    #Option "PanelHeight" # <i>
    #Option "ProgramFPRegs" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "ShowCache" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "RenderAccel" # [<bool>]
    Identifier "Card0"
    Driver "r128"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "UsePIO" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "NoSLI" # [<bool>]
    #Option "TexturedVideo" # [<bool>]
    #Option "DRI" # [<bool>]
    Identifier "Card1"
    Driver "tdfx"
    BusID "PCI:0:15:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    How to reproduce the problem
    I initially had twm installed but now I have gdm, both of which (seem to) show the exact same behavior, when doing the following:
    Start Xorg using xinit (or even startx, doesn't make a difference)
    Start your dm, for example:
    gdm dbus-launch gnome-control-center
    Move your mouse around a bit, try to login, anything will do, and wait for it to hang up - it never takes longer than a Minute
    After that, killing X using signal 15 or 9 won't work, I have to restart my computer to get another try.
    The last lines of dmesg are:
    [ 1550.681449] EXT4-fs (sda1): re-mounted. Opts: data=ordered,commit=0
    [ 1550.715635] EXT4-fs (sdb1): re-mounted. Opts: data=ordered,commit=0
    [ 1800.843311] INFO: task X:297 blocked for more than 120 seconds.
    [ 1800.843333] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 1800.843345] X D 016bde74 0 297 296 0x00400000
    [ 1800.843368] d26bded0 00000082 0826cde0 016bde74 00000000 c060c220 c06dd6c0 c06dd6c0
    [ 1800.843401] 9c9af169 0000017e d3a826c0 d26a1f20 00000000 00000000 00000000 00000003
    [ 1800.843431] d26bdeb0 00000000 d26bdec0 d2ecc136 00000000 00000000 d26bdec4 c02f39af
    [ 1800.843462] Call Trace:
    [ 1800.843517] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 1800.843545] [<c04d0fc3>] schedule+0x23/0x60
    [ 1800.843576] [<c039a077>] vga_get+0xe7/0x150
    [ 1800.843616] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 1800.843637] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 1800.843667] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 1800.843703] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 1800.843723] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1800.843743] [<c0233b48>] vfs_write+0x88/0x160
    [ 1800.843762] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1800.843783] [<c0233e3d>] sys_write+0x3d/0x80
    [ 1800.843808] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 1800.843828] INFO: task Xorg:439 blocked for more than 120 seconds.
    [ 1800.843837] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 1800.843846] Xorg D 01cebe74 0 439 438 0x00400000
    [ 1800.843865] d1cebed0 00003082 bf8b2890 01cebe74 00000000 d1cf8000 c06dd6c0 c06dd6c0
    [ 1800.843896] 00000000 00000176 d3a826c0 d2156450 00004000 00000000 00000000 d1cebea4
    [ 1800.843926] c014b8e5 00000000 d1cebec0 d2ecc4b6 00000000 00000000 d1cebec4 c02f39af
    [ 1800.843957] Call Trace:
    [ 1800.843992] [<c014b8e5>] ? __set_task_blocked+0x35/0x80
    [ 1800.844016] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 1800.844037] [<c04d0fc3>] schedule+0x23/0x60
    [ 1800.844057] [<c039a077>] vga_get+0xe7/0x150
    [ 1800.844082] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 1800.844102] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 1800.844124] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 1800.844147] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 1800.844167] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1800.844188] [<c0233b48>] vfs_write+0x88/0x160
    [ 1800.844207] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1800.844228] [<c0233e3d>] sys_write+0x3d/0x80
    [ 1800.844248] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 1920.843300] INFO: task X:297 blocked for more than 120 seconds.
    [ 1920.843321] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 1920.843333] X D 016bde74 0 297 296 0x00400000
    [ 1920.843356] d26bded0 00000082 0826cde0 016bde74 00000000 c060c220 c06dd6c0 c06dd6c0
    [ 1920.843389] 9c9af169 0000017e d3a826c0 d26a1f20 00000000 00000000 00000000 00000003
    [ 1920.843419] d26bdeb0 00000000 d26bdec0 d2ecc136 00000000 00000000 d26bdec4 c02f39af
    [ 1920.843450] Call Trace:
    [ 1920.843503] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 1920.843530] [<c04d0fc3>] schedule+0x23/0x60
    [ 1920.843561] [<c039a077>] vga_get+0xe7/0x150
    [ 1920.843600] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 1920.843620] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 1920.843650] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 1920.843685] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 1920.843705] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1920.843726] [<c0233b48>] vfs_write+0x88/0x160
    [ 1920.843745] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1920.843765] [<c0233e3d>] sys_write+0x3d/0x80
    [ 1920.843789] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 1920.843812] INFO: task Xorg:439 blocked for more than 120 seconds.
    [ 1920.843821] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 1920.843830] Xorg D 01cebe74 0 439 438 0x00400000
    [ 1920.843849] d1cebed0 00003082 bf8b2890 01cebe74 00000000 d1cf8000 c06dd6c0 c06dd6c0
    [ 1920.843880] 00000000 00000176 d3a826c0 d2156450 00004000 00000000 00000000 d1cebea4
    [ 1920.843910] c014b8e5 00000000 d1cebec0 d2ecc4b6 00000000 00000000 d1cebec4 c02f39af
    [ 1920.843941] Call Trace:
    [ 1920.843975] [<c014b8e5>] ? __set_task_blocked+0x35/0x80
    [ 1920.844000] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 1920.844021] [<c04d0fc3>] schedule+0x23/0x60
    [ 1920.844042] [<c039a077>] vga_get+0xe7/0x150
    [ 1920.844066] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 1920.844086] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 1920.844108] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 1920.844132] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 1920.844151] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1920.844171] [<c0233b48>] vfs_write+0x88/0x160
    [ 1920.844191] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 1920.844211] [<c0233e3d>] sys_write+0x3d/0x80
    [ 1920.844232] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2040.843288] INFO: task X:297 blocked for more than 120 seconds.
    [ 2040.843308] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2040.843319] X D 016bde74 0 297 296 0x00400000
    [ 2040.843341] d26bded0 00000082 0826cde0 016bde74 00000000 c060c220 c06dd6c0 c06dd6c0
    [ 2040.843374] 9c9af169 0000017e d3a826c0 d26a1f20 00000000 00000000 00000000 00000003
    [ 2040.843404] d26bdeb0 00000000 d26bdec0 d2ecc136 00000000 00000000 d26bdec4 c02f39af
    [ 2040.843435] Call Trace:
    [ 2040.843489] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2040.843515] [<c04d0fc3>] schedule+0x23/0x60
    [ 2040.843544] [<c039a077>] vga_get+0xe7/0x150
    [ 2040.843581] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2040.843601] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2040.843630] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2040.843665] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2040.843684] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2040.843705] [<c0233b48>] vfs_write+0x88/0x160
    [ 2040.843724] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2040.843745] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2040.843768] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2040.843790] INFO: task Xorg:439 blocked for more than 120 seconds.
    [ 2040.843799] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2040.843808] Xorg D 01cebe74 0 439 438 0x00400000
    [ 2040.843827] d1cebed0 00003082 bf8b2890 01cebe74 00000000 d1cf8000 c06dd6c0 c06dd6c0
    [ 2040.843858] 00000000 00000176 d3a826c0 d2156450 00004000 00000000 00000000 d1cebea4
    [ 2040.843888] c014b8e5 00000000 d1cebec0 d2ecc4b6 00000000 00000000 d1cebec4 c02f39af
    [ 2040.843919] Call Trace:
    [ 2040.843953] [<c014b8e5>] ? __set_task_blocked+0x35/0x80
    [ 2040.843977] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2040.843997] [<c04d0fc3>] schedule+0x23/0x60
    [ 2040.844018] [<c039a077>] vga_get+0xe7/0x150
    [ 2040.844043] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2040.844063] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2040.844085] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2040.844109] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2040.844129] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2040.844149] [<c0233b48>] vfs_write+0x88/0x160
    [ 2040.844168] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2040.844188] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2040.844209] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2160.843271] INFO: task X:297 blocked for more than 120 seconds.
    [ 2160.843291] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2160.843302] X D 016bde74 0 297 296 0x00400000
    [ 2160.843326] d26bded0 00000082 0826cde0 016bde74 00000000 c060c220 c06dd6c0 c06dd6c0
    [ 2160.843359] 9c9af169 0000017e d3a826c0 d26a1f20 00000000 00000000 00000000 00000003
    [ 2160.843389] d26bdeb0 00000000 d26bdec0 d2ecc136 00000000 00000000 d26bdec4 c02f39af
    [ 2160.843419] Call Trace:
    [ 2160.843473] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2160.843499] [<c04d0fc3>] schedule+0x23/0x60
    [ 2160.843529] [<c039a077>] vga_get+0xe7/0x150
    [ 2160.843567] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2160.843587] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2160.843615] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2160.843650] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2160.843670] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2160.843690] [<c0233b48>] vfs_write+0x88/0x160
    [ 2160.843710] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2160.843730] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2160.843753] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2160.843774] INFO: task Xorg:439 blocked for more than 120 seconds.
    [ 2160.843783] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2160.843793] Xorg D 01cebe74 0 439 438 0x00400000
    [ 2160.843812] d1cebed0 00003082 bf8b2890 01cebe74 00000000 d1cf8000 c06dd6c0 c06dd6c0
    [ 2160.843843] 00000000 00000176 d3a826c0 d2156450 00004000 00000000 00000000 d1cebea4
    [ 2160.843873] c014b8e5 00000000 d1cebec0 d2ecc4b6 00000000 00000000 d1cebec4 c02f39af
    [ 2160.843903] Call Trace:
    [ 2160.843938] [<c014b8e5>] ? __set_task_blocked+0x35/0x80
    [ 2160.843963] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2160.843983] [<c04d0fc3>] schedule+0x23/0x60
    [ 2160.844003] [<c039a077>] vga_get+0xe7/0x150
    [ 2160.844028] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2160.844048] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2160.844070] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2160.844094] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2160.844114] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2160.844133] [<c0233b48>] vfs_write+0x88/0x160
    [ 2160.844153] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2160.844173] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2160.844194] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2280.843266] INFO: task X:297 blocked for more than 120 seconds.
    [ 2280.843285] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2280.843296] X D 016bde74 0 297 296 0x00400000
    [ 2280.843319] d26bded0 00000082 0826cde0 016bde74 00000000 c060c220 c06dd6c0 c06dd6c0
    [ 2280.843352] 9c9af169 0000017e d3a826c0 d26a1f20 00000000 00000000 00000000 00000003
    [ 2280.843382] d26bdeb0 00000000 d26bdec0 d2ecc136 00000000 00000000 d26bdec4 c02f39af
    [ 2280.843413] Call Trace:
    [ 2280.843465] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2280.843491] [<c04d0fc3>] schedule+0x23/0x60
    [ 2280.843521] [<c039a077>] vga_get+0xe7/0x150
    [ 2280.843558] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2280.843579] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2280.843606] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2280.843641] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2280.843661] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2280.843681] [<c0233b48>] vfs_write+0x88/0x160
    [ 2280.843700] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2280.843720] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2280.843743] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    [ 2280.843764] INFO: task Xorg:439 blocked for more than 120 seconds.
    [ 2280.843774] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    [ 2280.843783] Xorg D 01cebe74 0 439 438 0x00400000
    [ 2280.843802] d1cebed0 00003082 bf8b2890 01cebe74 00000000 d1cf8000 c06dd6c0 c06dd6c0
    [ 2280.843833] 00000000 00000176 d3a826c0 d2156450 00004000 00000000 00000000 d1cebea4
    [ 2280.843863] c014b8e5 00000000 d1cebec0 d2ecc4b6 00000000 00000000 d1cebec4 c02f39af
    [ 2280.843893] Call Trace:
    [ 2280.843927] [<c014b8e5>] ? __set_task_blocked+0x35/0x80
    [ 2280.843952] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 2280.843972] [<c04d0fc3>] schedule+0x23/0x60
    [ 2280.843993] [<c039a077>] vga_get+0xe7/0x150
    [ 2280.844018] [<c016af00>] ? try_to_wake_up+0x240/0x240
    [ 2280.844038] [<c039a31e>] vga_arb_write+0x8e/0x4e0
    [ 2280.844059] [<c02abe34>] ? security_file_permission+0x24/0xb0
    [ 2280.844083] [<c02337c3>] ? rw_verify_area+0x63/0x110
    [ 2280.844103] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2280.844123] [<c0233b48>] vfs_write+0x88/0x160
    [ 2280.844142] [<c039a290>] ? vga_tryget+0xa0/0xa0
    [ 2280.844163] [<c0233e3d>] sys_write+0x3d/0x80
    [ 2280.844183] [<c04d7e1f>] sysenter_do_call+0x12/0x28
    My Logfiles
    The contents of my /var/log/Xorg.0.log are (with Xorg still running but hung)
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 1502.702] X Protocol Version 11, Revision 0
    [ 1502.703] Build Operating System: Linux 3.6.2-1-ARCH i686
    [ 1502.704] Current Operating System: Linux bora 3.6.2-1-ARCH #1 SMP PREEMPT Sat Oct 13 07:19:40 CEST 2012 i686
    [ 1502.705] Kernel command line: root=/dev/sda1 ro initrd=../initramfs-linux.img BOOT_IMAGE=../vmlinuz-linux
    [ 1502.706] Build Date: 19 October 2012 03:58:01PM
    [ 1502.707]
    [ 1502.708] Current version of pixman: 0.26.2
    [ 1502.709] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1502.710] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1502.713] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct 24 04:30:43 2012
    [ 1502.819] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1502.871] (==) ServerLayout "X.org Configured"
    [ 1502.871] (**) |-->Screen "Screen0" (0)
    [ 1502.871] (**) | |-->Monitor "Monitor0"
    [ 1502.872] (**) | |-->Device "Card0"
    [ 1502.873] (**) |-->Screen "Screen1" (1)
    [ 1502.873] (**) | |-->Monitor "Monitor1"
    [ 1502.874] (**) | |-->Device "Card1"
    [ 1502.874] (==) Automatically adding devices
    [ 1502.874] (==) Automatically enabling devices
    [ 1502.874] (==) Automatically adding GPU devices
    [ 1502.953] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 1502.953] Entry deleted from font path.
    [ 1502.953] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1502.954] Entry deleted from font path.
    [ 1502.954] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1502.954] Entry deleted from font path.
    [ 1502.955] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1502.955] Entry deleted from font path.
    [ 1502.955] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1502.956] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1502.956] Entry deleted from font path.
    [ 1502.956] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1502.956] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 1502.956] Entry deleted from font path.
    [ 1502.956] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1502.956] Entry deleted from font path.
    [ 1502.956] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1502.956] Entry deleted from font path.
    [ 1502.957] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1502.957] Entry deleted from font path.
    [ 1502.957] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1502.957] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1502.957] Entry deleted from font path.
    [ 1502.957] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1502.957] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/misc/
    [ 1502.957] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 1502.957] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 1502.980] (II) Loader magic: 0x825a620
    [ 1502.980] (II) Module ABI versions:
    [ 1502.981] X.Org ANSI C Emulation: 0.4
    [ 1502.981] X.Org Video Driver: 13.0
    [ 1502.981] X.Org XInput driver : 18.0
    [ 1502.981] X.Org Server Extension : 7.0
    [ 1502.987] (--) PCI: (0:0:15:0) 121a:0005:121a:0036 rev 1, Mem @ 0xda000000/33554432, 0xdc000000/33554432, I/O @ 0x0000ec00/256, BIOS @ 0x????????/65536
    [ 1502.987] (--) PCI:*(0:1:0:0) 1002:5246:1002:0008 rev 0, Mem @ 0xd4000000/67108864, 0xd9000000/16384, I/O @ 0x0000d000/256, BIOS @ 0x????????/131072
    [ 1502.988] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 1502.999] Initializing built-in extension Generic Event Extension
    [ 1503.000] Initializing built-in extension SHAPE
    [ 1503.001] Initializing built-in extension MIT-SHM
    [ 1503.002] Initializing built-in extension XInputExtension
    [ 1503.002] Initializing built-in extension XTEST
    [ 1503.003] Initializing built-in extension BIG-REQUESTS
    [ 1503.004] Initializing built-in extension SYNC
    [ 1503.005] Initializing built-in extension XKEYBOARD
    [ 1503.006] Initializing built-in extension XC-MISC
    [ 1503.006] Initializing built-in extension SECURITY
    [ 1503.007] Initializing built-in extension XINERAMA
    [ 1503.008] Initializing built-in extension XFIXES
    [ 1503.009] Initializing built-in extension RENDER
    [ 1503.009] Initializing built-in extension RANDR
    [ 1503.010] Initializing built-in extension COMPOSITE
    [ 1503.010] Initializing built-in extension DAMAGE
    [ 1503.010] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1503.011] Initializing built-in extension DOUBLE-BUFFER
    [ 1503.011] Initializing built-in extension RECORD
    [ 1503.012] Initializing built-in extension DPMS
    [ 1503.012] Initializing built-in extension X-Resource
    [ 1503.013] Initializing built-in extension XVideo
    [ 1503.013] Initializing built-in extension XVideo-MotionCompensation
    [ 1503.014] Initializing built-in extension XFree86-VidModeExtension
    [ 1503.014] Initializing built-in extension XFree86-DGA
    [ 1503.015] Initializing built-in extension XFree86-DRI
    [ 1503.015] Initializing built-in extension DRI2
    [ 1503.015] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 1503.015] (II) LoadModule: "glx"
    [ 1503.033] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1503.133] (II) Module glx: vendor="X.Org Foundation"
    [ 1503.133] compiled for 1.13.0, module version = 1.0.0
    [ 1503.133] ABI class: X.Org Server Extension, version 7.0
    [ 1503.133] (==) AIGLX enabled
    [ 1503.135] Loading extension GLX
    [ 1503.135] (II) LoadModule: "r128"
    [ 1503.153] (II) Loading /usr/lib/xorg/modules/drivers/r128_drv.so
    [ 1503.218] (II) Module r128: vendor="X.Org Foundation"
    [ 1503.218] compiled for 1.13.0, module version = 6.9.1
    [ 1503.218] Module class: X.Org Video Driver
    [ 1503.218] ABI class: X.Org Video Driver, version 13.0
    [ 1503.219] (II) LoadModule: "tdfx"
    [ 1503.220] (II) Loading /usr/lib/xorg/modules/drivers/tdfx_drv.so
    [ 1503.269] (II) Module tdfx: vendor="X.Org Foundation"
    [ 1503.269] compiled for 1.13.0, module version = 1.4.5
    [ 1503.269] Module class: X.Org Video Driver
    [ 1503.270] ABI class: X.Org Video Driver, version 13.0
    [ 1503.270] (II) R128: Driver for ATI Rage 128 chipsets:
    ATI Rage 128 Mobility M3 LE (PCI), ATI Rage 128 Mobility M3 LF (AGP),
    ATI Rage 128 Mobility M4 MF (AGP), ATI Rage 128 Mobility M4 ML (AGP),
    ATI Rage 128 Pro GL PA (PCI/AGP), ATI Rage 128 Pro GL PB (PCI/AGP),
    ATI Rage 128 Pro GL PC (PCI/AGP), ATI Rage 128 Pro GL PD (PCI),
    ATI Rage 128 Pro GL PE (PCI/AGP), ATI Rage 128 Pro GL PF (AGP),
    ATI Rage 128 Pro VR PG (PCI/AGP), ATI Rage 128 Pro VR PH (PCI/AGP),
    ATI Rage 128 Pro VR PI (PCI/AGP), ATI Rage 128 Pro VR PJ (PCI/AGP),
    ATI Rage 128 Pro VR PK (PCI/AGP), ATI Rage 128 Pro VR PL (PCI/AGP),
    ATI Rage 128 Pro VR PM (PCI/AGP), ATI Rage 128 Pro VR PN (PCI/AGP),
    ATI Rage 128 Pro VR PO (PCI/AGP), ATI Rage 128 Pro VR PP (PCI),
    ATI Rage 128 Pro VR PQ (PCI/AGP), ATI Rage 128 Pro VR PR (PCI),
    ATI Rage 128 Pro VR PS (PCI/AGP), ATI Rage 128 Pro VR PT (PCI/AGP),
    ATI Rage 128 Pro VR PU (PCI/AGP), ATI Rage 128 Pro VR PV (PCI/AGP),
    ATI Rage 128 Pro VR PW (PCI/AGP), ATI Rage 128 Pro VR PX (PCI/AGP),
    ATI Rage 128 GL RE (PCI), ATI Rage 128 GL RF (AGP),
    ATI Rage 128 RG (AGP), ATI Rage 128 VR RK (PCI),
    ATI Rage 128 VR RL (AGP), ATI Rage 128 4X SE (PCI/AGP),
    ATI Rage 128 4X SF (PCI/AGP), ATI Rage 128 4X SG (PCI/AGP),
    ATI Rage 128 4X SH (PCI/AGP), ATI Rage 128 4X SK (PCI/AGP),
    ATI Rage 128 4X SL (PCI/AGP), ATI Rage 128 4X SM (AGP),
    ATI Rage 128 4X SN (PCI/AGP), ATI Rage 128 Pro ULTRA TF (AGP),
    ATI Rage 128 Pro ULTRA TL (AGP), ATI Rage 128 Pro ULTRA TR (AGP),
    ATI Rage 128 Pro ULTRA TS (AGP?), ATI Rage 128 Pro ULTRA TT (AGP?),
    ATI Rage 128 Pro ULTRA TU (AGP?)
    [ 1503.275] (II) TDFX: Driver for 3dfx Banshee/Voodoo3 chipsets: 3dfx Banshee,
    3dfx Voodoo3, 3dfx Voodoo5
    [ 1503.276] (--) using VT number 2
    [ 1503.281] (II) TDFX(1): PIO base = 0xec00
    [ 1503.281] (II) R128(0): PCI bus 1 card 0 func 0
    [ 1503.282] (==) R128(0): Depth 24, (--) framebuffer bpp 32
    [ 1503.282] (II) R128(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 1503.282] (==) R128(0): Default visual is TrueColor
    [ 1503.282] (II) Loading sub module "vgahw"
    [ 1503.282] (II) LoadModule: "vgahw"
    [ 1503.287] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 1503.331] (II) Module vgahw: vendor="X.Org Foundation"
    [ 1503.331] compiled for 1.13.0, module version = 0.1.0
    [ 1503.331] ABI class: X.Org Video Driver, version 13.0
    [ 1503.332] (II) R128(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0
    [ 1503.332] (==) R128(0): RGB weight 888
    [ 1503.332] (II) R128(0): Using 8 bits per RGB (8 bit DAC)
    [ 1503.332] (II) Loading sub module "int10"
    [ 1503.332] (II) LoadModule: "int10"
    [ 1503.333] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 1503.368] (II) Module int10: vendor="X.Org Foundation"
    [ 1503.369] compiled for 1.13.0, module version = 1.0.0
    [ 1503.369] ABI class: X.Org Video Driver, version 13.0
    [ 1503.369] (II) R128(0): initializing int10
    [ 1503.392] (II) R128(0): Primary V_BIOS segment is: 0xc000
    [ 1503.392] (--) R128(0): Chipset: "ATI Rage 128 GL RF (AGP)" (ChipID = 0x5246)
    [ 1503.392] (--) R128(0): Linear framebuffer at 0xd4000000
    [ 1503.392] (--) R128(0): MMIO registers at 0xd9000000
    [ 1503.393] (--) R128(0): VideoRAM: 16384 kByte (128-bit SDR SGRAM 1:1)
    [ 1503.393] (**) R128(0): Using external CRT for display
    [ 1503.424] (II) R128(0): Primary Display == Type 1
    [ 1503.424] (WW) R128(0): Can't determine panel dimensions, and none specified.
    Disabling programming of FP registers.
    [ 1503.424] (II) R128(0): PLL parameters: rf=2950 rd=65 min=12500 max=25000; xclk=9000
    [ 1503.424] (II) Loading sub module "ddc"
    [ 1503.424] (II) LoadModule: "ddc"
    [ 1503.424] (II) Module "ddc" already built-in
    [ 1503.424] (II) Loading sub module "vbe"
    [ 1503.425] (II) LoadModule: "vbe"
    [ 1503.425] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 1503.438] (II) Module vbe: vendor="X.Org Foundation"
    [ 1503.439] compiled for 1.13.0, module version = 1.1.0
    [ 1503.439] ABI class: X.Org Video Driver, version 13.0
    [ 1503.440] (II) R128(0): VESA BIOS detected
    [ 1503.440] (II) R128(0): VESA VBE Version 2.0
    [ 1503.440] (II) R128(0): VESA VBE Total Mem: 16384 kB
    [ 1503.440] (II) R128(0): VESA VBE OEM: ATI RAGE128
    [ 1503.440] (II) R128(0): VESA VBE OEM Software Rev: 1.0
    [ 1503.440] (II) R128(0): VESA VBE OEM Vendor: ATI Technologies Inc.
    [ 1503.440] (II) R128(0): VESA VBE OEM Product: R128
    [ 1503.440] (II) R128(0): VESA VBE OEM Product Rev: 01.00
    [ 1503.441] (II) Loading sub module "ddc"
    [ 1503.441] (II) LoadModule: "ddc"
    [ 1503.441] (II) Module "ddc" already built-in
    [ 1503.534] (II) R128(0): VESA VBE DDC supported
    [ 1503.534] (II) R128(0): VESA VBE DDC Level 2
    [ 1503.534] (II) R128(0): VESA VBE DDC transfer in appr. 2 sec.
    [ 1504.071] (II) R128(0): VESA VBE DDC read successfully
    [ 1504.072] (II) R128(0): Manufacturer: AOC Model: a781 Serial#: 11653
    [ 1504.072] (II) R128(0): Year: 2003 Week: 18
    [ 1504.072] (II) R128(0): EDID Version: 1.3
    [ 1504.072] (II) R128(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 1504.072] (II) R128(0): Sync: Separate
    [ 1504.072] (II) R128(0): Max Image Size [cm]: horiz.: 34 vert.: 27
    [ 1504.072] (II) R128(0): Gamma: 2.20
    [ 1504.073] (II) R128(0): DPMS capabilities: Off; RGB/Color Display
    [ 1504.073] (II) R128(0): First detailed timing is preferred mode
    [ 1504.073] (II) R128(0): redX: 0.631 redY: 0.354 greenX: 0.294 greenY: 0.596
    [ 1504.073] (II) R128(0): blueX: 0.143 blueY: 0.087 whiteX: 0.300 whiteY: 0.340
    [ 1504.073] (II) R128(0): Supported established timings:
    [ 1504.073] (II) R128(0): 720x400@70Hz
    [ 1504.074] (II) R128(0): 640x480@60Hz
    [ 1504.074] (II) R128(0): 640x480@67Hz
    [ 1504.074] (II) R128(0): 640x480@72Hz
    [ 1504.074] (II) R128(0): 640x480@75Hz
    [ 1504.074] (II) R128(0): 800x600@56Hz
    [ 1504.074] (II) R128(0): 800x600@60Hz
    [ 1504.074] (II) R128(0): 800x600@72Hz
    [ 1504.074] (II) R128(0): 800x600@75Hz
    [ 1504.074] (II) R128(0): 832x624@75Hz
    [ 1504.075] (II) R128(0): 1024x768@60Hz
    [ 1504.075] (II) R128(0): 1024x768@70Hz
    [ 1504.075] (II) R128(0): 1024x768@75Hz
    [ 1504.075] (II) R128(0): 1280x1024@75Hz
    [ 1504.075] (II) R128(0): Manufacturer's mask: 0
    [ 1504.075] (II) R128(0): Supported standard timings:
    [ 1504.075] (II) R128(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1504.075] (II) R128(0): Supported detailed timing:
    [ 1504.075] (II) R128(0): clock: 135.0 MHz Image Size: 340 x 270 mm
    [ 1504.076] (II) R128(0): h_active: 1280 h_sync: 1296 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 1504.076] (II) R128(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 1504.076] (II) R128(0): Serial No: T7SJ34AZ11653
    [ 1504.076] (II) R128(0): Ranges: V min: 55 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 135 MHz
    [ 1504.076] (II) R128(0): Monitor name: LM720/LM720A
    [ 1504.076] (II) R128(0): EDID (in hex):
    [ 1504.077] (II) R128(0): 00ffffffffffff0005e381a7852d0000
    [ 1504.077] (II) R128(0): 120d010368221b782aa69ca15a4b9824
    [ 1504.077] (II) R128(0): 164c57bfef0081800101010101010101
    [ 1504.077] (II) R128(0): 010101010101bc34009851002a401090
    [ 1504.077] (II) R128(0): 1300540e11000018000000ff00543753
    [ 1504.077] (II) R128(0): 4a3334415a3131363533000000fd0037
    [ 1504.077] (II) R128(0): 4b1e530d000a202020202020000000fc
    [ 1504.077] (II) R128(0): 004c4d3732302f4c4d373230410a00d5
    [ 1504.078] (II) R128(0): EDID vendor "AOC", prod id 42881
    [ 1504.078] (II) R128(0): Using EDID range info for horizontal sync
    [ 1504.078] (II) R128(0): Using EDID range info for vertical refresh
    [ 1504.078] (II) R128(0): Printing DDC gathered Modelines:
    [ 1504.078] (II) R128(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 -hsync -vsync (80.0 kHz eP)
    ... (more Modelines)
    [ 1504.080] (II) R128(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1504.081] (==) R128(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 1504.081] (II) R128(0): Monitor0: Using hsync range of 30.00-83.00 kHz
    [ 1504.081] (II) R128(0): Monitor0: Using vrefresh range of 55.00-75.00 Hz
    [ 1504.081] (II) R128(0): Monitor0: Using maximum pixel clock of 135.00 MHz
    [ 1504.081] (II) R128(0): Estimated virtual size for aspect ratio 1.2593 is 1280x1024
    [ 1504.081] (II) R128(0): Clock range: 12.50 to 250.00 MHz
    [ 1504.082] (II) R128(0): Not using default mode "640x350" (vrefresh out of range)
    ... (more Not using... - messages)
    [ 1504.087] (II) R128(0): Not using default mode "1024x768" (hsync out of range)
    [ 1504.088] (--) R128(0): Virtual size is 1280x1024 (pitch 1280)
    [ 1504.089] (**) R128(0): *Driver mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
    [ 1504.089] (II) R128(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 -hsync -vsync (80.0 kHz ezP)
    ... (more Modelines)
    [ 1504.103] (II) R128(0): Modeline "320x240"x60.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz zd)
    [ 1504.103] (**) R128(0): Display dimensions: (340, 270) mm
    [ 1504.103] (**) R128(0): DPI set to (95, 96)
    [ 1504.103] (II) Loading sub module "fb"
    [ 1504.104] (II) LoadModule: "fb"
    [ 1504.104] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1504.161] (II) Module fb: vendor="X.Org Foundation"
    [ 1504.161] compiled for 1.13.0, module version = 1.0.0
    [ 1504.161] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1504.161] (II) Loading sub module "ramdac"
    [ 1504.161] (II) LoadModule: "ramdac"
    [ 1504.161] (II) Module "ramdac" already built-in
    [ 1504.162] (II) Loading sub module "shadowfb"
    [ 1504.162] (II) LoadModule: "shadowfb"
    [ 1504.162] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 1504.176] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 1504.176] compiled for 1.13.0, module version = 1.0.0
    [ 1504.176] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1504.176] (II) R128(0): Page flipping disabled
    [ 1504.177] (!!) R128(0): For information on using the multimedia capabilities
    of this adapter, please see http://gatos.sf.net.
    [ 1504.177] (II) Loading sub module "vgahw"
    [ 1504.177] (II) LoadModule: "vgahw"
    [ 1504.178] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 1504.178] (II) Module vgahw: vendor="X.Org Foundation"
    [ 1504.179] compiled for 1.13.0, module version = 0.1.0
    [ 1504.179] ABI class: X.Org Video Driver, version 13.0
    [ 1504.179] (II) Loading sub module "int10"
    [ 1504.179] (II) LoadModule: "int10"
    [ 1504.180] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 1504.180] (II) Module int10: vendor="X.Org Foundation"
    [ 1504.180] compiled for 1.13.0, module version = 1.0.0
    [ 1504.180] ABI class: X.Org Video Driver, version 13.0
    [ 1504.180] (II) TDFX(1): Softbooting the board (through the int10 interface).
    [ 1508.298] (II) TDFX(1): Softbooting the board succeeded.
    [ 1508.298] (==) TDFX(1): Depth 24, (--) framebuffer bpp 32
    [ 1508.298] (==) TDFX(1): RGB weight 888
    [ 1508.298] (==) TDFX(1): Default visual is TrueColor
    [ 1508.299] (--) TDFX(1): Chipset: "3dfx Voodoo3"
    [ 1508.299] (--) TDFX(1): Linear framebuffer at 0xDC000000
    [ 1508.299] (--) TDFX(1): MMIO registers at addr 0xDA000000
    [ 1508.299] (--) TDFX(1): PIO registers at addr 0xEC00
    [ 1508.299] (II) TDFX(1): DRAMINIT1 read 0x40530031, programming 0x40202031 (not Banshee)
    [ 1508.300] (II) TDFX(1): TDFXInitChips: numchips = 1
    [ 1508.300] (II) TDFX(1): TDFXInitChips: cfgbits = 0x00000000, initbits = 0x00000001
    [ 1508.300] (II) TDFX(1): TDFXInitChips: mem0base = 0xda000000, mem1base = 0xdc000008
    [ 1508.300] (II) TDFX(1): TDFXInitChips: mem0size = 0x02000000, mem1size = 0x02000000
    [ 1508.300] (II) TDFX(1): TDFXInitChips: mem0bits = 0x00000005, mem1bits = 0x00000050
    [ 1508.300] (II) TDFX(1): TDFXInitChips: cfgbits = 0x00000055
    [ 1508.301] (II) TDFX(1): TDFXInitChips: MMIOAddr[0] = 0xda000000
    [ 1508.301] (II) TDFX(1): TDFXInitChips: LinearAddr[0] = 0xdc000008
    [ 1508.301] (--) TDFX(1): VideoRAM: 16384 kByte Mapping 32768 kByte
    [ 1508.302] (==) TDFX(1): Using gamma correction (1.0, 1.0, 1.0)
    [ 1508.302] (II) Loading sub module "fb"
    [ 1508.302] (II) LoadModule: "fb"
    [ 1508.302] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1508.302] (II) Module fb: vendor="X.Org Foundation"
    [ 1508.303] compiled for 1.13.0, module version = 1.0.0
    [ 1508.303] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1508.303] (II) Loading sub module "xaa"
    [ 1508.303] (II) LoadModule: "xaa"
    [ 1508.336] (WW) Warning, couldn't open module xaa
    [ 1508.336] (II) UnloadModule: "xaa"
    [ 1508.336] (II) Unloading xaa
    [ 1508.336] (EE) TDFX: Failed to load module "xaa" (module does not exist, 0)
    [ 1508.336] (WW) TDFX(1): No acceleration available
    [ 1508.336] (**) TDFX(1): ShowCache Disabled
    [ 1508.337] (**) TDFX(1): video key default 0x1e
    [ 1508.337] (II) Loading sub module "ramdac"
    [ 1508.337] (II) LoadModule: "ramdac"
    [ 1508.337] (II) Module "ramdac" already built-in
    [ 1508.337] (II) Loading sub module "i2c"
    [ 1508.337] (II) LoadModule: "i2c"
    [ 1508.337] (II) Module "i2c" already built-in
    [ 1508.337] (II) Loading sub module "ddc"
    [ 1508.338] (II) LoadModule: "ddc"
    [ 1508.338] (II) Module "ddc" already built-in
    [ 1508.338] (II) TDFX(1): I2C bus "DDC" initialized.
    [ 1508.338] (II) TDFX(1): I2C device "DDC:ddc2" registered at address 0xA0.
    [ 1508.404] (II) TDFX(1): Manufacturer: AOC Model: a781 Serial#: 2230
    [ 1508.404] (II) TDFX(1): Year: 2003 Week: 20
    [ 1508.404] (II) TDFX(1): EDID Version: 1.3
    [ 1508.404] (II) TDFX(1): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    [ 1508.404] (II) TDFX(1): Sync: Separate
    [ 1508.405] (II) TDFX(1): Max Image Size [cm]: horiz.: 34 vert.: 27
    [ 1508.405] (II) TDFX(1): Gamma: 2.20
    [ 1508.405] (II) TDFX(1): DPMS capabilities: Off; RGB/Color Display
    [ 1508.405] (II) TDFX(1): First detailed timing is preferred mode
    [ 1508.405] (II) TDFX(1): redX: 0.631 redY: 0.354 greenX: 0.294 greenY: 0.596
    [ 1508.405] (II) TDFX(1): blueX: 0.143 blueY: 0.087 whiteX: 0.300 whiteY: 0.340
    [ 1508.406] (II) TDFX(1): Supported established timings:
    [ 1508.406] (II) TDFX(1): 720x400@70Hz
    [ 1508.406] (II) TDFX(1): 640x480@60Hz
    [ 1508.406] (II) TDFX(1): 640x480@67Hz
    [ 1508.406] (II) TDFX(1): 640x480@72Hz
    [ 1508.406] (II) TDFX(1): 640x480@75Hz
    [ 1508.406] (II) TDFX(1): 800x600@56Hz
    [ 1508.406] (II) TDFX(1): 800x600@60Hz
    [ 1508.407] (II) TDFX(1): 800x600@72Hz
    [ 1508.407] (II) TDFX(1): 800x600@75Hz
    [ 1508.407] (II) TDFX(1): 832x624@75Hz
    [ 1508.407] (II) TDFX(1): 1024x768@60Hz
    [ 1508.407] (II) TDFX(1): 1024x768@70Hz
    [ 1508.407] (II) TDFX(1): 1024x768@75Hz
    [ 1508.407] (II) TDFX(1): 1280x1024@75Hz
    [ 1508.407] (II) TDFX(1): Manufacturer's mask: 0
    [ 1508.407] (II) TDFX(1): Supported standard timings:
    [ 1508.408] (II) TDFX(1): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1508.408] (II) TDFX(1): Supported detailed timing:
    [ 1508.408] (II) TDFX(1): clock: 135.0 MHz Image Size: 340 x 270 mm
    [ 1508.408] (II) TDFX(1): h_active: 1280 h_sync: 1296 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 1508.408] (II) TDFX(1): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 1508.408] (II) TDFX(1): Serial No: T7AJ35AD02230
    [ 1508.408] (II) TDFX(1): Ranges: V min: 55 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 135 MHz
    [ 1508.409] (II) TDFX(1): Monitor name: LM720/LM720A
    [ 1508.409] (II) TDFX(1): EDID (in hex):
    [ 1508.409] (II) TDFX(1): 00ffffffffffff0005e381a7b6080000
    [ 1508.409] (II) TDFX(1): 140d010368221b782aa69ca15a4b9824
    [ 1508.409] (II) TDFX(1): 164c57bfef0081800101010101010101
    [ 1508.409] (II) TDFX(1): 010101010101bc34009851002a401090
    [ 1508.409] (II) TDFX(1): 1300540e11000018000000ff00543741
    [ 1508.410] (II) TDFX(1): 4a333541443032323330000000fd0037
    [ 1508.410] (II) TDFX(1): 4b1e530d000a202020202020000000fc
    [ 1508.410] (II) TDFX(1): 004c4d3732302f4c4d373230410a00f7
    [ 1508.410] (II) TDFX(1): EDID vendor "AOC", prod id 42881
    [ 1508.410] (II) TDFX(1): Using EDID range info for horizontal sync
    [ 1508.410] (II) TDFX(1): Using EDID range info for vertical refresh
    [ 1508.410] (II) TDFX(1): Printing DDC gathered Modelines:
    [ 1508.411] (II) TDFX(1): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 -hsync -vsync (80.0 kHz eP)
    ... (more Modelines)
    [ 1508.413] (II) TDFX(1): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1508.413] (II) TDFX(1): Monitor1: Using hsync range of 30.00-83.00 kHz
    [ 1508.413] (II) TDFX(1): Monitor1: Using vrefresh range of 55.00-75.00 Hz
    [ 1508.413] (II) TDFX(1): Monitor1: Using maximum pixel clock of 135.00 MHz
    [ 1508.413] (II) TDFX(1): Estimated virtual size for aspect ratio 1.2593 is 1280x1024
    [ 1508.413] (II) TDFX(1): Clock range: 12.00 to 300.00 MHz
    [ 1508.414] (II) TDFX(1): Not using default mode "640x350" (vrefresh out of range)
    ... (more TDFX Not using... - messages)
    [ 1508.419] (II) TDFX(1): Not using default mode "1024x768" (hsync out of range)
    [ 1508.420] (--) TDFX(1): Virtual size is 1280x1024 (pitch 1280)
    [ 1508.421] (**) TDFX(1): *Driver mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
    [ 1508.421] (II) TDFX(1): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 -hsync -vsync (80.0 kHz ezP)
    [ 1508.421] (**) TDFX(1): *Driver mode "1280x1024": 135.0 MHz, 80.0 kHz, 75.0 Hz
    ... (more modelines from TDFX)
    [ 1508.435] (**) TDFX(1): *Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
    [ 1508.435] (II) TDFX(1): Modeline "320x240"x60.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz zd)
    [ 1508.435] (**) TDFX(1): Display dimensions: (340, 270) mm
    [ 1508.435] (**) TDFX(1): DPI set to (95, 96)
    [ 1508.435] (--) Depth 24 pixmap format is 32 bpp
    [ 1508.436] (II) R128(0): Acceleration of RENDER operations will be enabledupon successful loading of DRI and EXA
    [ 1508.546] (WW) R128(0): Direct rendering is not supported when VGA arb is necessary for the device
    [ 1508.547] (EE) R128(0): [dri] DRIScreenInit failed. Disabling DRI.
    [ 1508.577] (II) R128(0): Filling in EXA memory info
    [ 1508.577] (II) R128(0): Loading EXA module...
    [ 1508.577] (II) Loading sub module "exa"
    [ 1508.577] (II) LoadModule: "exa"
    [ 1508.578] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1508.632] (II) Module exa: vendor="X.Org Foundation"
    [ 1508.632] compiled for 1.13.0, module version = 2.6.0
    [ 1508.632] ABI class: X.Org Video Driver, version 13.0
    [ 1508.632] (II) R128(0): Allocating EXA driver...
    [ 1508.632] (II) R128(0): Acceleration enabled
    [ 1508.633] (II) R128(0): Filled in offs
    [ 1508.633] (II) R128(0): Going to init EXA...
    [ 1508.633] (II) R128(0): Setting up EXA callbacks
    [ 1508.633] (II) R128(0): Initalizing 2D acceleration engine...
    [ 1508.633] (II) R128(0): Initializing EXA driver...
    [ 1508.633] (II) EXA(0): Offscreen pixmap area of 11534336 bytes
    [ 1508.633] (II) EXA(0): Driver registered support for the following operations:
    [ 1508.634] (II) Solid
    [ 1508.634] (II) Copy
    [ 1508.634] (II) R128(0): EXA Acceleration enabled
    [ 1508.634] (==) R128(0): Backing store disabled
    [ 1508.635] (==) R128(0): Silken mouse enabled
    [ 1508.635] (II) R128(0): Using hardware cursor (scanline 13105)
    [ 1508.648] (==) R128(0): DPMS enabled
    [ 1508.648] (WW) R128(0): Direct rendering disabled
    [ 1508.649] (==) RandR enabled
    [ 1508.651] (II) TDFX(1): vgaHWGetIOBase: hwp->IOBase is 0x03d0
    [ 1508.651] (II) TDFX(1): Changing back offset from 0x005ff000 to 0x005fe000
    [ 1508.651] (II) TDFX(1): Not enough video memory available for textures and depth buffer
    and/or back buffer. Disabling DRI. To use DRI try lower
    resolution modes and/or a smaller virtual screen size
    [ 1508.651] (II) TDFX(1): Cursor Offset: [0x00000000,0x00001000)
    [ 1508.651] (II) TDFX(1): Fifo Offset: [0x00001000, 0x00041000)
    [ 1508.651] (II) TDFX(1): Front Buffer Offset: [0x00041000, 0x00692800)
    [ 1508.651] (II) TDFX(1): (NOT USED) Texture Offset: [0x00692800, 0x006927FF)
    [ 1508.651] (II) TDFX(1): (NOT USED) BackOffset: [0x01000000, 0x01500000)
    [ 1508.652] (II) TDFX(1): (NOT USED) DepthOffset: [0xFFFFFFFF, 0x004FFFFF)
    [ 1508.652] (II) TDFX(1): Minimum 270, Maximum 1023 lines of offscreen memory available
    [ 1508.663] (==) TDFX(1): Backing store disabled
    [ 1508.663] (==) TDFX(1): Silken mouse enabled
    [ 1508.664] (==) TDFX(1): DPMS enabled
    [ 1508.664] (WW) TDFX(1): Direct rendering disabled
    [ 1508.665] (==) RandR enabled
    [ 1508.665] (II) Found 2 VGA devices: arbiter wrapping enabled
    [ 1508.734] (II) AIGLX: Screen 0 is not DRI2 capable
    [ 1508.734] (II) AIGLX: Screen 0 is not DRI capable
    [ 1509.746] (II) AIGLX: Loaded and initialized swrast
    [ 1509.746] (II) GLX: Initialized DRISWRAST GL provider for screen 0
    [ 1509.747] (II) AIGLX: Screen 1 is not DRI2 capable
    [ 1509.747] (II) AIGLX: Screen 1 is not DRI capable
    [ 1509.752] (II) AIGLX: Loaded and initialized swrast
    [ 1509.752] (II) GLX: Initialized DRISWRAST GL provider for screen 1
    [ 1510.656] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 1510.656] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1510.657] (II) LoadModule: "evdev"
    [ 1510.658] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 1510.701] (II) Module evdev: vendor="X.Org Foundation"
    [ 1510.701] compiled for 1.13.0, module version = 2.7.3
    [ 1510.701] Module class: X.Org XInput Driver
    [ 1510.701] ABI class: X.Org XInput driver, version 18.0
    [ 1510.701] (II) Using input driver 'evdev' for 'Power Button'
    [ 1510.701] (**) Power Button: always reports core events
    [ 1510.702] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 1510.702] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1510.702] (--) evdev: Power Button: Found keys
    [ 1510.703] (II) evdev: Power Button: Configuring as keyboard
    [ 1510.703] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
    [ 1510.703] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 1510.703] (**) Option "xkb_rules" "evdev"
    [ 1510.703] (**) Option "xkb_model" "evdev"
    [ 1510.704] (**) Option "xkb_layout" "us"
    [ 1510.903] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 1510.903] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1510.904] (II) Using input driver 'evdev' for 'Power Button'
    [ 1510.904] (**) Power Button: always reports core events
    [ 1510.904] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 1510.904] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1510.904] (--) evdev: Power Button: Found keys
    [ 1510.904] (II) evdev: Power Button: Configuring as keyboard
    [ 1510.905] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 1510.905] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 1510.905] (**) Option "xkb_rules" "evdev"
    [ 1510.905] (**) Option "xkb_model" "evdev"
    [ 1510.905] (**) Option "xkb_layout" "us"
    [ 1510.910] (II) config/udev: Adding input device pac7311 (/dev/input/event4)
    [ 1510.910] (**) pac7311: Applying InputClass "evdev keyboard catchall"
    [ 1510.910] (II) Using input driver 'evdev' for 'pac7311'
    [ 1510.910] (**) pac7311: always reports core events
    [ 1510.910] (**) evdev: pac7311: Device: "/dev/input/event4"
    [ 1510.911] (--) evdev: pac7311: Vendor 0x93a Product 0x260e
    [ 1510.911] (--) evdev: pac7311: Found keys
    [ 1510.911] (II) evdev: pac7311: Configuring as keyboard
    [ 1510.911] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:07.2/usb1/1-2/input/input4/event4"
    [ 1510.911] (II) XINPUT: Adding extended input device "pac7311" (type: KEYBOARD, id 8)
    [ 1510.911] (**) Option "xkb_rules" "evdev"
    [ 1510.912] (**) Option "xkb_model" "evdev"
    [ 1510.912] (**) Option "xkb_layout" "us"
    [ 1510.916] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 1510.916] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1510.917] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 1510.917] (**) AT Translated Set 2 keyboard: always reports core events
    [ 1510.917] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 1510.917] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 1510.917] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 1510.917] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 1510.918] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 1510.918] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 1510.918] (**) Option "xkb_rules" "evdev"
    [ 1510.918] (**) Option "xkb_model" "evdev"
    [ 1510.918] (**) Option "xkb_layout" "us"
    [ 1510.923] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/event5)
    [ 1510.923] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass "evdev pointer catchall"
    [ 1510.923] (II) Using input driver 'evdev' for 'ImPS/2 Generic Wheel Mouse'
    [ 1510.923] (**) ImPS/2 Generic Wheel Mouse: always reports core events
    [ 1510.924] (**) evdev: ImPS/2 Generic Wheel Mouse: Device: "/dev/input/event5"
    [ 1510.924] (--) evdev: ImPS/2 Generic Wheel Mouse: Vendor 0x2 Product 0x5
    [ 1510.924] (--) evdev: ImPS/2 Generic Wheel Mouse: Found 3 mouse buttons
    [ 1510.924] (--) evdev: ImPS/2 Generic Wheel Mouse: Found scroll wheel(s)
    [ 1510.924] (--) evdev: ImPS/2 Generic Wheel Mouse: Found relative axes
    [ 1510.924] (--) evdev: ImPS/2 Generic Wheel Mouse: Found x and y relative axes
    [ 1510.925] (II) evdev: ImPS/2 Generic Wheel Mouse: Configuring as mouse
    [ 1510.925] (II) evdev: ImPS/2 Generic Wheel Mouse: Adding scrollwheel support
    [ 1510.925] (**) evdev: ImPS/2 Generic Wheel Mouse: YAxisMapping: buttons 4 and 5
    [ 1510.925] (**) evdev: ImPS/2 Generic Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1510.925] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event5"
    [ 1510.925] (II) XINPUT: Adding extended input device "ImPS/2 Generic Wheel Mouse" (type: MOUSE, id 10)
    [ 1510.926] (II) evdev: ImPS/2 Generic Wheel Mouse: initialized for relative axes.
    [ 1510.927] (**) ImPS/2 Generic Wheel Mouse: (accel) keeping acceleration scheme 1
    [ 1510.927] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration profile 0
    [ 1510.927] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration factor: 2.000
    [ 1510.928] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration threshold: 4
    [ 1510.930] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/mouse0)
    [ 1510.930] (II) No input driver specified, ignoring this device.
    [ 1510.930] (II) This device may have been added with another device file.
    [ 1510.932] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 1510.932] (II) No input driver specified, ignoring this device.
    [ 1510.932] (II) This device may have been added with another device file.
    Any help is appreciated.
    Last edited by e01f (2012-10-24 02:00:49)

    I added
    Option "SWCursor" "true"
    to my config, and it didn't seem to make a difference. Do those
    [ 1800.843462] Call Trace:
    [ 1800.843517] [<c02f39af>] ? string.isra.4+0x2f/0xa0
    [ 1800.843545] [<c04d0fc3>] schedule+0x23/0x60
    [ 1800.843576] [<c039a077>] vga_get+0xe7/0x150
    traces in dmesg tell you something? I regret that I am relatively new to Linux and therefore don't know much about the way drivers work, but I have been a C/C++/Pascal/PHP/... programmer for many years and have some expereince with assembler programming.
    Thanks again for your support!

  • Calling fm in new task only when it is possible.

    I'm calling a fm in a new task, and I need to check it is possible to open a new task before proceeding.
    How can I check the number of open tasks? How can I check the maximum number of tasks allowed?
    Thanks in advance.

    Hi!
    You don't have to check it, it is handled by SAP automatically.
    The only requirement, there has to be at least 3 dialog processes in your SAP system.
    For this check transaction SM50.
    Because startin an FM in a new task is an asyncronous processing, it's result is not important to your program run.
    Regards
    Tamá

  • Call Tcode S_alr_87013560 with input values when  execute the workitem

    hi all
    My requirment is to call report S_alr_87013560 with value in input fields ,when user execute the work item .
    this report needs input 1 - controlling area
    on next screen--- 2- Database profile .
    then project ID  and cost...
    and this is the first activity of workflow definition.
    Please advice me on the same.
    Thanks in advance.
    Deepanker Dwivedi

    Hello,
    Put whatever you need to do in a method of the BO associated with the workflow,
    and then create a task (TS....) that calls that method. Then the step in the
    workflow calls that task.
    To call a report as you describe I'd guess you'd need to do a SUBMIT with BDC data.
    regards
    Rick Bakker
    Hanabi Technology

  • Why is my Computer not authorized only when using the remote ?

    I am new to Itunes. I have taken a huge collection of my CDs and loaded them into Itunes having it save them as MP3 files. I can from the computer keyboard play any of them just fine. I hooked up the computer to my home theater system (including video hook up) my idea was that I could use the computer remote to control ITunes. However when I select a track using the remote I get a message telling me the computer is not authorized and I need to enter an Itunes store ID number. Whats the deal can ITunes only recognize if you purchase from them, can I not use my own purchased CDs??? -or- am I just doing something wrong? Any ideas would be welcomed, I have loaded about 16,000 tracks of music I already own. It would take forever to play each track so the remote will work. Oh, and it does, if I lay it first from the keyboard then the remote will play that track as well.... wierd

    I am on Quick Time 7.1.3
    I also tried the Option, choose library, no dice. The library is functioning fine. I plays anything I want if I work directly on the computer. It only gives the "not authorized message when I use the remote control.

  • I contacted the itunes store support and asked for  an explanation of a refund and then my first name (for the account data) was not accepted - though correct - only when cancelling the second name it went through. How can that be???

    Hello - I wonder what can have happened. I got a mail from the itunes store with the info of a refund for an App that I cannot have purchased. Then I asked for help via the support and had to fill out a form with data. My account name (first name and last name) was already there and when I finally wanted to submit my request for support it said that my first name ( there are 2 for that) was not correct. I had the idea of cancelling the 2nd 'first name = only M. and then the request was accepted.
    What might be the reason for all that turmoil? I mean the refund for s.th. that I did not buy and then the non acceptance of my first name's data?
    I appreciate a comment, aimeeh

    Make an appointment at the genius bar.
    If you went without an appointment, then it would make sense that you could be turned away.

  • How to skip the error item line only when transfering the transaction

    Hi,
    In lsmw I have header and item records.In validation, if a field in the item record is invalid, I need to pass the set of header and item records which are valid excluding that error item record.
    But, if i use skip_transaction when a error is found, the whole set of data is skipped.
    If I use skip_data when the error is found ,the whole set of data including the item with error is passing.
    I want to pass header + valid line items only.
    Useful answer will be rewarded.
    regards,
    Tanmay

    The Data Dictionary Object USER_ERRORS contain the LINE and POSITION columns which
    give you the Line number and column position where the error was detected.
    SQL> desc user_errors
    Name Null? Type
    NAME NOT NULL VARCHAR2(30)
    TYPE VARCHAR2(12)
    SEQUENCE NOT NULL NUMBER
    LINE NOT NULL NUMBER
    POSITION NOT NULL NUMBER
    TEXT NOT NULL VARCHAR2(4000)
    SQL>

  • My mac book pro is running very slow. Not only when running the internet but simply in general. What can I do to resolve this? I am thinking about resetting it to factory settings. Will this work. I believe my mac is about 4 years old.

    My mac is about 4 years old. I believe it started with lepoard but im not sure.

    Learn about what causes slow down issues here
    Why is my computer slow?
    Backup your users files to a external drive (not only TimeMachine as it will restore the problem)
    Most commonly used backup methods
    Fix your machine
    ..Step by Step to fix your Mac
    Then do a defrag
    How to safely defrag a Mac's hard drive
    Then also check out other issues
    Diagnosing network issues
    IMO a 4 year old laptop is too dated to run the new OS X bloated versions, it should have stuck with 10.6.8 max, but it's likely too late to go back now as you have too many files and programs in the later OS X versions.
    However if you don't care and have basic type files that are neutral state file formats, like they will work on any Mac/PC or Linux machine (like pictures, music files etc) then you might be interested in going back to Snow Leopard for performance.
    How to revert your Mac to Snow Leopard
    For Snow Leopard Speed Freaks

Maybe you are looking for

  • 6.0.4 Update - fixes nested ID file links info

    Hi all, I got a message from an Adobe development manager letting me know of the 6.0.4 update. Specifically they have (almost) rectified the issue where you could not find out about graphic links inside of ID docs that were placed inside another ID d

  • How to install SMP Kernel on RHEL 4

    Hi all, I am installing 2 Node RAC on VMWare on RHEL 4. For which i need to have SMP Kernel installed. As of now this is what i have. uname -a Linux abc.xyz.com 2.6.9-5.EL #1 Wed Jan 5 19:22:18 EST 2005 i686 i686 i386 GNU/Linux Kindly guide me to the

  • I can't get my table to remain uniform.

    I am a novice at creating webpage so please bear with me. I am trying to put together a Football Schedule page for a football league's website. I have uploaded the table. (Team_schedule ) to my mysql database via ms access. Status ... OK. Then I crea

  • Custom ADF Taskflow to be displayed as part of Human Task notification

    Hi all, I am trying to display a custom ADF taskflow as part of notification of a Human Task. I see multiple ways of implementing it and need guidance on how to go about this. As a first step, I created a taskflow based on the human workflow task. Th

  • I deleted an account from my iMac , how do i get it back?

    I deleted an account from my iMac , can i get it back?