Problem after Implementing BADI

Hi all,
I implemented BADI MB_MIGO_BADI  it was working fine, but it was deleted
and again trying to implement second time it is showing the message
Implementation ZTEST_MIGO migrated (see long
for instructions) and choose enhancement spot and i implemented the BADI but
this time it is not triggering.
what might  be the problem any help?
Thanks
Satish.

Dear Satish,
Once u implement  a BADI in ECC it will automatically generates the Enchament Spot. Here u deleted ur BADI implementation. Ur BADI got deleted and the enhancement for tht not get deleted. Thts y its showing error when  u r creating the second time. So implement ur badi inside the Enhancement Spot using SE19.
With Regards,
Sumodh.P

Similar Messages

  • Problem on Implementing badi ME_GUI_PO_CUST

    Hi Expert,
    I have implement BADI ME_GUI_PO_CUST, to add the new tab.
    I have managed to View the tab in Both ME21N, and ME22N with implement SUBSCRIBE and MAP_DYNPRO_FIELDS.
    method IF_EX_ME_GUI_PO_CUST~SUBSCRIBE
      DATA: ls_subscriber LIKE LINE OF re_subscribers.
      CHECK im_application = 'PO'.
      CHECK im_element = 'ITEM'.
      CLEAR re_subscribers[].
      ls_subscriber-name = subscreen1.
      ls_subscriber-dynpro = '0002'.
      ls_subscriber-program = 'ZRPP_ME_GUI_PO_CUST_SCREEN'.
      ls_subscriber-struct_name = 'CI_EKPODB'.
      ls_subscriber-label = text-001.
      ls_subscriber-position = 7.
      ls_subscriber-height = 7.
      APPEND ls_subscriber TO re_subscribers.
    METHOD : IF_EX_ME_GUI_PO_CUST~MAP_DYNPRO_FIELDS
      FIELD-SYMBOLS: <mapping> LIKE LINE OF ch_mapping.
      LOOP AT ch_mapping ASSIGNING <mapping>.
        CASE <mapping>-fieldname.
          WHEN 'ZCNUM'.      <mapping>-metafield = mmmfd_cust_01.
        ENDCASE.
      ENDLOOP.
    Method IF_EX_ME_GUI_PO_CUST~MAP_DYNPRO_FIELDS
      DATA: lw_fieldselection LIKE LINE OF ch_fieldselection.
      LOOP AT ch_fieldselection INTO lw_fieldselection.
        lw_fieldselection-fieldstatus = '+'.
        MODIFY ch_fieldselection FROM lw_fieldselection.
      ENDLOOP.
    I need to store the value, and some of thread said it required methods:
    TRANSPORT_FROM_MODEL
    TRANSPORT_TO_DYNP
    TRANSPORT_FROM_DYNP
    TRANSPORT_TO_MODEL
    I have click on the subcreen, or enter at the field, but it will not able to trigger the Above Methods.
    How do I do for the to trigger above Methods? Or Should I added some additional code at screen program? I want SAVE the data actually into EKPO.
    Thanks in advance.

    Hi Sim,
    Recently we have the same reqirement.
    You can have a look at the below code..
    First method: SUBSCRIBE  
    DATA: ls_subscriber LIKE LINE OF re_subscribers.* we want to add a customer subscreen on the Header tab
        CHECK im_application = 'PO'.
        CHECK im_element     = 'HEADER'.* each line in re_subscribers generates a subscreen. We add one subscreen in this example
        CLEAR re_subscribers[].
    * the name is a unique identifier for the subscreen and defined in this class definition
        ls_subscriber-name = subscreen1.
    * the dynpro number to use
        ls_subscriber-dynpro = '0001'.
    * the program where the dynpro can be found
        ls_subscriber-program = 'SAPLZKMMM_KAU86037'.
    * each subscreen needs his own DDIC-Structure
        ls_subscriber-struct_name = 'CI_EKKODB'.
    * a label can be defined
        ls_subscriber-label = text-001.
    * the position within the tabstrib can be defined
        ls_subscriber-position = 13.
    * the height of the screen can be defined here. Currently we suport two screen sizes:
    * value <= 7 a sevel line subscreen
    * value > 7  a 16 line subscreen
        ls_subscriber-height = 7.    APPEND ls_subscriber TO re_subscribers.Here, parameter u2018im_elementu2019 is defined as u2018HEADERu2019 as we are adding new tab in header section of PO.  
    Define a function group and take the main program and define it in ls_subscriber-program.
    Also define a sub screen with the required fields and assign it to the parameter ls_subscriber-dynpro.  
    Then method MAP_DYNPRO_FIELDS  
    FIELD-SYMBOLS: <mapping> LIKE LINE OF ch_mapping.
        LOOP AT ch_mapping ASSIGNING <mapping>.    CASE <mapping>-fieldname.      WHEN 'ZZPAYMENT_AGRE'.      <mapping>-metafield = mmmfd_cust_03.
          WHEN 'ZZPROJECT'.                     <mapping>-metafield = mmmfd_cust_04.
        ENDCASE.  ENDLOOP.  TRANSPORT_FROM_MODEL:
    DATA:     l_header       TYPE REF TO if_purchase_order_mm,
                  ls_mepoheader  TYPE mepoheader,
                  ls_customer    TYPE CI_EKKODB.*--------------------------------------------------------------------*
    * system asks to transport data from the business logic into the view
    *--------------------------------------------------------------------*    CASE im_name.      WHEN subscreen1.* is it an Header? im_model can be header or item.
            mmpur_dynamic_cast l_header im_model.
            CHECK NOT l_header IS INITIAL.* transport standard fields
            ls_mepoheader = l_header->get_data( ).* store info for later use
            MOVE-CORRESPONDING ls_mepoheader TO dynp_data_pbo.
          WHEN OTHERS.
        ENDCASE.    TRANSPORT_TO_DYNP:
    Define a FM 'ZK_KAU86037_PUSH' to push the values.CASE im_name.      WHEN subscreen1.        CALL FUNCTION 'ZK_KAU86037_PUSH'
              EXPORTING
                im_dynp_data = dynp_data_pbo.      WHEN OTHERS.
        ENDCASE.    TRANSPORT_FROM_DYNP:
      Define another FM 'ZK_KAU86037_POP'.CASE im_name.      WHEN subscreen1.        CALL FUNCTION 'ZK_KAU86037_POP'
              IMPORTING
                ex_dynp_data = dynp_data_pai.        IF dynp_data_pai NE dynp_data_pbo.
    * something has changed therefore we have to notify the framework
    * to transport data to the model
              re_changed = mmpur_yes.
            ENDIF.      WHEN OTHERS.
        ENDCASE.  TRANSPORT_TO_MODEL:     
            DATA: l_header             TYPE REF TO if_purchase_order_mm,
              ls_mepoheader        TYPE mepoheader,
              ls_customer          TYPE CI_EKKODB,
              l_po_header_handle   TYPE REF TO cl_po_header_handle_mm.*--------------------------------------------------------------------*
    * data have to be transported to business logic
    *--------------------------------------------------------------------*    CASE im_name.      WHEN subscreen1.* is it an item? im_model can be header or item.
            mmpur_dynamic_cast l_header im_model.
            CHECK NOT l_header IS INITIAL.        ls_mepoheader = l_header->get_data( ).* standard fields changed?
            IF dynp_data_pbo-zzpayment_agre   NE dynp_data_pai-zzpayment_agre
            OR dynp_data_pbo-zzproject        NE dynp_data_pai-zzproject.* update standard fields
              ls_mepoheader-zzpayment_agre   = dynp_data_pai-zzpayment_agre.
              ls_mepoheader-zzproject  = dynp_data_pai-zzproject.
              CALL METHOD l_header->set_data
                EXPORTING
                  im_data = ls_mepoheader.
            ENDIF.
          WHEN OTHERS.    ENDCASE. 
    Then we have to implement one more BADI to display the tab and update the values.
    Implement the BADI ME_PROCESS_PO_CUST. This cannot be used multiple times.  
    In this, we have methods (PROCESS_HEADER,PROCESS_ITEM).if we need to any validations for the fields we can write the logic here in this methods. In my case I need to check for the document type which I implemented in the method (PROCESS_HEADER).  
    Hope it helps you.
    Thanks
    Arbind

  • New video problems after replacing bad cap

    We are attempting to repair our first gen IMac G5 after it started having a problem with randomly shutting down. After much online research, and everything pointing towards bad capacitors, we opened up the machine and sure enough there was a bulging cap. We did the LED tests as well (fine), and ran hardware test (which also pointed to a problem on the logic board). After ringing the local Apple tech and confirming that they would only replace the whole board, not individual capacitors, we found a repair shop locally that was willing to solder on a new cap for us.
    So we've put the whole machine back together today, and again the LEDs light fine. However, now, the video is totally messed up! It starts up as far as the login screen but it'd be impossible to log in as the screen is so badly scrambled.
    Now we're trying to decide what the culprit is--incorrect reassembly? Accidental damage to the video cable during disassembly/assembly? Static electricity zapped the board at some point? Replacement cap not good enough (it's got a much higher uF and voltage rating but that seems to not be critical)?
    Any pointers on how to proceed? We're loathe to throw in the towel just yet!

    Don't throw in the towel, take it back to your local tech and have her replace the cap with one of the proper rating.

  • Could not get Custom screen in me21n after implementing Badi ME_GUI_PO_CUST

    Hi.,
    I created implementation for the badi ME_GUI_PO_CUST... but i could not get the Tab and screen in header tab.
    also used below  link in the  forum to correct the issue ....but dint help me .
    Custom screen not displaying using BADI ME_GUI_PO_CUST
    Pls help me how to go abt...
    Thanks,
    Ranjitha.

    Hi ....
    Now the tab is reflecting in me22n & me23n but not in me21n ......can anybody tell what could be the reason?
    thanks
    ranjitha

  • Transaction FBL1N not displaying offset account  after implementing BADI

    hi everyone
    I have followd the SAP note 112312 to implement a BADI  FI_ITEMS_CH_DATA in a BTE to make the fields Offset account to display
    When I went into debug mode, the table in the BADI is well populated with the offset account - gkont and gkart but on the report
    the fields are not getting displayed
    The ALV list which is displayed is taking the structure RFPOSXEXT and this structure does contain gkont and gkart but the report is without the 2 fields
    Can anybody help for this issue?
    Thanks for your help

    Hi,
    Perhaps it is related with ALV buffers. Read Note 122975 - Resetting buffering of ALV field catalog for a futher information.
    Regards
    Eduardo

  • Problem after implementing exit EXIT_SAPLEBND_002

    Hello Experts,
    I had implemented the exit EXIT_SAPLEBND_002 for triggering release strategy whenever user make any changes in Purchase order.
    Now, the problem is release strategy and versions management are not getting activated at the same time.
    If I am activating version management then release strategy getting deactivated automatically.
    How should I correct it. Please help.

    Add this code in user exit exit_saplbend_002 .
    Code=> This code use to change release status on PO amount decrease and increase.
    ================================
    **** Start of changes for Release status change on PO amount decrease .
    E_CEKKO = I_CEKKO .
    DATA : wa_bekpo type BEKPO,
           wa_ekpo TYPE ekpo,
           WA_CEKKO TYPE CEKKO,
           w_reset(1) TYPE c VALUE 'X'.
    if sy-tcode eq 'ME22N' OR sy-tcode eq 'ME22'.
    WA_CEKKO = I_CEKKO .
    IMPORT WA_CEKKO = WA_CEKKO FROM MEMORY ID 'ZREL_COST'.
    IF SY-SUBRC NE 0.
      EXPORT WA_CEKKO = WA_CEKKO TO MEMORY ID 'ZREL_COST'.
    ENDIF.
    ENDIF.
    if ( sy-tcode eq 'ME22N' OR sy-tcode eq 'ME22' )
      and sy-ucomm eq 'MESAVE' or sy-ucomm eq 'MECHECKDOC'.
    *Import/Export the origninal values.
    *Check if the limit is passed.
    LOOP AT it_bekpo INTO wa_bekpo .
    SELECT SINGLE NETWR FROM ekpo INTO wa_ekpo-netwr WHERE ebeln eq wa_bekpo-ebeln and ebelp eq wa_bekpo-ebelp.
    IF SY-SUBRC EQ 0.
    IF wa_bekpo-netwr < wa_ekpo-netwr.
        w_reset = 'X'.
      endif.
    ENDIF.
    ENDLOOP.
    *IF limit passed - reset the value to high limit beyond tolerance.
    IF w_reset = 'X'.
    E_CEKKO-GNETW = WA_CEKKO-GNETW + 1000000.
    ENDIF.
    endif.
    **** End of changes for Release status change on PO amount decrease .

  • Problems after SPS 15 - Portal BI

    Hi,
    we have problems after implementing SPS 15 for NetWeaver 7.0 in BI (SP17) and Portal(SP15).
    Webtemplates developed with WAD 3.x not working in Portal after the upgrade... Additional Excel 2000 download functionality used in BI 7.0 Templates is not working.
    Any suggestions or same problems?
    Regards
    Andreas

    Hi,
    I have tried this... Unfortunately it doesn't help.
    The 3.x Templates show no queries instead of that they are showing an empty 0AnalysisPattern...
    Preview in Portal works fine.
    Regards
    Andreas
    Edited by: Andreas Schindler on Apr 23, 2008 2:12 PM
    Excel problem is solved...

  • Problem in Implementing Filter BADI

    Hi Experts ,
               I have a problem in Implementing Standard BADI  OIJ_NOMIT_VALIDATION , this one is a Filter BADI , with Filter type OIJ_NOMITEM_CHCK . i created a implementation ZOIJ_NOMIT_VALIDATION with filter ZOIJ_NOMIT and write code in method VALIDATE . But this is not triggered. Any additional configuration needed for this ?
    Point will be awarded .
    Thanks and regards
    Renjith MP

    Hi Ranjit,
                  After implementing the Filter BADI.You can define the Filter type <b>attributes</b> section.
    Regards

  • Implementing BADI TRIP_WEB_NUMBER, problem reading a field

    Hi All,
    Have anyone implemented BADI TRIP_WEB_NUMBER before,
    Interface : IF_EX_TRIP_WEB_NUMBER
    Method:     USER_EXIT_NUMBER_INTERNAL
    I need a help.
    In this method i have exporting parameter NUMBER_RANGE TYPE INRI-NRRANGENR
    so my requirement is just to change this parameter for particular conditon.
    Problem is to make condition i need a field SCHEMA
    You can check Structure HEAD_PERIO-SCHEM
    or elset T706S OR T706T...
    I need to read that field at runtime somehow, how can i achieve that pls help.
    i can able to read only the date....
    Pls help..
    Thanks

    Find out the main program name where the variable HEAD_PERIO-SCHEMA is declared. Then you can use the ABAP call stack method to retrieve the variable like below. This method can only be used to read a variable from ABAP call stack memory, that is the variable should be available in the scope of the program which is present in the run time call stack your BADI gets called in.
    DATA: lv_name_xvbak(30)  VALUE   '(SAPMV45A)VBAK'.
    FIELD-SYMBOLS: <xvbak> TYPE  vbak.
    * Retrieve Sales order details from abap stack
    ASSIGN (lv_name_xvbak) TO <xvbak>.
    IF sy-subrc NE 0.
      EXIT.
    ENDIF.
    In the above code you can replace SAPMV45A with the main program name where field SCHEMA is available and VBAK with HEAD_PERIO (the structure or internal table where the field you want is available)
    For accessing internal tables similarly
    DATA:  lv_name_xvbap(30)  VALUE   '(SAPMV45A)XVBAP[]'.
    FIELD-SYMBOLS: <xvbap> TYPE TABLE OF vbap.
    ASSIGN (lv_name_xvbap) TO <xvbap>.
    IF sy-subrc NE 0.
      EXIT.
    ENDIF.

  • Personal hotspot missing and music volume not working and lots of other problem after updated 4s to ios8 ? Apple disappointed this time badly.

    Personal hotspot missing and music volume not working and lots of other problem after updated 4s to ios8 ? Apple disappointed this time badly.

    GO to Setting > Cellar Data > VPN Settings > Add any user and password under Personal Hotspot, then you will see it's activated again as usual

  • Long Text problem in a BADI

    Hi Everyone,
    I am implementing BADI "WORKORDER_UPDATE". The requirement is there should be no changes made on the IW32 transaction. I have successfully implemented the BADI and it is now giving an error when we try to change anything on the order in IW32.
    The problem is with the longtext. There is a field TXCHG which I used to see if there are any changes being made to the long text. When someone changes the lontext and tries to save it, it gives an error but still retains the changed longtext. The code works fine with all other changes(I mean it gives an error when they try to change anything in IW32 and will not retain the changes). But this does not happen in the case of long text. It gives an error but still has the changed long text as part of the order.
    Any suggestions on how to proceeed? I am using instance  Before_Update in this BADI.
    Thanks
    Kumar.

    Do u mean after giving the Error message, even if u come out without saving it is keeping the changes?
    If the answer to the above question is no then try the following procedure:
    Read the long text using READ_TEXT (function module) by passing the TDID, TDOBJECT, TDSPRAS, TDNAME (u can get these details by going through the menu edit-> go to header). 
    Store that in an internal table and then append all the lines of this internal table into a string Variable and assign this variable's text to the field in which long text is being displayed.
    This should work bcoz , in the database only the original Long text is stored and we are retrieving it and displaying back in the relevant field.
    Please reply if it works.....

  • Login problem after testing upgrade today

    Yeah problem after upgrade again   After i enter my username and password to login to Gnome, i get the message
    Your session only tested less than 10 seconds. If you
    have not logged out yourself, this could mean that there
    is some installation problem or that you may be out of
    diskspace. Try logging in with one of the failsafe
    sessions to see if you can fix this problem
    I sure am not out of disk space so what could the problem be? I am using windows for now till i can find a solution.
    Thanks.

    Sigi wrote:
    first do a
    pacman -Sy libstdc++5
    and see if this solves your problem (more info here)
    If this doesn't help post you /var/log/Xorg.0.log, please
    Cheers Sigi
    libstdc++5 has already been installed. Anyway here is the Xorg.0.log and xsession.errors files
    Xorg.0.log
    X Window System Version 7.0.0
    Release Date: 21 December 2005
    X Protocol Version 11, Revision 0, Release 7.0
    Build Operating System:Linux 2.6.16-ARCH i686
    Current Operating System: Linux archlinux 2.6.16-ARCH #1 SMP PREEMPT Mon May 22 21:36:23 CEST 2006 i686
    Build Date: 04 May 2006
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon May 29 19:11:49 2006
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) | |-->Monitor "My Monitor"
    (**) | |-->Device "** ATI Radeon (generic) [radeon]"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (**) FontPath set to "/usr/share/fonts/misc,/usr/share/fonts/75dpi,/usr/share/fonts/100dpi,/usr/share/fonts/TTF,/usr/share/fonts/Type1"
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.2
    X.Org Video Driver: 0.8
    X.Org XInput driver : 0.5
    X.Org Server Extension : 0.2
    X.Org Font Renderer : 0.4
    (II) Loader running on linux
    (II) LoadModule: "bitmap"
    (II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
    (II) Module bitmap: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.4
    (II) Loading font Bitmap
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules/libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 0.8
    (++) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 8086,2570 card 1043,80a5 rev 02 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 8086,2571 card 0000,0000 rev 02 class 06,04,00 hdr 01
    (II) PCI: 00:1d:0: chip 8086,24d2 card 1043,80a6 rev 02 class 0c,03,00 hdr 80
    (II) PCI: 00:1d:1: chip 8086,24d4 card 1043,80a6 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:2: chip 8086,24d7 card 1043,80a6 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:3: chip 8086,24de card 1043,80a6 rev 02 class 0c,03,00 hdr 00
    (II) PCI: 00:1d:7: chip 8086,24dd card 1043,80a6 rev 02 class 0c,03,20 hdr 00
    (II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev c2 class 06,04,00 hdr 01
    (II) PCI: 00:1f:0: chip 8086,24d0 card 0000,0000 rev 02 class 06,01,00 hdr 80
    (II) PCI: 00:1f:1: chip 8086,24db card 1043,80a6 rev 02 class 01,01,8a hdr 00
    (II) PCI: 00:1f:3: chip 8086,24d3 card 1043,80a6 rev 02 class 0c,05,00 hdr 00
    (II) PCI: 00:1f:5: chip 8086,24d5 card 1043,8095 rev 02 class 04,01,00 hdr 00
    (II) PCI: 01:00:0: chip 1002,5961 card 1002,2002 rev 01 class 03,00,00 hdr 80
    (II) PCI: 01:00:1: chip 1002,5941 card 1002,2003 rev 01 class 03,80,00 hdr 00
    (II) PCI: 02:09:0: chip 14f1,2f00 card 13e0,8d85 rev 01 class 07,80,00 hdr 00
    (II) PCI: 02:0e:0: chip 104c,8023 card 1043,808b rev 00 class 0c,00,10 hdr 00
    (II) PCI: 02:0f:0: chip 10ec,8139 card 1043,80b3 rev 10 class 02,00,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 1 I/O range:
    [0] -1 0 0x0000a000 - 0x0000afff (0x1000) IX[B]
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xfe900000 - 0xfe9fffff (0x100000) MX[B]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xd7f00000 - 0xf7efffff (0x20000000) MX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
    (II) Bus 2 I/O range:
    [0] -1 0 0x0000b000 - 0x0000b0ff (0x100) IX[B]
    [1] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
    [2] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [3] -1 0 0x0000bc00 - 0x0000bcff (0x100) IX[B]
    (II) Bus 2 non-prefetchable memory range:
    [0] -1 0 0xfea00000 - 0xfeafffff (0x100000) MX[B]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:0:0) ATI Technologies Inc RV280 [Radeon 9200] rev 1, Mem @ 0xe8000000/27, 0xfe9f0000/16, I/O @ 0xa800/8, BIOS @ 0xfe9c0000/17
    (--) PCI: (1:0:1) ATI Technologies Inc RV280 [Radeon 9200] (Secondary) rev 1, Mem @ 0xe0000000/27, 0xfe9e0000/16
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
    (II) OS-reported resource ranges:
    [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    (II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
    (II) Active PCI resource ranges:
    [0] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [1] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [2] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [3] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [4] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [5] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [6] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [7] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [9] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [10] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [11] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [12] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [13] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [14] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [15] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [18] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [20] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [21] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [22] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [23] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [24] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [1] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [2] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [3] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [4] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [5] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [6] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [7] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [9] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [10] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [11] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [12] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [13] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [14] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [15] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [17] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [18] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [19] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [20] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [21] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [22] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [23] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [24] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    (II) All system resource ranges:
    [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [5] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [6] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [7] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [8] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [9] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [10] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [11] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [12] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [13] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [14] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [15] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [16] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [17] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [18] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [21] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [22] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [23] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [24] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [25] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [26] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [27] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [28] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [29] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [30] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [31] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.2
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.4
    (II) Loading font Type1
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 7.0.0, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.4
    (II) Loading font FreeType
    (II) LoadModule: "bitmap"
    (II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
    (II) Loading font Bitmap
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading sub module "GLcore"
    (II) LoadModule: "GLcore"
    (II) Loading /usr/lib/xorg/modules/extensions/libGLcore.so
    (II) Module GLcore: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading extension GLX
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading sub module "drm"
    (II) LoadModule: "drm"
    (II) Loading /usr/lib/xorg/modules/linux/libdrm.so
    (II) Module drm: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.2
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "fglrx"
    (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
    compiled for 6.8.99.8, module version = 8.25.18
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 0.7
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.4
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.5
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.5
    (II) ATI Radeon/FireGL: The following chipsets are supported:
    RADEON 9000/9000 PRO (RV250 4966), RADEON 9000 LE (RV250 4967),
    MOBILITY FireGL 9000 (M9 4C64), MOBILITY RADEON 9000 (M9 4C66),
    RADEON 9000 PRO (D9 4C67), RADEON 9250 (RV280 5960),
    RADEON 9200 (RV280 5961), RADEON 9000 (RV280 5962),
    RADEON 9200 SE (RV280 5964), FireMV 2200 PCI (RV280 5965),
    MOBILITY RADEON 9200 (M9+ 5C61), MOBILITY RADEON 9200 (M9+ 5C63),
    FireGL 8800 (R200 5148), RADEON 8500 (R200 514C),
    RADEON 9100 (R200 514D), RADEON 8500 AIW (R200 4242),
    RADEON 9600 (RV350 4150), RADEON 9600 SE (RV350 4151),
    RADEON 9600 PRO (RV360 4152), RADEON 9600 (RV350 4E51),
    MOBILITY RADEON 9600/9700 (M10/M11 4E50),
    MOBILITY RADEON 9500 (M11 4E52), MOBILITY RADEON 9550 (M12 4E56),
    RADEON 9500 (R300 4144), RADEON 9600 TX (R300 4146),
    FireGL Z1 (R300 4147), RADEON 9700 PRO (R300 4E44),
    RADEON 9500 PRO/9700 (R300 4E45), RADEON 9600 TX (R300 4E46),
    FireGL X1 (R300 4E47), RADEON 9800 SE (R350 4148),
    RADEON 9500 (R350 4149), RADEON 9550 (RV350 4153),
    FireGL T2 (RV350 4154), RADEON 9600 (RV351 4155),
    RADEON 9800 PRO (R350 4E48), RADEON 9800 (R350 4E49),
    RADEON 9800 XT (R360 4E4A), FireGL X2-256/X2-256t (R350 4E4B),
    MOBILITY FireGL T2/T2e (M10/M11 4E54), RADEON X300 (RV370 5B60),
    RADEON X600 (RV380 5B62), RADEON X550 (RV370 5B63),
    FireGL V3100 (RV370 5B64), FireMV 2200 (RV370 5B65),
    MOBILITY RADEON X300 (M22 5460), MOBILITY RADEON X300 (M22 5461),
    MOBILITY RADEON X600 (M24 5462), MOBILITY FireGL V3100 (M22 5464),
    RADEON X600 (RV380 3E50), FireGL V3200 (RV380 3E54),
    MOBILITY RADEON X600 (M24 3150), MOBILITY RADEON X300 (M22 3152),
    MOBILITY FireGL V3200 (M24 3154), RADEON X800 (R420 4A48),
    RADEON X800 PRO (R420 4A49), RADEON X800 SE (R420 4A4A),
    RADEON X800 XT (R420 4A4B), RADEON X800 (R420 4A4C),
    FireGL X3-256 (R420 4A4D), MOBILITY RADEON 9800 (M18 4A4E),
    RADEON X800 SE (R420 4A4F),
    RADEON X800 XT Platinum Edition (R420 4A50),
    RADEON X800 VE (R420 4A54), RADEON X800 (R423 5548),
    RADEON X800 PRO (R423 5549),
    RADEON X800 XT Platinum Edition (R423 554A),
    RADEON X800 GT (R423 554B), RADEON X800 XT (R423 5D57),
    FireGL V7100 (R423 5550), FireGL V5100 (R423 5551),
    MOBILITY RADEON X800 XT (M28 5D48), MOBILITY FireGL V5100 (M28 5D49),
    MOBILITY RADEON X800 (M28 5D4A), RADEON X800 XL (R430 554D),
    RADEON X800 GT (R430 554E), RADEON X800 GTO (R430 554F),
    RADEON X850 XT Platinum Edition (R480 5D4D),
    RADEON X800 GTO (R480 5D4F), RADEON X850 XT (R480 5D52),
    RADEON X850 (R481 4B48), RADEON X850 XT (R481 4B49),
    RADEON X850 SE (R481 4B4A), RADEON X850 PRO (R481 4B4B),
    RADEON X850 XT Platinum Edition (R481 4B4C),
    MOBILITY FireGL V5000 (M26 564A), MOBILITY FireGL V5000 (M26 564B),
    FireGL V5000 (RV410 5E48), FireGL V3300 (RV410 5E49),
    RADEON X700 XT (RV410 5E4A), RADEON X700 PRO (RV410 5E4B),
    RADEON X700 SE (RV410 5E4C), RADEON X700 (RV410 5E4D),
    RADEON X700 (RV410 5E4F), MOBILITY RADEON X700 (M26 5652),
    MOBILITY RADEON X700 (M26 5653), MOBILITY RADEON X700 XL,
    RADEON 9100 IGP (RS300 5834),
    RADEON 9000 PRO/9100 PRO IGP (RS350 7834),
    MOBILITY RADEON 9000/9100 IGP (RS300M 5835),
    RADEON XPRESS 200 (RS400 5A41), RADEON XPRESS 200M (RS400 5A42),
    RADEON XPRESS 200 (RS480 5954), RADEON XPRESS 200M (RS480 5955),
    RADEON XPRESS 200 (RS482 5974), RADEON XPRESS 200M (RS482 5975),
    RADEON XPRESS 200 (RC410 5A61), RADEON XPRESS 200M (RC410 5A62),
    RADEON X1800 (R520 7100), MOBILITY RADEON X1800 (M58 7101),
    MOBILITY RADEON X1800 (M58 7102), MOBILITY FireGL V7200 (M58 7103),
    FireGL V7200 (R520 7104), FireGL V5300 (R520 7105),
    MOBILITY FireGL V7100 (M58 7106), RADEON X1800 XT (R520 7108),
    RADEON X1800 PRO (R520 7109), RADEON X1800 SE (R520 710A),
    RADEON X1800 (R520 710B), RADEON X1800 (R520 710C),
    FireGL V7300 (R520 710E), FireGL V7350 (R520 710F),
    RADEON X1300 PRO (RV505 7143), RADEON X1300 (RV505 7147),
    MOBILITY RADEON X1300 (M52 714B), MOBILITY RADEON X1300 (M52 714C),
    RADEON X1300 (RV505 715F), RADEON X1300 XT (RV515 7140),
    RADEON X1300 PRO (RV515 7142), MOBILITY FireGL (M54 GL 7144),
    MOBILITY RADEON X1400 (M54 7145), RADEON X1300 LE (RV515 7146),
    MOBILITY RADEON X1300 (M52 7149), MOBILITY RADEON X1300 (M52 714A),
    RADEON X1300 SE (RV515 714E), FireGL V3300 (RV515 7152),
    RADEON X1300 VE (RV515 715E), RADEON X1300 (RV516 7180),
    RADEON X1300 (RV516 7183), RADEON X1300 (RV516 7187),
    RADEON X1900 (R580 7240), RADEON X1900 (R580 7243),
    RADEON X1900 (R580 7244), RADEON X1900 (R580 7245),
    RADEON X1900 (R580 7246), RADEON X1900 (R580 7247),
    RADEON X1900 (R580 7248), RADEON X1900 (R580 7249),
    RADEON X1900 (R580 724A), RADEON X1900 (R580 724B),
    RADEON X1900 (R580 724C), RADEON X1900 (R580 724D),
    RADEON X1900 (R580 724E), RADEON X1900 (R580 724F),
    RADEON X1600 XT (RV530 71C0), RADEON X1600 PRO (RV530 71C2),
    MOBILITY FireGL V5200 (M56 71C4), MOBILITY RADEON X1600 (M56 71C5),
    RADEON (RV530 LE 71C6), RADEON (RV530 VE 71CE),
    FireGL V3400 (RV530 71D2), FireGL V5200 (RV530 71DA),
    RADEON (RV530 SE 71DE)
    (II) Primary Device is: PCI 01:00:0
    (II) ATI Proprietary Linux Driver Version Identifier:8.25.18
    (II) ATI Proprietary Linux Driver Release Identifier: LGDr8.25g1
    (II) ATI Proprietary Linux Driver Build Date: May 18 2006 09:54:44
    (II) ATI Proprietary Linux Driver Build Information: autobuild-rel-r6-8.25.1-driver-lnx-268237
    (WW) fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
    (--) Chipset RADEON 9200 (RV280 5961) found
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [5] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [6] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [7] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [8] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [9] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [10] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [11] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [12] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [13] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [14] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [15] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [16] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [17] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [18] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [21] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [22] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [23] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [24] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [25] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [26] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [27] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [28] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [29] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [30] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [31] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    (II) fglrx(0): pEnt->device->identifier=0x81fe980
    (II) resource ranges after probing:
    [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [5] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [6] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [7] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [8] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [9] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [10] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [11] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [12] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [13] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [14] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [15] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [16] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [17] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [18] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [19] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
    [20] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [21] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [23] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [24] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [25] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [26] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [27] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [28] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [29] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [30] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [31] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [32] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [33] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [34] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    [35] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
    [36] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
    (II) Setting vga for screen 0.
    (II) fglrx(0): === [R200PreInit] === begin, [s]
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules/libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 0.8
    (II) fglrx(0): PCI bus 1 card 0 func 0
    (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) fglrx(0): Default visual is TrueColor
    (**) fglrx(0): Option "NoAccel" "no"
    (**) fglrx(0): Option "NoDRI" "no"
    (**) fglrx(0): Option "Capabilities" "0x00000000"
    (**) fglrx(0): Option "CapabilitiesEx" "0x00000000"
    (**) fglrx(0): Option "GammaCorrectionI" "0x0dc370dc"
    (**) fglrx(0): Option "GammaCorrectionII" "0x06419064"
    (**) fglrx(0): Option "OpenGLOverlay" "off"
    (**) fglrx(0): Option "VideoOverlay" "on"
    (**) fglrx(0): Option "DesktopSetup" "(null)"
    (**) fglrx(0): Option "ScreenOverlap" "0"
    (**) fglrx(0): Option "UseInternalAGPGART" "yes"
    (**) fglrx(0): Option "Stereo" "off"
    (**) fglrx(0): Option "StereoSyncEnable" "1"
    (**) fglrx(0): Option "UseFastTLS" "0"
    (**) fglrx(0): Option "BlockSignalsOnLock" "on"
    (**) fglrx(0): Option "ForceGenericCPU" "no"
    (**) fglrx(0): Option "CenterMode" "off"
    (**) fglrx(0): Option "FSAAScale" "1"
    (**) fglrx(0): Option "FSAAEnable" "no"
    (**) fglrx(0): Option "EnablePrivateBackZ" "yes"
    (**) fglrx(0): Option "FSAADisableGamma" "no"
    (**) fglrx(0): Option "FSAACustomizeMSPos" "no"
    (**) fglrx(0): Option "FSAAMSPosX0" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY0" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosX1" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY1" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosX2" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY2" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosX3" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY3" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosX4" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY4" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosX5" "0.000000"
    (**) fglrx(0): Option "FSAAMSPosY5" "0.000000"
    (**) fglrx(0): Option "PseudoColorVisuals" "off"
    (==) fglrx(0): RGB weight 888
    (II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
    (**) fglrx(0): Gamma Correction for I is 0x0dc370dc
    (**) fglrx(0): Gamma Correction for II is 0x06419064
    (==) fglrx(0): Buffer Tiling is ON
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules/libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 0.8
    (II) fglrx(0): Primary V_BIOS segment is: 0xc000
    (**) fglrx(0): Option "mtrr" "off"
    (--) fglrx(0): Chipset: "RADEON 9200 (RV280 5961)" (Chipset = 0x5961)
    (--) fglrx(0): (PciSubVendor = 0x1002, PciSubDevice = 0x2002)
    (--) fglrx(0): board vendor info: original ATI graphics adapter
    (--) fglrx(0): Linear framebuffer (phys) at 0xe8000000
    (--) fglrx(0): MMIO registers at 0xfe9f0000
    (==) fglrx(0): ROM-BIOS at 0x000c0000
    (II) Loading sub module "vbe"
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules/libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.1.0
    ABI class: X.Org Video Driver, version 0.8
    (II) fglrx(0): VESA BIOS detected
    (II) fglrx(0): VESA VBE Version 2.0
    (II) fglrx(0): VESA VBE Total Mem: 131072 kB
    (II) fglrx(0): VESA VBE OEM: ATI RADEON 9200
    (II) fglrx(0): VESA VBE OEM Software Rev: 1.0
    (II) fglrx(0): VESA VBE OEM Vendor: ATI Technologies Inc.
    (II) fglrx(0): VESA VBE OEM Product: V280
    (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
    (II) Loading sub module "drm"
    (II) LoadModule: "drm"
    (II) Reloading /usr/lib/xorg/modules/linux/libdrm.so
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: Open failed
    [drm] failed to load kernel module "fglrx"
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
    compiled for 6.8.99.8, module version = 8.25.18
    ABI class: X.Org Server Extension, version 0.2
    (EE) fglrx(0): Fail to initialize ASIC in kernel.
    (--) fglrx(0): VideoRAM: 131072 kByte, Type: DDR SGRAM / SDRAM
    (II) fglrx(0): AGP card detected
    (II) fglrx(0): board/chipset is supported by this driver (original ATI board)
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Loading /usr/lib/xorg/modules/libddc.so
    (II) Module ddc: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org Video Driver, version 0.8
    (II) fglrx(0): Connected Display1: CRT on primary DAC
    (II) fglrx(0): Display1 EDID data ---------------------------
    (II) fglrx(0): Manufacturer: PAT Model: 2002 Serial#: 189
    (II) fglrx(0): Year: 2004 Week: 44
    (II) fglrx(0): EDID Version: 1.3
    (II) fglrx(0): Analog Display Input, Input Voltage Level: 0.700/0.700 V
    (II) fglrx(0): Sync: Separate
    (II) fglrx(0): Max H-Image Size [cm]: horiz.: 34 vert.: 27
    (II) fglrx(0): Gamma: 2.20
    (II) fglrx(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    (II) fglrx(0): First detailed timing is preferred mode
    (II) fglrx(0): GTF timings supported
    (II) fglrx(0): redX: 0.631 redY: 0.354 greenX: 0.294 greenY: 0.596
    (II) fglrx(0): blueX: 0.143 blueY: 0.087 whiteX: 0.300 whiteY: 0.340
    (II) fglrx(0): Supported VESA Video Modes:
    (II) fglrx(0): 720x400@70Hz
    (II) fglrx(0): 640x480@60Hz
    (II) fglrx(0): 640x480@67Hz
    (II) fglrx(0): 640x480@72Hz
    (II) fglrx(0): 640x480@75Hz
    (II) fglrx(0): 800x600@56Hz
    (II) fglrx(0): 800x600@60Hz
    (II) fglrx(0): 800x600@72Hz
    (II) fglrx(0): 800x600@75Hz
    (II) fglrx(0): 832x624@75Hz
    (II) fglrx(0): 1024x768@60Hz
    (II) fglrx(0): 1024x768@70Hz
    (II) fglrx(0): 1024x768@75Hz
    (II) fglrx(0): 1280x1024@75Hz
    (II) fglrx(0): Manufacturer's mask: 0
    (II) fglrx(0): Supported Future Video Modes:
    (II) fglrx(0): #0: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    (II) fglrx(0): #1: hsize: 1280 vsize 1024 refresh: 75 vid: 36737
    (II) fglrx(0): #2: hsize: 1024 vsize 768 refresh: 60 vid: 16481
    (II) fglrx(0): #3: hsize: 1024 vsize 768 refresh: 70 vid: 19041
    (II) fglrx(0): #4: hsize: 1024 vsize 768 refresh: 75 vid: 20321
    (II) fglrx(0): #5: hsize: 800 vsize 600 refresh: 60 vid: 16453
    (II) fglrx(0): #6: hsize: 800 vsize 600 refresh: 70 vid: 19013
    (II) fglrx(0): #7: hsize: 800 vsize 600 refresh: 75 vid: 20293
    (II) fglrx(0): Supported additional Video Mode:
    (II) fglrx(0): clock: 108.0 MHz Image Size: 338 x 270 mm
    (II) fglrx(0): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    (II) fglrx(0): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    (II) fglrx(0): Ranges: V min: 50 V max: 75 Hz, H min: 30 H max: 82 kHz, PixClock max 140 MHz
    (II) fglrx(0): Serial No: 00189
    (II) fglrx(0): Monitor name: LCD-MONITOR
    (II) fglrx(0): End of Display1 EDID data --------------------
    (WW) fglrx(0): Specified desktop setup not supported: 8
    (II) fglrx(0): Primary Controller - CRT on primary DAC
    (II) fglrx(0): Internal Desktop Setting: 0x00000004
    (II) fglrx(0): POWERplay version 3. 1 power state available:
    (II) fglrx(0): 1. 250/164MHz @ 50Hz [enable load balancing]
    (**) fglrx(0): Qbs disabled
    (==) fglrx(0): FAST_SWAP disabled
    (**) fglrx(0): PseudoColor visuals disabled
    (==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) fglrx(0): Center Mode is disabled
    (==) fglrx(0): TMDS coherent mode is enabled
    (II) fglrx(0): Total of 39 modes found for primary display.
    (--) fglrx(0): Virtual size is 1280x1024 (pitch 1280)
    (**) fglrx(0): *Mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "1280x1024" 135.00 1280 1296 1440 1688 1024 1025 1028 1066
    (**) fglrx(0): Default mode "1280x1024": 128.9 MHz (scaled from 0.0 MHz), 74.6 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "1280x1024" 128.94 1280 1368 1504 1728 1024 1025 1028 1066 +hsync
    (**) fglrx(0): Default mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1280x1024" 108.00 1280 1328 1440 1688 1024 1025 1028 1066
    (**) fglrx(0): Default mode "1280x1024": 85.5 MHz (scaled from 0.0 MHz), 50.9 kHz, 47.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024" 85.51 1280 1344 1480 1680 1024 1025 1028 1083 interlace +hsync
    (**) fglrx(0): Default mode "1280x1024": 77.8 MHz (scaled from 0.0 MHz), 46.3 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1280x1024" 77.80 1280 1344 1480 1680 1024 1025 1028 1077 interlace +hsync
    (**) fglrx(0): *Mode "1024x768": 94.5 MHz (scaled from 0.0 MHz), 68.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "1024x768" 94.50 1024 1072 1168 1376 768 769 772 808
    (**) fglrx(0): Default mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.0 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "1024x768" 78.75 1024 1040 1136 1312 768 769 772 800
    (**) fglrx(0): Default mode "1024x768": 78.4 MHz (scaled from 0.0 MHz), 57.7 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "1024x768" 78.43 1024 1080 1192 1360 768 769 772 801 +hsync
    (**) fglrx(0): Default mode "1024x768": 75.0 MHz (scaled from 0.0 MHz), 56.5 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "1024x768" 75.00 1024 1048 1184 1328 768 771 777 806 +hsync +vsync
    (**) fglrx(0): Default mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1024x768" 65.00 1024 1048 1184 1344 768 771 777 806 +hsync +vsync
    (**) fglrx(0): Default mode "1024x768": 44.9 MHz (scaled from 0.0 MHz), 35.5 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1024x768" 44.90 1024 1032 1208 1264 768 768 772 817 interlace
    (**) fglrx(0): Default mode "1024x768": 100.2 MHz (scaled from 0.0 MHz), 72.8 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "1024x768" 100.19 1024 1088 1200 1376 768 769 772 809 +hsync
    (**) fglrx(0): *Mode "800x600": 56.2 MHz (scaled from 0.0 MHz), 53.7 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "800x600" 56.25 800 832 896 1048 600 601 604 631
    (**) fglrx(0): Default mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "800x600" 49.50 800 816 896 1056 600 601 604 625
    (**) fglrx(0): Default mode "800x600": 50.0 MHz (scaled from 0.0 MHz), 48.1 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "800x600" 50.00 800 856 976 1040 600 637 643 666
    (**) fglrx(0): Default mode "800x600": 45.5 MHz (scaled from 0.0 MHz), 43.8 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "800x600" 45.50 800 840 920 1040 600 601 604 625 +hsync
    (**) fglrx(0): Default mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "800x600" 40.00 800 840 968 1056 600 601 605 628
    (**) fglrx(0): Default mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.0 Hz
    (II) fglrx(0): Modeline "800x600" 36.00 800 824 896 1024 600 601 603 625
    (**) fglrx(0): Default mode "800x600": 60.1 MHz (scaled from 0.0 MHz), 56.9 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "800x600" 60.06 800 840 928 1056 600 601 604 632 +hsync
    (**) fglrx(0): *Mode "640x480": 36.0 MHz (scaled from 0.0 MHz), 43.3 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "640x480" 36.00 640 696 752 832 480 481 484 509 +hsync +vsync
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x480" 31.50 640 656 720 840 480 481 484 500 +hsync +vsync
    (**) fglrx(0): Default mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.9 kHz, 72.0 Hz
    (II) fglrx(0): Modeline "640x480" 31.50 640 664 704 832 480 489 492 520 +hsync +vsync
    (**) fglrx(0): Default mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x480" 25.18 640 656 752 800 480 490 492 525 +hsync +vsync
    (**) fglrx(0): Default mode "640x480": 37.9 MHz (scaled from 0.0 MHz), 45.5 kHz, 90.0 Hz
    (II) fglrx(0): Modeline "640x480" 37.89 640 672 736 832 480 481 484 506 +hsync
    (**) fglrx(0): Default mode "1152x864": 119.7 MHz (scaled from 0.0 MHz), 77.1 kHz, 85.0 Hz
    (II) fglrx(0): Modeline "1152x864" 119.65 1152 1224 1352 1552 864 865 868 907 +hsync
    (**) fglrx(0): Default mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "1152x864" 108.00 1152 1216 1344 1600 864 865 868 900
    (**) fglrx(0): Default mode "1152x864": 96.8 MHz (scaled from 0.0 MHz), 63.0 kHz, 70.0 Hz
    (II) fglrx(0): Modeline "1152x864" 96.77 1152 1224 1344 1536 864 865 868 900 +hsync
    (**) fglrx(0): Default mode "1152x864": 81.6 MHz (scaled from 0.0 MHz), 53.7 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "1152x864" 81.62 1152 1216 1336 1520 864 865 868 895 +hsync
    (**) fglrx(0): Default mode "1152x864": 64.7 MHz (scaled from 0.0 MHz), 43.0 kHz, 47.0 Hz (I)
    (II) fglrx(0): Modeline "1152x864" 64.68 1152 1208 1328 1504 864 865 868 915 interlace +hsync
    (**) fglrx(0): Default mode "1152x864": 58.3 MHz (scaled from 0.0 MHz), 39.2 kHz, 43.0 Hz (I)
    (II) fglrx(0): Modeline "1152x864" 58.29 1152 1200 1320 1488 864 865 868 911 interlace +hsync
    (**) fglrx(0): Default mode "640x400": 28.1 MHz (scaled from 0.0 MHz), 33.7 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "640x400" 28.07 640 696 736 832 400 413 415 449
    (**) fglrx(0): Default mode "640x400": 24.9 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    (II) fglrx(0): Modeline "640x400" 24.92 640 664 760 792 400 460 462 525
    (**) fglrx(0): Default mode "512x384": 19.7 MHz (scaled from 0.0 MHz), 31.1 kHz, 75.0 Hz
    (II) fglrx(0): Modeline "512x384" 19.68 512 528 576 632 384 384 385 416
    (**) fglrx(0): Default mode "400x300": 24.8 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "400x300" 24.75 400 408 448 528 150 601 602 625 doublescan
    (**) fglrx(0): Default mode "400x300": 22.3 MHz (scaled from 0.0 MHz), 45.0 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "400x300" 22.33 400 416 480 496 150 601 605 742 doublescan
    (**) fglrx(0): Default mode "320x240": 15.8 MHz (scaled from 0.0 MHz), 37.9 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x240" 15.75 320 328 360 416 120 481 482 501 doublescan
    (**) fglrx(0): Default mode "320x240": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x240" 12.59 320 328 376 400 120 491 493 525 doublescan
    (**) fglrx(0): Default mode "320x200": 13.1 MHz (scaled from 0.0 MHz), 31.5 kHz, 75.0 Hz (D)
    (II) fglrx(0): Modeline "320x200" 13.10 320 352 368 416 100 406 407 417 doublescan
    (**) fglrx(0): Default mode "320x200": 12.6 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz (D)
    (II) fglrx(0): Modeline "320x200" 12.59 320 336 384 400 100 457 459 524 doublescan
    (--) fglrx(0): Display dimensions: (340, 270) mm
    (--) fglrx(0): DPI set to (95, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.2
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Loading /usr/lib/xorg/modules/libramdac.so
    (II) Module ramdac: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 0.1.0
    ABI class: X.Org Video Driver, version 0.8
    (**) fglrx(0): NoAccel = NO
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules/libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
    compiled for 7.0.0, module version = 1.2.0
    ABI class: X.Org Video Driver, version 0.8
    (==) fglrx(0): HPV inactive
    (==) fglrx(0): FSAA enabled: NO
    (**) fglrx(0): FSAA Gamma enabled
    (**) fglrx(0): FSAA Multisample Position is fix
    (**) fglrx(0): NoDRI = NO
    (II) Loading sub module "fglrxdrm"
    (II) LoadModule: "fglrxdrm"
    (II) Reloading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    (II) fglrx(0): Depth moves disabled by default
    (**) fglrx(0): Capabilities: 0x00000000
    (**) fglrx(0): CapabilitiesEx: 0x00000000
    (**) fglrx(0): cpuFlags: 0x8000001d
    (**) fglrx(0): cpuSpeedMHz: 0x00000af0
    (==) fglrx(0): OpenGL ClientDriverName: "atiogl_a_dri.so"
    (**) fglrx(0): using built in AGPGART module: yes
    (**) fglrx(0): UseFastTLS=0
    (**) fglrx(0): BlockSignalsOnLock=1
    (**) fglrx(0): EnablePrivateBackZ = YES
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B]
    [1] 0 0 0xe8000000 - 0xefffffff (0x8000000) MX[B]
    [2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
    [3] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    [4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
    [5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
    [6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
    [7] -1 0 0xfeaef400 - 0xfeaef4ff (0x100) MX[B]
    [8] -1 0 0xfeae8000 - 0xfeaebfff (0x4000) MX[B]
    [9] -1 0 0xfeaef800 - 0xfeaeffff (0x800) MX[B]
    [10] -1 0 0xfeaf0000 - 0xfeafffff (0x10000) MX[B]
    [11] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
    [12] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
    [13] -1 0 0x50000000 - 0x500003ff (0x400) MX[B]
    [14] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
    [15] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
    [16] -1 0 0xfe9e0000 - 0xfe9effff (0x10000) MX[B](B)
    [17] -1 0 0xe0000000 - 0xe7ffffff (0x8000000) MX[B](B)
    [18] -1 0 0xfe9c0000 - 0xfe9dffff (0x20000) MX[B](B)
    [19] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
    [20] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
    [21] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
    [22] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [23] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
    [24] 0 0 0x0000a800 - 0x0000a8ff (0x100) IX[B]
    [25] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
    [26] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
    [27] -1 0 0x0000b800 - 0x0000b8ff (0x100) IX[B]
    [28] -1 0 0x0000bc00 - 0x0000bc07 (0x8) IX[B]
    [29] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
    [30] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
    [31] -1 0 0x00000400 - 0x0000041f (0x20) IX[B]
    [32] -1 0 0x0000fc00 - 0x0000fc0f (0x10) IX[B]
    [33] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
    [34] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
    [35] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
    [36] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
    [37] -1 0 0x0000a800 - 0x0000a8ff (0x100) IX[B](B)
    [38] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
    [39] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
    (II) fglrx(0): UMM Bus area: 0xe8701000 (size=0x078ff000)
    (II) fglrx(0): UMM area: 0xe8701000 (size=0x078ff000)
    (II) fglrx(0): driver needs X.org 6.8.x.y with x.y >= 99.8
    (II) fglrx(0): detected X.org 7.0.0.0
    (II) Loading extension ATIFGLRXDRI
    (II) fglrx(0): doing DRIScreenInit
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: Open failed
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: open result is -1, (No such device or address)
    drmOpenDevice: Open failed
    [drm] failed to load kernel module "fglrx"
    (II) fglrx(0): [drm] drmOpen failed
    (EE) fglrx(0): DRIScreenInit failed!
    (WW) fglrx(0): ***********************************************
    (WW) fglrx(0): * DRI initialization failed! *
    (WW) fglrx(0): * (maybe driver kernel module missing or bad) *
    (WW) fglrx(0): * 2D acceleraton available (MMIO) *
    (WW) fglrx(0): * no 3D acceleration available *
    (WW) fglrx(0): ********************************************* *
    (II) fglrx(0): FBADPhys: 0xe8000000 FBMappedSize: 0x08000000
    (II) fglrx(0): FBMM initialized for area (0,0)-(1280,8191)
    (II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
    (==) fglrx(0): Backing store disabled
    (==) fglrx(0): Silken mouse enabled
    (II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
    Screen to screen bit blits
    Solid filled rectangles
    Solid Horizontal and Vertical Lines
    Offscreen Pixmaps
    Setting up tile and stipple cache:
    32 128x128 slots
    32 256x256 slots
    16 512x512 slots
    (II) fglrx(0): Acceleration enabled
    (II) fglrx(0): Direct rendering disabled
    (==) fglrx(0): Using hardware cursor
    (II) fglrx(0): Largest offscreen area available: 1280 x 7163
    (II) Loading extension FGLRXEXTENSION
    (II) Loading extension ATITVOUT
    (==) RandR enabled
    (II) Setting vga for screen 0.
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension LBX
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (**) Option "Protocol" "IMPS/2"
    (**) Mouse1: Device: "/dev/input/mice"
    (**) Mouse1: Protocol: "IMPS/2"
    (**) Option "CorePointer"
    (**) Mouse1: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse1: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard1: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard1: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard1: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard1: XkbModel: "pc105"
    (**) Option "XkbLayout" "gb"
    (**) Keyboard1: XkbLayout: "gb"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard1: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
    (II) Mouse1: ps2EnableDataReporting: succeeded
    AUDIT: Mon May 29 19:12:06 2006: 3974 X: client 3 rejected from local host
    AUDIT: Mon May 29 19:12:06 2006: 3974 X: client 3 rejected from local host
    xsession.errors
    /opt/gnome/etc/gdm/PreSession/Default: Registering your session with wtmp and utmp
    /opt/gnome/etc/gdm/PreSession/Default: running: /usr/bin/sessreg -a -w /var/log/wtmp -u /var/run/utmp -x "/opt/gnome/var/gdm/:0.Xservers" -h "" -l ":0" "napoleon"
    /opt/gnome/etc/gdm/Xsession: Beginning session setup...
    /opt/gnome/etc/gdm/Xsession: ssh-agent not found!
    /opt/gnome/etc/gdm/Xsession: Setup done, will execute: /usr/bin/dbus-launch /opt/gnome/bin/gnome-session
    Failed to start message bus: Failed to read directory "/opt/kde/share/dbus-1/services": No such file or directory
    EOF in dbus-launch reading address from bus daemon
    thanks

  • Implementing BADI BDCP_BEFORE_WRITE

    Dear Experts,
    I have implemented BADI BDCP_BEFORE_WRITE for a message type /SAPSLL/CREMAS_SLL.
    I have also added code to the method FILTER_BDCPV_BEFORE_WRITE.
    I have also placed a break point inside the implmented method. But at runtime I am unable to stop at the break point.
    At runtime I found that the class name associated to BADI at run time was found to be CL_EXM_IM_BDCP_BEFORE_WRITE(example class) and not ZCL_IM__BDCP_BEFORE_WRITE which I have used to implement.
    Also, the update debugger is on.
    Why does the system not halt at the breakpoint inside the implemented method?
    Regards,
    Jiten

    Hi Nabheet,
    Thanks for your reply.
    Yes. There is only one active BADI for a particular filter condition. Actually the change pointer was not activated for the required message type(which was also filter condition) and hence I was having the problem.
    After activating the change pointers I am now able to halt at the breakpoint in the required method.
    Thanks,
    Jiten

  • Implement badi for vms isolate action

    Dear expert,
      I am developing the VMS(vehicle management system) action which is set as "isolate" action.
      I use badi for isolate action to perform execution logic (like update ztable and populate some value to VMS table).
      but the problem is, the history of vehicle, status of vehicle and green light at navigation pannel is not updated even the message display successful.
      Do I need to put some FM call after execute logic within this isolate badi?
      Can some give me some sample?
       Thank a lot.
    Regards,
    Boonsom

    Hi Tim,
    You can execute a method call in Action definition.
    This method call is a badi implementation.
    Badi: EXEC_METHODCALL_PPF
    In this method call you can trigger your external interface.
    Steps:
    1) Implement badi EXEC_METHODCALL_PPF to create you method implementation from which you will trigger your external interface
    2) Create an action definition in Action profile, in third level configuration for action profile, specifiy Method Call and assign the badi implemented method here.
    3) Schedule the action condition.
    Thats all.
    Test the Scenario.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Computer problems after upgrading to Mavericks

    SO many problems. I cleared out a ton of old stuff that I saw might be causing problems, and I've verified and repaired the disc, and uninstalled and reinstalled a couple of programs that I was seeing problems with in the console, but now I'm just flummoxed. It's behaving better than it was earlier, and isn't giving me the beach ball nearly so often, but it still seems like it's taking too long for a lot of things. I just reinstalled Avast and am currently letting a game update through Steam. I have the console and the activity monitor open to one side. Since I opened the console, it's been spitting out one or two messages every second, and all I can find through some internet searching is that it's something to do with the wireless connection. There's some other stuff periodically mixed in that doesn't sound good either, involving either sandboxd or mdworker. But for the most part it's along these lines:
    Nov  5 00:59:52 kate-lenthalls-macbook-pro kernel[0]: 1516.810543: vap-0: connection_sm_roam_check_timer_handler: roam check cur rssi 22 rssi thresh 23 policy 3 last_scan_rssi 23 rssi_change_thresh 7 ignore_thresholds 0
    Nov  5 00:59:53 kate-lenthalls-macbook-pro kernel[0]: 1517.811065: vap-0: connection_sm_roam_check_timer_handler: roam check cur rssi 22 rssi thresh 23 policy 3 last_scan_rssi 23 rssi_change_thresh 7 ignore_thresholds 0
    Nov  5 00:59:54 kate-lenthalls-macbook-pro kernel[0]: 1518.811534: vap-0: connection_sm_roam_check_timer_handler: roam check cur rssi 22 rssi thresh 23 policy 3 last_scan_rssi 23 rssi_change_thresh 7 ignore_thresholds 0
    Nov  5 00:59:55 kate-lenthalls-macbook-pro kernel[0]: 1519.811686: vap-0: connection_sm_roam_check_timer_handler: roam check cur rssi 22 rssi thresh 23 policy 3 last_scan_rssi 23 rssi_change_thresh 7 ignore_thresholds 0
    Nov  5 00:59:56 kate-lenthalls-macbook-pro kernel[0]: 1520.812774: vap-0: connection_sm_roam_check_timer_handler: roam check cur rssi 23 rssi thresh 23 policy 3 last_scan_rssi 23 rssi_change_thresh 7 ignore_thresholds 0
    Nov  5 00:59:58 kate-lenthalls-macbook-pro kernel[0]: com.avast.AvastFileShield Warning: Unable to retrieve file path. Skipping. [22]
    Nov  5 01:00:27 --- last message repeated 208 times ---
    Here's my report from EtreCheck:
    Hardware Information:
              MacBook Pro (17-inch 2.4GHZ)
              MacBook Pro - model: MacBookPro3,1
              1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              GeForce 8600M GT     - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 0:30:19
    Disk Information:
              ST9500420AS disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 413.49 GB (122.62 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 85.76 GB (28.21 GB free)
    USB Information:
              Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Built-in iSight
              Apple Computer Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.eltima.ElmediaPlayer.kext          (1.58)
              com.bresink.driver.BRESINKx86Monitoring          (8.0)
              com.avast.PacketForwarder          (1.3)
              com.avast.AvastFileShield          (2.0.0)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.eltima.ElmediaPlayer.daemon.plist
              [failed] com.google.GoogleML.plist
              [loaded] net.sourceforge.MonolingualHelper.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.CS5ServiceManager.plist
              [loaded] com.wacom.pentablet.plist
    User Launch Agents:
              [not loaded] com.avast.home.userinit.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.markdouma.SourceFinaglerAgent.Portal.plist
              [loaded] com.valvesoftware.steamclean.plist
              [not loaded] org.virtualbox.vboxwebsrv.plist
    User Login Items:
              Flux
              smcFanControl
              GrowlHelperApp
              Google Notifier
              FreeMemory
              TrashMeHelper
              Cloud
              sidenote
              Temperature Monitor
              avast!
              Dropbox
              Alfred 2
              Activity Monitor
    3rd Party Preference Panes:
              avast! Preferences
              PenTablet
              Flash Player
              GeekTool
              Growl
              MultiBrowser
              Shades Preferences
    Internet Plug-ins:
              Default Browser.plugin
              DirectorShockwave.plugin
              DivX Web Player.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              Unity Web Player.plugin
              WacomNetscape.plugin
              WacomTabletPlugin.plugin
    User Internet Plug-ins:
              Picasa.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: YES
              Auto backup: NO
              Time Machine not configured!
    Top Processes by CPU:
                  24%          Console
                  10%          WindowServer
                   9%          LotroLauncher
                   2%          steam
                   1%          EtreCheck
                   1%          mds_stores
                   1%          mds
                   1%          com.avast.proxy
                   1%          Activity Monitor
                   0%          empdaemon
    Top Processes by Memory:
              180 MB             steam
              156 MB             Safari
              152 MB             LotroLauncher
              150 MB             mdworker
              147 MB             mds_stores
              139 MB             com.apple.IconServicesAgent
              70 MB              Dropbox
              70 MB              Console
              66 MB              com.apple.WebKit.WebContent
              61 MB              Finder
    Virtual Memory Statistics:
              207 MB             Free RAM
              1.81 GB            Active RAM
              1.46 GB            Inactive RAM
              513 MB             Wired RAM
              2.39 GB            Page-ins
              3 MB               Page-outs

    I just reinstalled Avast
    "Avast" is perhaps the worst of the whole wretched lot of commercial "security" products for the Mac. It's worse than the imaginary "viruses" you were worried about when you installed it. Not only does it fail to protect you, it throws false warnings, destabilizes and slows down your computer, and sometimes or always corrupts the network settings and the permissions of files in your home folder. Removing it may not repair all the damage, and neither will Disk Utility or even reinstalling OS X.
    Back up all data, then remove "Avast" according to the developer's instructions. Reboot.
    If you tried to remove Avast by dragging an application to the Trash, you'll have to reinstall it and follow the instructions linked above.
    If you still have problems after following those instructions, post again.

Maybe you are looking for

  • IBM Thinkpad T41 - Display Problems

    Hi, I am new to this forum and have had a quick search and could not find the answer to my problem. I support a customer who has an IBM T/P T41 laptop, type 2373.  The customer is a 6 hour round trip away, so the details posted are what he has given

  • Signature is corrupted. Could not verify  HELP!

    Hi, i have a big problem i write a small code who creates a PKCS7 signed file. The PKCS7 contains a self signed X509Certificate witch i create with openssl and the PKCS7 contains a Message like "Hello". Second i write a small prog who extracts the Si

  • How can I restrict who connects with WPA?

    Our current network is using WPA with having the users get authenticated via the windows domain. Anyone with a domain login can use the same credentials to log in to the wireless network. Is there a way to keep some users from authenticating to the w

  • What is this Time Machine?

    Hi All, I currently have a 24" iMac C2D and have a LaCie FW HD partitioned to backup my entire volume and my Home folder. I use Silverkeeper and the Backup volume is completely bootable. I thinking of upgrading to Leopard and wonder if Time Machine w

  • Help Viewer Font Size Way Too Small

    Hello, The font size of the adobe help viewer content is way too small (it looks like a 4 pt or something). I can hardly read it at all. Can someone please tell me how to enlarge it? Thanks a lot! Mike