Layouting immediately

Hi folks.
I'm going to do the following: I've got a JPanel p1 with a JComboBox and everytime the user changes the combobox' index I want to add a new JPanel with a JComboBox below the first JComboBox in p1. I know how I do this, but the correct layouting of the newly added combobox is not done immediately. It's drawn correctly when I resize the form - but that's not what I want.
So, I tried doLayout() and repaint() on the newly added JComboBox, its surrounding JPanel and the highest JPanel p1, but it has no effect at all. So what can I do?
Thanks a lot,
Matthias

I found the validate() - problem solved :)

Similar Messages

  • Why is getLineMetrics inaccurate when using device fonts* or immediately after resizing a TextField?

    1.  We need getLineMetrics to return correct values immediately after changing a TextField's width/height or any property that would affect the layout metrics, withouth having to alter other properties like setting the text to itself (p1.text = p1.text).  Currently, if you change the width of a text field to match the stage width for example, getLineMetrics will not return correct values until the next frame.... UNLESS you set the text property.
    2.  We also need some kind of "stage scaled" event in addition to the "stage resize" event (which only fires when stage scale mode is no_scale), because stage scaling affects the rendered size of device fonts so dramatically that we must call getLineMetrics again.  This is not the case for fonts antialiased for readability, since their size is relatively stable with scaling, as demonstrated by drawing a box around the first line once and then scaling the stage.
    So those are the problems.  The asterisk in the title of this post is there because it seem that TextField.getLineMetrics is accurate with device fonts, but I cannot take advantage of that accuracy without a way to detect when the player is scaled.  I can only confirm its accuracy at a 1:1 scale, since there is no way to recalculate the size of the line rectangle once the player is scaled, aside from setting a timer of some sort which is a real hack not to mention horribly inefficient with no way to detect when the stage has actually be scaled.
    I use device fonts because embedded fonts look terrible and blurred compared to device font rendering.  The "use device font" setting matches the appearance of text in web browsers exactly.  The only way to get embedded/advanced antialiased text in flash to approximate that of the device font look is to primarily set gridFitType to PIXEL instead of SUBPIXEL, and secondly set autokerning to true to fix problems caused by the PIXEL grid fit type.  That ensure strokes are fitted solidly to the nearest pixel, however it still lacks the "ClearType" rendering that device fonts use, which has notable color offset to improve appearance on LCD monitors, rather than the purely grayscale text that flash uses in its subpixel rendering.  Frankly, failure to use device fonts because of API issues, is the only reason why Flash sometimes doesn't look as good as HTML text and why people say text in Flash "looks blurry".  I'm tired of hearing it.  If the player simply dispatched an event when scaled and updated the metrics immediately when any property of the text field that would affect the metrics is changed, then we could all happily use device fonts and Flash text would look great.  As is stands, because of the two problems I mentioned in the opening paragraph, we're stuck dealing with these problems.
    If you create two text fields named "p1" and "p2" for paragraph 1 and 2, populate them with an identical line of text and set one to "use device fonts" and the other to "antialias for readability", then use this code to draw boxes around the first line of text in each of them:
    import flash.text.TextField;import flash.text.TextLineMetrics;graphics.clear();drawBoxAroundLine( p1, 0 );drawBoxAroundLine( p2, 0 );function drawBoxAroundLine( tf:TextField, line_index:int ):void{          var gutter:Number = 2;          var tlm:TextLineMetrics = tf.getLineMetrics( line_index );          graphics.lineStyle( 0, 0x0000ff );          graphics.drawRect( tf.x + gutter, tf.y + gutter, tlm.width, tlm.height );}
    The box surrounding the line of text in the "use device fonts" box is way off at first.  Scaling the player demonstrates that the text width of the device font field fluctuates wildly, while the "antialias for readability" field scales with the originally drawn rectangle perfectly.  That much is fine, but again to clarify the problems I mentioned at the top of this post:
    Since the text width fluctuates wildly upon player resize, assuming that getLineMetrics actually works on device fonts (and that's an assumption at this point), you'd have to detect the player resize and redraw the text.  Unfortunately, Flash does not fire the player resize event unless the stage scale mode is set to NO_SCALE.  That's problem #1.  And if that's by design, then they should definitely add a SCALE event, because changes in player scale dramatically affect device font layout, which requires recalculation of text metrics.  It's a real issue for fluid layouts.
    The second problem is that even when handling the resize event, and for example setting the text field width's to match the Stage.stageWidth property, when the text line wraps, it's not updated until the next frame.  In other words, at the exact resize event that causes a word to wrap, calling getLineMetrics in this handler reports the previous line length before the last word on the line wrapped.  So it's delayed a frame.  The only way to get the correct metrics immediately is basically to set the text property to itself like "p1.text = p1.text".  That seems to force an update of the metrics.  Otherwise, it's delayed, and useles.  I wrote about this in an answer over a year ago, showing how sensitive the text field property order is: http://stackoverflow.com/a/9558597/88409

    As I've noted several times, setting the text property to its own current value should not be necessary to update the metrics, and in some subclasses of text field, setting a property to its own value is ignored as the property is not actually changing and processing such a change would cause unnecessary work which could impact application performance.  Metrics should be current upon calling getLineMetrics.  They are not.  That's the problem.
    From a programming perspective, having to set the text property (really "htmlText" to preserve formatting) to itself to update metrics is almost unmanagable, and doesn't even make sense considering "htmlText" is just one of a dozen properties and methods on a TextField that could invalidate the layout metrics (alignment, setTextFormat, width, height, antiAliasMode, type, etc.), and I would have to override every one of those properties so that I could set htmlText = htmlText.  Using such a subclass isn't even possible if I want to use the Flash IDE to add text fields to the stage.  I would have to iterate over the display list and replace all existing fields with my subclass, which also isn't a good workaround because there's no way to update any and all variable references that may have been made to those instances.
    Frome what I've read, the invalide+render event system is unreliable.  My layout framework is similar to that of Windows Forms, and performs layout immediately, with dozens of docking modes and uses suspend and resume layout calls for efficiently resizing multiple child objects in a component.  Certain calculations cannot be aggregated for a render event, because some containers are semi-reflexive, meaning they can expand to fit the child contents while also contraining the child size, depending on whether the contain was resized or the child component was resized, so as a matter of correctness the resizing calcultation must occur immediately when the child resizes, otherwise a top-down pass on the display hierarchy for resizing will not be sufficient.
    As far as waiting until the next frame, no that is not possible, as it will cause one frame to be completely wrong.  If I was dragging the browser window to resize it, it would look terrible as virtually every single frame during the resizing operation would be incorrect.  Also, in the case where a user clicks the maximize or restore button of the web browser, the resizing event will occur exactly once, so if the metrics are not correct when that occurs, there is no recalculation occuring on the next frame, it will just be wrong and sit there looking wrong indefinitely.
    In case it's not obvious by now, this is a web application.  It uses the NO_SCALE stage scaling option, so notification of the event is not actually an issue for me personally.  I was just pointing out that for anyone not using the NO_SCALE option, there is no event in Flash to detect player scale.  What you're suggesting is using a JavaScript event and using the ExternalInterface bridge to send a message, which there is no guarantee whether it will be processed in a timely matter by the player and introduces possible platform inconsistancies, depending on whether the browser has actually resized the Flash interface at that point or what state Flash is in when it tries to recalculate the size of the text.  The browser may send that event to flash before the player is actually resized, so it will be processing incorrect sizes and then resized after the fact.  That's not a good solution.  Flash needs a scale event in addition to a resize event.  I'm really surprised it doesn't have one.  At the very least, the existing resize event should be dispatched reguardless of the stage scale mode, rather than occuring exclusively in the NO_SCALE mode.
    Bottom line is that getLineMetrics needs to return correct values every time it is called, without having to set the "text" property immediately before calling it.  If such a requirement exists, which seems to be the case, then that needs documented in the getLineMetrics method.

  • Getting new sizes immediately after calilng setVisible

    How can I get the new sizes after hiding/showing a panel? I have a left and right panels, and a thin vertical bar in between that will alternatively collapse/expand the left panel whenever a user click on it. There's a PDF document in the right panel and I want it to do a "fit to page" calculation immediately after the left panel hides/shows. If I do it without the invokeLater() method, the sizes after setVisible() doesn't change and then the sizes will always be one click "behind". Like for example, when I first click on the vertical bar, the left panel collapses and the PDF page size stays the same. After the second click on the bar, the left panel expands (right panel gets smaller) and the PDF page gets bigger and fits the previous size of the right panel when the left panel was collapsed. It's like the program is recording the previous sizes, not new ones. I understand that there's an event dispatching thread and the sizes wont be updated until after the layout calculation has been done in the thread. How can I make it to do the layout immediately after calling setVisible()? I can bear with this, but there's a noticeable "fit to page" lag after the left panel changes its visibility. Is there a better way to do this?
    Here's the snippet of the code:
    This is where the visibility changes and where it calls the "fit to page" (fitPdfToViewport) method.
    public void toggleMenuButtonVisibility(){
         final PdfViewerPanel viewPanel = efbFrame.getPdfViewerPanel();
         this.menuContentPanel.setVisible(this.hidden);
         this.hidden = !hidden;
         if(viewPanel.isFitToPage){
    //          viewPanel.validate();
    //          this.menuContentPanel.validate();
              Runnable blah = new Runnable(){
                   public void run(){
                        viewPanel.fitPdfToViewport();
              SwingUtilities.invokeLater(blah);
    }This is the "fit to page" method:
    public void fitPdfToViewport(){
         this.pdfController.setZoom(1.0f);     //reset the PDF dimension
         Dimension viewDim = this.documentPanel.getSize();
         Dimension pdfDim = this.pdfController.getDocumentViewSize();
         if(pdfDim != null && viewDim != null){
              float vRatio = (float)viewDim.height / pdfDim.height;
              float hRatio = (float)viewDim.width / pdfDim.width;
              float ratio = (vRatio > hRatio) ? hRatio : vRatio;
              this.pdfController.setMinumumZoom(ratio);
              this.pdfController.setZoom(ratio);
    }Thanks in advance, guys!

    Add a ComponentListener to your panel containing the PDF. On componentResize() you add your code.

  • Mongolian keyboard layout

    Hi. need mongolian keyboard layout immediately on my Mac OS X, 10.9.1

    Ayush.SS wrote:
    Hi. need mongolian keyboard layout immediately on my Mac OS X, 10.9.1
    You can get one here:
    https://dl.dropboxusercontent.com/u/46870715/k/MongolianC.zip
    http://mountainedge.netfirms.com/store/page3.html

  • Launching FBL1N with the flag Special G/L tr. filled in by default

    Hi All,
    could anyone tell me if is possible to launch FBL1N having the flag Special G/L transaction filled in by default?
    Thanks
    G.

    Dear,
    Normally this field picks value by default upon execution of FBL3N. However if its not fetching indicator sign as defined in FBKP then you need to run authorization check using SU53 for *F_IT_ALV     * (Line Item Display: Change and Save Layout)
    immediately after when you execute FBL3N. If it missing then ask basis consultant to assign it to your user profile.
    Regards

  • How to apply text formatting immediately?

    Hello!
    I apply text formatting to the empty newly created text flow. It seems to be strange that the formatting is not applied immediately, but when I start editing.
    The small sample demonstrates the problem.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml"layout="
    vertical"creationComplete="onCreationComplete()"
    >
    <mx:Script>
    <![CDATA[
    import flashx.textLayout.events.FlowOperationEvent; 
    import flashx.textLayout.formats.ITextLayoutFormat; 
    import flash.text.engine.RenderingMode; 
    import flash.text.engine.FontLookup; 
    import flashx.textLayout.formats.TextLayoutFormat; 
    import mx.controls.SWFLoader; 
    import flashx.textLayout.edit.EditManager; 
    import flashx.textLayout.container.ContainerController; 
    import flashx.textLayout.elements.TextFlow; 
    private var textFlow:TextFlow; 
    private function onCreationComplete():void { 
    var container:Sprite = new Sprite();canvas.rawChildren.addChild(container);
    var containerController:ContainerController = new ContainerController(container, canvas.width, canvas.height);textFlow=
    new TextFlow();textFlow.flowComposer.addController(containerController);
    textFlow.interactionManager=
    new EditManager();textFlow.flowComposer.updateAllControllers();
    private function onClick():void { 
    var charFormat:TextLayoutFormat = new TextLayoutFormat(); 
    var containerFormat:TextLayoutFormat = new TextLayoutFormat(); 
    var paragraphFormat:TextLayoutFormat = new TextLayoutFormat();charFormat.fontSize=36;
    textFlow.interactionManager.selectAll();
    (textFlow.interactionManager
    as EditManager).applyFormat(charFormat, paragraphFormat, containerFormat);textFlow.interactionManager.refreshSelection();
    textFlow.flowComposer.updateAllControllers();
    ]]>
    </mx:Script>
    <mx:Canvas id="canvas"width="
    200"height="
    200" borderStyle="solid"/>
    <mx:Button id="button"label="
    Push me"click="onClick()"
    />
    </mx:Application>
    When you click the button new font size is set. But the cursor in text field is not changed to a bigger one until I start editing. Also if to look at the textFlow internals in debugger you can see that new font size is not set...
    How can I force this?
    Kind Regards

    This is arguably a bug with a few things conspiring to cause the problem.  The general idea is that each paragraph ends with a paragraph terminator and the final terminator isn't selectable - that seems to be the core of the problem.  The other conspirator is that with a point selection character level format changes aren't applied until the next character is entered.  So with an empty document you always have a point selection. I could see character level format changes applying instantly to empty paragraphs.  I'll file a bug for more investigation.
    As for workarounds - well there's always direction model calls - just set the format directly on the span.  Another possibility would be to detected exactly this case and insert a character and then undo it.
    Note in your sample code the refreshSelection and updateAllControllers calls after applyFormat are redundant and can be safely removed.  Also any of the formats passed to applyFormat can be null.
    Hope that helps,
    Richard

  • Changing layout of ALV to excel and displaying the data there

    Dear All,
    My requirement is that I have to develop an ALV report, and also plot the graphs for the same.
    I need different types of graphs, so I have searched on SDN, and I found out a blg:-
    "Report with a Graph.. An Approach!"
    Here is what the person has done:-
    I developed a simple ABAP report using ALV and just dumped all my data on it.
    After this I downloaded the Standard Excel template available in the ALV.
    Defined my own worksheets in this template, wrote some macros to pick up the data from the “RawHeader” sheet, which is available by default and will contain the ALV data.
    I inserted 1 chart in this Excel template. In this chart I used the same chart type as was being used by the user for his graph. Just right clicked on the Graph area and made the changes in the source data and made it point to the sheet containing the final data.
    That’s it my job is almost done.
    After this uploaded this template back into the report output through
    the layout settings->Change Layout Tab.
    Save it as a variant and made it a default. (Do not default it if you have more than 1 user and more than 1 template…. Select the appropriate variant for the appropriate user and then display)
    Well, this also was not that easy as I had thought. I landed up into 1 trouble.
    In my report the number of columns displayed was not constant and kept changing based on the input. This fact was taken care by designing a variable field catalogue. But now I had gone past the simple ALV display and was giving the output in an Excel sheet using a pre-defined template. Well, I immediately found a solution to this with the set_frontend_fieldcatalogue method of CL_GUI_ALV_GRID class and fixed the field catalogue every time after calling the set_table_for_first_display method. This solved most of my problems, which were not many though.
    Now here are my issues:-
    I have developed the ALV report, and I have also changed the layout to excel.
    But, I am unable to get the ALV Report data in the RawHeader Sheet, which is available by default.
    Could anyone please guide me through this method??
    It is urgent.
    Points are assured for helpful answers.
    Thanks and regards,
    Prerna

    Hi Satya Priya,
    Do I have to create my own template, or the Standard ones available will do?
    HEre is what I do:-
    Once I get my ALV output, I goto Change LAyout->View tab.->Prefered view->Microsoft Excel.
    Here I get a list of available excel templates There are 2:-
    sap_mm.xls, and sap_om.xls
    I select one of these, and the excel spreadsheet is displayed on the ALV screen.
    But the re is another button, "Upload Document to BDS".
    Do I have to upload one of the above templated to BDS?
    And please tell me in detail, what is BDS???
    Thanks for your help, and waiting for reply,
    Prerna

  • How can we create save layout option in grid tool bar

    hi,
    how can we create select layout option in grid tool bar to save my own layout. if any one knows tell me immediately
    thanks

    Hi again,
    1. We need to do 1 additional thing.
    data : GS_variant TYPE DISVARIANT.
    GS_variant-REPORT = sy-repid.
    2.  while calling pass this parameter also.
         IS_VARIANT                    = GS_variant
    It will work now.
    3. Moreover, I_SAVE has 3 options.
    I_SAVE = SPACE
    Layouts cannot be saved.
    I_SAVE = 'U'
    Only user-defined layouts can be saved.
    I_SAVE = 'X'
    Only global layouts can be saved.
    I_SAVE = 'A'
    Both user-defined and global layouts can be saved.
    regards,
    amit m.
    Message was edited by: Amit Mittal

  • XFCE Keyboard Layout applet not working after latest xorg update..

    Is this a bug in the xorg update or most the kbd layou be reompiled or? I am not able to swtich between my two kbd layouts anymore.. Downgrading the org packages made it work again but I guess that's not a long term solution...
    Regards,
    BTJ

    Hi mattywix - can you add any more detail please ?
    I have a recent experience that sounds related to your problem - I have a 15" macbook pro bought new in the UK a couple of years ago (macbookpro 5,3), which has been running perfectly under snow leopard until a couple of days ago when my trackpad stopped recognising the standard "left" click.
    "Right" click, scroll and pointer movement continued to work fine.
    Booting in safe mode seemed to give me back the left click but this was immediately lost when I returned to standard boot up.
    Doing a full reinstall from original disks, all seemed fine. Over 1.6Gb of software updates and everything worked great. Then the final run of S/W update took me from os-x 10.6.6 to 10.6.7 plus a few other changes and again the trackpad stopped recognising "left" click.
    Plugging in an external drive which had a copy of my system as at OS-X 10.6.3 and booting off that - everything works fine again.
    I can only conclude that there's an issue with the 10.6.7 upgrade and my 2 year old MBP hardware so will have to reinstall yet again but stop at 10.6.6
    My concern is that after the first upgrade to 10.6.7 I put the laptop on charge to top it up from about 70% and came back to find the machine abnormally hot. With your comment about toasting the logic board, I wonder if there's a bug in the power control software too which I was lucky enough to catch before my machine suffered the same damage as yours ?
    Sorry to hear about your bad luck but thanks for warning us about it.
    Alick

  • Converting simple report output to PDF print layout issue

    Hi all,
    I am converted one report output to PDF format, it is working fine in one DEV sever, but when we moved it to other server the layout of output preview & font size  is not coming properly (as same in DEV server)  in the new server. I am using the below code, please check & correct me if anything is wrong.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            copies                 = '1'
            cover_page             = space
            destination            = 'LOCL'
            expiration             = '1'
            immediately            = space
            mode                   = space
            new_list_id            = 'X'
            no_dialog              = 'X'
            user                   = sy-uname
            line_size              = 200
            line_count             = 65
    *        layout                 = 'Z_65_230'
            layout                 = 'X_58_170'
            sap_cover_page         = 'X'
          IMPORTING
            out_parameters         = mstr_print_parms
            valid                  = mc_valid
          EXCEPTIONS
            archive_info_not_found = 1
            invalid_print_params   = 2
            invalid_archive_params = 3
            OTHERS                 = 4.
        IF sy-subrc EQ 0.
    **--Creating Spool Request.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              jobname          = lv_job_name
            IMPORTING
              jobcount         = lv_job_count
            EXCEPTIONS
              cant_create_job  = 1
              invalid_job_data = 2
              jobname_missing  = 3
              OTHERS           = 4.
          IF sy-subrc <> 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
    **--Submitting the Report & Get the Output.
            SUBMIT  zpsr_submit_prcng WITH SELECTION-TABLE t_ebeln TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                                  SPOOL PARAMETERS mstr_print_parms
                                  USER             sy-uname         " User for runtime authorizations
                                  VIA JOB          lv_job_name
                                  NUMBER           lv_job_count
                                  AND RETURN.
            IF sy-subrc <> 0.
              MESSAGE ID    sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH  sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ELSE.
              CALL FUNCTION 'JOB_CLOSE'
                EXPORTING
                  jobcount         = lv_job_count
                  jobname          = lv_job_name
                  strtimmed        = 'X'
                IMPORTING
                  job_was_released = lv_job_released.
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
    Thanks & Regards
    Avish
    Moderator Message: Please use code tags when pasting code snippets. Also paste relevant portions of the code
    Edited by: Suhas Saha on Jul 13, 2011 3:05 PM

    Dear Alexander,
    Thanks for the reply.
    In this I am using the FM 'CONVERT_ABAPSPOOLJOB_2_PDF'. I have checked the settings from SPAD that is also same in both servers for particular output device. But the patches are diffrennt in both the servers, the server from which layout is not coming properly having the high level patches in compare to the other server(which is working fine).

  • TextInput in iOS gains then immediately loses focus won't open softkeyboard. FocusManager says still

    Dev Environment: Flash Builder 4.7<br/>
    SDK: Flex 4.6.0 (build 23201) AIR 3.5<br/>
    Arguments: -local en_US -swf-version=16<br/>
    Testing Platform: iOS 6 on iPad 2
    Severe bug, I believe.  Renders iOS apps developed using these technologies utterly unusable.
    Situation:  Whenever I touch the TextInput component on the testing platform device, it will do one of two things:
    It will perform as it is supposed to.  It gains focus (focusIn event dispatched), a blue focus rect surrounds it, the prompt text is replaced by a flashing cursor, the soft keyboard activates and is displayed (all expected events dispatched).
    It will fail.  It will gain focus (focusIn event dispatched), and the blue focus rect will appear briefly and then disappear, the prompt text remains displayed and there is no cursor in the field (focusOut event dispatched). The softKeyboardActivate event is dispatched and immediately the softKeyboardDeactivate event is dispatched.  The keyboard does not appear even briefly.
    I can tap tap tap tap and eventually one tap (no different than any other) will be successful and #1 will happen instead of #2.
    Here's the oddest thing.  The focusManager tells me that the DisplayObject that has the focus is the same object when the focusIn event is dispatched and after the focusOut event is dispatched (and if I check every 10ms using a timer, the results don't change... the correct DO has focus.
    Below the code is the trace output.
        <?xml version="1.0" encoding="utf-8"?>
        <s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                                    xmlns:s="library://ns.adobe.com/flex/spark"
                                    xmlns:mx="library://ns.adobe.com/flex/mx"
                                    xmlns:c="components.*"
                                    width="100%"
                                    creationComplete="creationCompleteHandler()">
            <fx:Declarations>
                    <s:DropShadowFilter id="dropShadowFilter" blurX="6" blurY="6" alpha="0.5" distance="6" angle="60" strength=".5" quality="{BitmapFilterQuality.HIGH}"/>
            </fx:Declarations>
            <fx:Script>
                    <![CDATA[
                            import flash.filters.BitmapFilterQuality;
                            import mx.utils.ObjectProxy;
                            import spark.skins.mobile.TextAreaSkin;
                            import views.tools.MakeAToolBase;
                            [Bindable]
                            private var pad:Number = 15;
                            [Bindable]
                            public var dataProxy:ObjectProxy;
                            [Bindable]
                            public var v:MakeAToolBase;
                            protected function creationCompleteHandler():void
                                    trace("LearnItListItemRenderer FUNCTION creationCompleteHander()");
                                    dataProxy = new ObjectProxy(data);
                                    dataProxy.choosePictureButton = choosePictureButton;
                    ]]>
            </fx:Script>
            <s:layout>
                    <s:HorizontalLayout horizontalAlign="center"/>
            </s:layout>
            <s:HGroup id="listItem" gap="33" paddingTop="15" paddingBottom="15" horizontalAlign="center" paddingLeft="15" paddingRight="44"
                              verticalAlign="middle" width="100%" height="210" filters="{[dropShadowFilter]}">
                    <s:Group height="100%">
                            <s:Rect height="100%" width="100%" radiusX="5" radiusY="5">
                                    <s:fill>
                                            <s:SolidColor color="0xffffff" alpha="1"/>
                                    </s:fill>
                                    <s:stroke>
                                            <s:SolidColorStroke weight=".5" color="0x000066"/>
                                    </s:stroke>
                            </s:Rect>
                            <s:Label text="{dataProxy.numberLabel}" fontSize="32" color="#000072" verticalAlign="middle" verticalCenter="0" paddingLeft="12" paddingRight="12"/>
                    </s:Group>
                    <c:ChoosePictureButton id="choosePictureButton" height="{listItem.height-pad-pad}" width="{(4*(listItem.height-pad-pad))/3}"/>
                    <s:VGroup id="textInputBoxesGroup" height="100%" width="100%">
                            <s:TextInput id="behaviorNameTextInput" color="#000000" textAlign="left" width="100%"
                                                    prompt="Enter Behavior Name..."
                                                    needsSoftKeyboard="true"
                                                    interactionMode="touch"
                                                    skinClass="spark.skins.mobile.TextInputSkin"
                                                    returnKeyLabel="done"
                                                    showPromptWhenFocused="true"
                                                    touchBegin="trace('touch');"
                                                    softKeyboardActivate=  "trace('#############################    SoftKeyboardActive    #####################################');"
                                                    softKeyboardDeactivate="trace('############################# SoftKeyboardDeactivating #####################################');"
                                                    softKeyboardActivating="trace('#############################  SoftKeyboardActivating  #####################################');"
                                                    focusIn="trace('TEXTINPUT FOCUSIN: '+this.focusManager.getFocus())"
                                                    focusOut="trace('TEXTINPUT FOCUSOUT: '+this.focusManager.getFocus())"
                                                    creationComplete="{data.behaviorNameTextInput=behaviorNameTextInput;}"
                                                    />
                            <s:Spacer id="behaviorSpacer" height="2"/>
                            <s:TextArea id="behaviorDescriptionTextArea"
                                                    fontFamily="verdana" fontSize="16"
                                                    verticalAlign="top" textAlign="left" width="100%" height="100%"
                                                    verticalScrollPolicy="on"
                                                    interactionMode="touch"
                                                    color="#000000" prompt="Enter Behavior Description..."
                                                    softKeyboardType="{SoftKeyboardType.DEFAULT}"
                                                    needsSoftKeyboard="true"
                                                    showPromptWhenFocused="true"
                                                    skinClass="spark.skins.mobile.TextAreaSkin"
                                                    creationComplete="{data.behaviorDescriptionTextArea=behaviorDescriptionTextArea}"/>
                    </s:VGroup>
                    <c:YesNoVerticalButtonsGroup/>
            /s:HGroup>
        </s:ItemRenderer>
    Trace output [ edited for brevity ]
        TEXTINPUT FOCUSIN: PictureToolsOnTheMoveMakeIt0.TabbedViewNavigatorApplicationSkin6.tabbedNavigator.TabbedVi ewNavigatorSkin8.contentGroup._PictureToolsOnTheMoveMakeIt_ViewNavigator3.ViewNavigatorSki n35.contentGroup.MakeAToolLearnItView471.SkinnableContainerSkin472.contentGroup.itemList.L istSkin475.Scroller477.ScrollerSkin478.DataGroup476.LearnItListItemRenderer566.listItem.te xtInputBoxesGroup.behaviorNameTextInput
        #############################  SoftKeyboardActivating  #####################################
        ############################# SoftKeyboardDeactivating #####################################
        TEXTINPUT FOCUSOUT: PictureToolsOnTheMoveMakeIt0.TabbedViewNavigatorApplicationSkin6.tabbedNavigator.TabbedVi ewNavigatorSkin8.contentGroup._PictureToolsOnTheMoveMakeIt_ViewNavigator3.ViewNavigatorSki n35.contentGroup.MakeAToolLearnItView471.SkinnableContainerSkin472.contentGroup.itemList.L istSkin475.Scroller477.ScrollerSkin478.DataGroup476.LearnItListItemRenderer566.listItem.te xtInputBoxesGroup.behaviorNameTextInput
        ############################# SoftKeyboardDeactivating #####################################
    [  FAILED ATTEMPTS 2 - 22 REMOVED FOR READABILITY ]
        TEXTINPUT FOCUSIN: PictureToolsOnTheMoveMakeIt0.TabbedViewNavigatorApplicationSkin6.tabbedNavigator.TabbedVi ewNavigatorSkin8.contentGroup._PictureToolsOnTheMoveMakeIt_ViewNavigator3.ViewNavigatorSki n35.contentGroup.MakeAToolLearnItView471.SkinnableContainerSkin472.contentGroup.itemList.L istSkin475.Scroller477.ScrollerSkin478.DataGroup476.LearnItListItemRenderer566.listItem.te xtInputBoxesGroup.behaviorNameTextInput
        #############################  SoftKeyboardActivating  #####################################
        #############################    SoftKeyboardActive    #####################################

    ..and I found this block on  my (flex 4.7) error log
    java.version=1.6.0_31
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86_64
    !ENTRY org.eclipse.debug.core 4 125 2013-03-11 14:44:53.687
    !MESSAGE An exception occurred while dispatching debug events.
    !STACK 0
    java.lang.NullPointerException
    at com.adobe.flexide.launching.multiplatform.MultiPlatformDebugPortManager.getPortForLaunchURL(MultiPlatformDebugPortManager.java:73)
    at com.adobe.flexide.multiplatform.ios.internal.IOSDebugLaunchListener.handleDebugEvents(IOSDebugLaunchListener.java:70)
    at org.eclipse.debug.core.DebugPlugin$EventNotifier.run(DebugPlugin.java:1117)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.debug.core.DebugPlugin$EventNotifier.dispatch(DebugPlugin.java:1151)
    at org.eclipse.debug.core.DebugPlugin$EventDispatchJob.run(DebugPlugin.java:415)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)

  • Getting error while opening layout in mobile system maintenance

    Hi Experts,
    I implemented note 904571 to prefilldata, with which all standard layouts loaded to mobile system maintenance. But problem here is if I try to open any one of the layout its giving following error
    "An unhandled exception has occured in your application. If you click continue, the application will ignore this error and attempt to ccontinue. If you click Quit, the application will be shut down immediately.
    Object variable or with variable not set."
    If I click on details of error, its giving following details
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    Exception Text **************
    System.NullReferenceException: Object variable or With block variable not set.
       at Microsoft.VisualBasic.CompilerServices.LateBinding.LateGet(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack)
       at MSY.Tlayoutdet1.ctrlctrlbtnOpen_onClicked() in C:\Ars_Translation50\Batch\app\MSY\src\Tlayoutdet1.vb:line 281
       at SAP.MT.FW.UI.ExposedFWElements.CoreCtrlButton.BtnClicked()
       at SAP.MT.FW.UI.ExposedFWElements.CoreCtrlButton.IPeerCtrlListener_btnClicked()
       at SAP.MT.FW.UI.PeerLayer.PeerCtrlButton.button_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at SAP.MT.FW.UI.NativeControl.NBaseControl.OnClick(EventArgs e)
       at SAP.MT.FW.UI.NativeControl.NButton.OnClick(EventArgs e)
       at SAP.MT.FW.UI.NativeControl.NButton.mButton_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Loaded Assemblies **************
    mscorlib
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/microsoft.net/framework/v1.1.4322/mscorlib.dll
    MobileClient
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MobileClient.exe
    UFCore
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFCore.DLL
    UFCoreExt
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFCoreExt.DLL
    System.Windows.Forms
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2365
        CodeBase: file:///c:/windows/assembly/gac/system.windows.forms/1.0.5000.0__b77a5c561934e089/system.windows.forms.dll
    System
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    UFInternal
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFInternal.DLL
    UFCommon
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFCommon.DLL
    UFStorage
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFStorage.DLL
    Interop.Scripting
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Interop.Scripting.DLL
    Microsoft.VisualBasic
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.10.6310.4
        CodeBase: file:///c:/windows/assembly/gac/microsoft.visualbasic/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.dll
    UFControlLibrary
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFControlLibrary.DLL
    Interop.UFGeneratorInterfaces
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Interop.UFGeneratorInterfaces.DLL
    System.Drawing
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2327
        CodeBase: file:///c:/windows/assembly/gac/system.drawing/1.0.5000.0__b03f5f7f11d50a3a/system.drawing.dll
    MTIServices
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTIServices.DLL
    UFDialogs
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFDialogs.DLL
    UFIPlugins
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/UFIPlugins.DLL
    System.Xml
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2371
        CodeBase: file:///c:/windows/assembly/gac/system.xml/1.0.5000.0__b77a5c561934e089/system.xml.dll
    Interop.ERRCOMPLib
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Interop.ERRCOMPLib.DLL
    MTBLLFWInterfaces
        Assembly Version: 1.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTBLLFWInterfaces.DLL
    Accessibility
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.573
        CodeBase: file:///c:/windows/assembly/gac/accessibility/1.0.5000.0__b03f5f7f11d50a3a/accessibility.dll
    MSY
        Assembly Version: 0.0.0.0
        Win32 Version: 0.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/bin/MSY.dll
    MTBLLFW
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTBLLFW.DLL
    MTFWServices
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTFWServices.DLL
    MTServices
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTServices.DLL
    OnlineOffline
        Assembly Version: 1.0.2477.11060
        Win32 Version: 1.0.2477.11060
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/OnlineOffline.DLL
    vqq-mx7r
        Assembly Version: 0.0.0.0
        Win32 Version: 1.1.4322.2407
        CodeBase: file:///c:/windows/assembly/gac/system/1.0.5000.0__b77a5c561934e089/system.dll
    RegexAssembly40_0
        Assembly Version: 0.0.0.0
        Win32 Version: n/a
        CodeBase:
    MTBLLFWMetaInternal
        Assembly Version: 5.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/MTBLLFWMetaInternal.DLL
    TLSender
        Assembly Version: 1.5.1.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/TLSender.DLL
    Interop.CRYPTINGLib
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Interop.CRYPTINGLib.DLL
    Authentication
        Assembly Version: 5.5.0.0
        Win32 Version: 5.5.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Authentication.DLL
    System.Data
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2365
        CodeBase: file:///c:/windows/assembly/gac/system.data/1.0.5000.0__b77a5c561934e089/system.data.dll
    System.EnterpriseServices
        Assembly Version: 1.0.5000.0
        Win32 Version: 1.1.4322.2326
        CodeBase: file:///c:/windows/assembly/gac/system.enterpriseservices/1.0.5000.0__b03f5f7f11d50a3a/system.enterpriseservices.dll
    sfabol
        Assembly Version: 0.0.0.0
        Win32 Version: 0.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/bol/apps/sfabol/vba/WBIT/sfabol/bin/sfabol.dll
    SSActiveTreeView.SSTree
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/Bin/SSActiveTreeView.SSTree.dll
    SSActiveTreeView
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/Bin/SSActiveTreeView.DLL
    AxSSActiveTreeView.AxSSTree_EventsRouter
        Assembly Version: 0.0.0.0
        Win32 Version: 0.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/Bin/AxSSActiveTreeView.AxSSTree_EventsRouter.dll
    Interop.UFBBInterfaces
        Assembly Version: 1.0.0.0
        Win32 Version: 1.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/Interop.UFBBInterfaces.DLL
    StdType
        Assembly Version: 2.0.0.0
        Win32 Version: 2.0.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/APP.Net/MSY/Bin/StdType.DLL
    Microsoft.VisualBasic.Compatibility
        Assembly Version: 7.0.5000.0
        Win32 Version: 7.10.3077
        CodeBase: file:///c:/windows/assembly/gac/microsoft.visualbasic.compatibility/7.0.5000.0__b03f5f7f11d50a3a/microsoft.visualbasic.compatibility.dll
    stdole
        Assembly Version: 7.0.3300.0
        Win32 Version: 7.00.9466
        CodeBase: file:///c:/windows/assembly/gac/stdole/7.0.3300.0__b03f5f7f11d50a3a/stdole.dll
    RFMobileReporting
        Assembly Version: 1.0.0.0
        Win32 Version: 5.11.0.40
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/RFMobileReporting.DLL
    AxInterop.SAPCalendar50
        Assembly Version: 1.1.0.0
        Win32 Version: 1.1.0.0
        CodeBase: file:///C:/Program%20Files/SAP/Mobile/Bin.NET/AxInterop.SAPCalendar50.DLL
    JIT Debugging **************
    To enable just in time (JIT) debugging, the config file for this
    application or machine (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
        <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the machine
    rather than being handled by this dialog.
    Its urgent, Please help me out to rectify this error.
    Thanks & Regards,
    Venkata Ramana

    This seems like an error with standard SAP solution. I would suggest raising an OSS message and SAP should be able to help you out.
    Hope this helps.
    Regards,
    Kaushal

  • [SOLVED] System goes to sleep immediately after boot

    I just upgraded this afternoon and now my system goes to sleep (suspend-to-RAM) as soon as it has finished booting. When I then press the power button, it wakes up, briefly shows the login screen and then goes back to sleep afterwards. This happens in runlevel 5. When I boot into runlevel 1, the system stays up all the time. I guess it has something to do with systemd and I already tried to find out how to debug this, but was unsuccessful in finding out what goes wrong.
    I am using i686 Arch with systemd 210-3 and Kernel 3.13.6-1.
    Pacman Log:
    [2014-02-21 01:06] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-02-21 01:06] [PACMAN] synchronizing package lists
    [2014-02-21 01:06] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-02-21 01:06] [PACMAN] starting full system upgrade
    [2014-02-21 01:08] [PACMAN] Running 'pacman --color auto -S eapeak extra/alsa-lib extra/alsa-utils'
    [2014-02-21 01:08] [PACMAN] Running 'pacman --color auto -S extra/alsa-lib extra/alsa-utils community/espeak'
    [2014-02-21 01:08] [PACMAN] installed alsa-lib (1.0.27.2-1)
    [2014-02-21 01:08] [PACMAN] installed dialog (1:1.2_20140112-1)
    [2014-02-21 01:08] [PACMAN] installed libogg (1.3.1-2)
    [2014-02-21 01:08] [PACMAN] installed flac (1.3.0-1)
    [2014-02-21 01:08] [PACMAN] installed libvorbis (1.3.4-1)
    [2014-02-21 01:08] [PACMAN] installed libsndfile (1.0.25-3)
    [2014-02-21 01:08] [PACMAN] installed libsamplerate (0.1.8-3)
    [2014-02-21 01:08] [PACMAN] installed alsa-utils (1.0.27.2-1)
    [2014-02-21 01:08] [PACMAN] installed jack (0.124.1-1)
    [2014-02-21 01:08] [PACMAN] installed portaudio (19_20140130-1)
    [2014-02-21 01:08] [PACMAN] installed libasyncns (0.8-5)
    [2014-02-21 01:08] [PACMAN] installed xcb-proto (1.10-1)
    [2014-02-21 01:08] [PACMAN] installed xproto (7.0.25-1)
    [2014-02-21 01:08] [PACMAN] installed libxdmcp (1.1.1-1)
    [2014-02-21 01:08] [PACMAN] installed libxau (1.0.8-2)
    [2014-02-21 01:08] [PACMAN] installed libxcb (1.10-1)
    [2014-02-21 01:08] [PACMAN] installed kbproto (1.0.6-1)
    [2014-02-21 01:08] [PACMAN] installed libx11 (1.6.2-1)
    [2014-02-21 01:08] [PACMAN] installed xextproto (7.3.0-1)
    [2014-02-21 01:08] [PACMAN] installed libxext (1.3.2-1)
    [2014-02-21 01:08] [PACMAN] installed inputproto (2.3-1)
    [2014-02-21 01:08] [PACMAN] installed libxi (1.7.2-1)
    [2014-02-21 01:08] [PACMAN] installed recordproto (1.14.2-1)
    [2014-02-21 01:08] [PACMAN] installed fixesproto (5.0-2)
    [2014-02-21 01:08] [PACMAN] installed libxfixes (5.0.1-1)
    [2014-02-21 01:08] [PACMAN] installed libxtst (1.2.2-1)
    [2014-02-21 01:08] [PACMAN] installed libice (1.0.8-2)
    [2014-02-21 01:08] [PACMAN] installed libsm (1.2.2-2)
    [2014-02-21 01:08] [PACMAN] installed json-c (0.11-1)
    [2014-02-21 01:08] [PACMAN] installed libpulse (4.0-6)
    [2014-02-21 01:08] [PACMAN] installed espeak (1.47.11-1)
    [2014-02-21 01:10] [PACMAN] Running 'pacman --color auto -S extra/beep'
    [2014-02-21 01:10] [PACMAN] installed beep (1.3-2)
    [2014-02-21 01:10] [PACMAN] Running 'pacman --color auto -S extra/beep'
    [2014-02-21 01:20] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-02-21 01:20] [PACMAN] synchronizing package lists
    [2014-02-21 01:20] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-02-21 01:20] [PACMAN] starting full system upgrade
    [2014-02-21 01:21] [PACMAN] removed libusbx (1.0.17-1)
    [2014-02-21 01:21] [ALPM-SCRIPTLET] ==> Appending keys from archlinux.gpg...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: depth: 0 valid: 1 signed: 7 trust: 0-, 0q, 0n, 0m, 0f, 1u
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: depth: 1 valid: 7 signed: 60 trust: 2-, 0q, 0n, 5m, 0f, 0u
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: depth: 2 valid: 60 signed: 4 trust: 60-, 0q, 0n, 0m, 0f, 0u
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: next trustdb check due at 2015-01-21
    [2014-02-21 01:21] [ALPM-SCRIPTLET] ==> Locally signing trusted keys in keyring...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Locally signing key 0E8B644079F599DFC1DDC3973348882F6AC6A4C2...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Locally signing key 684148BB25B49E986A4944C55184252D824B18E8...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Locally signing key 44D4A033AC140143927397D47EFD567D4C7EA887...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Locally signing key 27FFC4769E19F096D41D9265A04F9397CDFD6BB0...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Locally signing key AB19265E5D7D20687D303246BA1DFB64FFF979E7...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] ==> Importing owner trust values...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] ==> Disabling revoked keys in keyring...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key F5A361A3A13554B85E57DDDAAF7EF7873CFD4BB6...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 7FA647CD89891DEDC060287BB9113D1ED21E1A55...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key BC1FBE4D2826A0B51E47ED62E2539214C6C11350...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 4A8B17E20B88ACA61860009B5CED81B7C2E5C0D2...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 63F395DE2D6398BBE458F281F2DBB4931985A992...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 0B20CA1931F5DA3A70D0F8D2EA6836E1AB441196...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 8F76BEEA0289F9E1D3E229C05F946DED983D4366...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 66BD74A036D522F51DD70A3C7F2A16726521E06D...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key 81D7F8241DB38BC759C80FCE3A726C6170E80477...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] -> Disabling key E7210A59715F6940CF9A4E36A001876699AD6E84...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] ==> Updating trust database...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] gpg: next trustdb check due at 2015-01-21
    [2014-02-21 01:21] [PACMAN] upgraded archlinux-keyring (20140124-1 -> 20140220-1)
    [2014-02-21 01:21] [PACMAN] upgraded linux-api-headers (3.12.4-1 -> 3.13.2-1)
    [2014-02-21 01:21] [ALPM] warning: /etc/locale.gen installed as /etc/locale.gen.pacnew
    [2014-02-21 01:21] [ALPM-SCRIPTLET] Generating locales...
    [2014-02-21 01:21] [ALPM-SCRIPTLET] de_DE.UTF-8... done
    [2014-02-21 01:21] [ALPM-SCRIPTLET] de_DE.ISO-8859-1... done
    [2014-02-21 01:22] [ALPM-SCRIPTLET] de_DE.ISO-8859-15@euro... done
    [2014-02-21 01:22] [ALPM-SCRIPTLET] en_US.UTF-8... done
    [2014-02-21 01:22] [ALPM-SCRIPTLET] en_US.ISO-8859-1... done
    [2014-02-21 01:22] [ALPM-SCRIPTLET] Generation complete.
    [2014-02-21 01:22] [PACMAN] upgraded glibc (2.18-12 -> 2.19-2)
    [2014-02-21 01:22] [PACMAN] upgraded binutils (2.24-1 -> 2.24-2)
    [2014-02-21 01:22] [PACMAN] upgraded file (5.16-1 -> 5.17-1)
    [2014-02-21 01:22] [PACMAN] upgraded flex (2.5.37-1 -> 2.5.38-1)
    [2014-02-21 01:22] [PACMAN] upgraded gcc-libs (4.8.2-7 -> 4.8.2-8)
    [2014-02-21 01:22] [PACMAN] upgraded gcc (4.8.2-7 -> 4.8.2-8)
    [2014-02-21 01:22] [PACMAN] upgraded perl-error (0.17021-1 -> 0.17022-1)
    [2014-02-21 01:22] [PACMAN] upgraded git (1.8.5.4-1 -> 1.9.0-1)
    [2014-02-21 01:22] [PACMAN] upgraded p11-kit (0.20.1-1 -> 0.20.2-1)
    [2014-02-21 01:22] [PACMAN] upgraded gnutls (3.2.10-1 -> 3.2.11-1)
    [2014-02-21 01:22] [PACMAN] upgraded libpng (1.6.8-1 -> 1.6.9-1)
    [2014-02-21 01:22] [PACMAN] upgraded libsasl (2.1.26-6 -> 2.1.26-7)
    [2014-02-21 01:22] [PACMAN] upgraded pam (1.1.8-2 -> 1.1.8-3)
    [2014-02-21 01:22] [PACMAN] upgraded systemd (208-10 -> 208-11)
    [2014-02-21 01:22] [PACMAN] installed libusb (1.0.18-1)
    [2014-02-21 01:22] [PACMAN] upgraded man-pages (3.57-1 -> 3.58-1)
    [2014-02-21 01:22] [PACMAN] upgraded sqlite (3.8.3-1 -> 3.8.3.1-1)
    [2014-02-21 01:22] [PACMAN] upgraded python2 (2.7.6-1 -> 2.7.6-2)
    [2014-02-21 01:22] [PACMAN] upgraded s-nail (14.5.2-3 -> 14.5.2-4)
    [2014-02-21 01:22] [PACMAN] upgraded sudo (1.8.9.p4-1 -> 1.8.9.p5-1)
    [2014-02-21 01:22] [PACMAN] upgraded systemd-sysvcompat (208-10 -> 208-11)
    [2014-02-21 18:52] [PACMAN] Running 'pacman --color auto -S extra/alsa-tools extra/alsa-utils extra/alsa-oss extra/alsa-lib extra/alsa-firmware extra/alsa-plugins'
    [2014-02-21 18:52] [PACMAN] reinstalled alsa-lib (1.0.27.2-1)
    [2014-02-21 18:52] [PACMAN] installed alsa-tools (1.0.27-5)
    [2014-02-21 18:52] [PACMAN] reinstalled alsa-utils (1.0.27.2-1)
    [2014-02-21 18:52] [PACMAN] installed alsa-oss (1.0.25-2)
    [2014-02-21 18:52] [PACMAN] installed alsa-firmware (1.0.27-2)
    [2014-02-21 18:52] [PACMAN] installed alsa-plugins (1.0.27-2)
    [2014-02-21 19:02] [PACMAN] Running 'pacman --color auto -S extra/festival'
    [2014-02-21 19:02] [PACMAN] installed festival (2.1-4)
    [2014-02-21 19:03] [PACMAN] Running 'pacman --color auto -S community/festival-english'
    [2014-02-21 19:03] [PACMAN] installed festival-english (2.0.95-2)
    [2014-02-21 19:03] [PACMAN] Running 'pacman --color auto -S extra/alsa-oss'
    [2014-02-21 19:03] [PACMAN] reinstalled alsa-oss (1.0.25-2)
    [2014-02-27 15:30] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-02-27 15:30] [PACMAN] synchronizing package lists
    [2014-02-27 15:30] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-02-27 15:30] [PACMAN] starting full system upgrade
    [2014-02-27 15:31] [PACMAN] upgraded dialog (1:1.2_20140112-1 -> 1:1.2_20140219-1)
    [2014-02-27 15:31] [PACMAN] upgraded grep (2.16-1 -> 2.18-1)
    [2014-02-27 15:31] [PACMAN] upgraded libwbclient (4.1.4-1 -> 4.1.5-1)
    [2014-02-27 15:31] [PACMAN] upgraded linux-firmware (20140123.418320b-1 -> 20140217.343e460-1)
    [2014-02-27 15:32] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-02-27 15:32] [ALPM-SCRIPTLET] depmod: ERROR: Module 'hci_vhci' has devname (vhci) but lacks major and minor information. Ignoring.
    [2014-02-27 15:32] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Starting build: 3.13.5-1-ARCH
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Creating xz initcpio image: /boot/initramfs-linux.img
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: Filter chain: --lzma2=dict=1MiB,lc=3,lp=0,pb=2,mode=fast,nice=128,mf=hc4,depth=8
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: 9 MiB of memory is required. The limiter is disabled.
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: Decompression will need 2 MiB of memory.
    [2014-02-27 15:32] [ALPM-SCRIPTLET] (stdin): 4,226.6 KiB / 11.6 MiB = 0.354, 1.1 MiB/s, 0:10
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Starting build: 3.13.5-1-ARCH
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-02-27 15:32] [ALPM-SCRIPTLET] ==> Creating xz initcpio image: /boot/initramfs-linux-fallback.img
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: Filter chain: --lzma2=dict=1MiB,lc=3,lp=0,pb=2,mode=fast,nice=128,mf=hc4,depth=8
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: 9 MiB of memory is required. The limiter is disabled.
    [2014-02-27 15:32] [ALPM-SCRIPTLET] xz: Decompression will need 2 MiB of memory.
    [2014-02-27 15:33] [ALPM-SCRIPTLET] (stdin): 13.8 MiB / 41.2 MiB = 0.334, 1.4 MiB/s, 0:28
    [2014-02-27 15:33] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-02-27 15:33] [ALPM-SCRIPTLET] >>> WARNING: AT keyboard support is no longer built into the kernel.
    [2014-02-27 15:33] [ALPM-SCRIPTLET] >>> In order to use your keyboard during early init, you MUST
    [2014-02-27 15:33] [ALPM-SCRIPTLET] >>> include the 'keyboard' hook in your mkinitcpio.conf.
    [2014-02-27 15:33] [PACMAN] upgraded linux (3.12.9-1 -> 3.13.5-1)
    [2014-02-27 15:33] [PACMAN] upgraded linux-headers (3.12.9-1 -> 3.13.5-1)
    [2014-02-27 15:33] [PACMAN] upgraded man-pages (3.58-1 -> 3.60-1)
    [2014-02-27 15:33] [PACMAN] upgraded python2 (2.7.6-2 -> 2.7.6-3)
    [2014-02-27 15:33] [PACMAN] upgraded s-nail (14.5.2-4 -> 14.6.1-1)
    [2014-02-27 15:33] [PACMAN] upgraded smbclient (4.1.4-1 -> 4.1.5-1)
    [2014-02-27 15:33] [PACMAN] upgraded samba (4.1.4-1 -> 4.1.5-1)
    [2014-02-27 15:33] [PACMAN] Running 'pacman --color auto -U --noconfirm /tmp/yaourt-tmp-akurei/PKGDEST.img/btsync-1.2.82-3-i686.pkg.tar.xz'
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] WebGUI can be accessed at http://localhost:8888
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] To start btsync, execute:
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] systemctl start btsync@user
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] where 'user' is your username.
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] To autostart btsync on systm start, excute
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] systemctl enable btsync@user
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [ALPM-SCRIPTLET] where 'user' is your username.
    [2014-02-27 15:33] [ALPM-SCRIPTLET]
    [2014-02-27 15:33] [PACMAN] upgraded btsync (1.2.82-1 -> 1.2.82-3)
    [2014-03-01 19:34] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-03-01 19:34] [PACMAN] synchronizing package lists
    [2014-03-01 19:34] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-03-01 19:34] [PACMAN] starting full system upgrade
    [2014-03-01 19:35] [PACMAN] upgraded glibc (2.19-2 -> 2.19-3)
    [2014-03-01 19:35] [PACMAN] upgraded device-mapper (2.02.105-1 -> 2.02.105-2)
    [2014-03-01 19:35] [PACMAN] upgraded cryptsetup (1.6.3-2 -> 1.6.4-1)
    [2014-03-01 19:35] [PACMAN] upgraded libtirpc (0.2.3-2 -> 0.2.4-1)
    [2014-03-01 19:35] [PACMAN] upgraded readline (6.2.004-2 -> 6.3-1)
    [2014-03-01 19:35] [PACMAN] upgraded lvm2 (2.02.105-1 -> 2.02.105-2)
    [2014-03-04 23:15] [PACMAN] Running 'pacman --color auto -S --asdeps --needed extra/aalib extra/libmikmod community/allegro'
    [2014-03-05 18:00] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-03-05 18:00] [PACMAN] synchronizing package lists
    [2014-03-05 18:00] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-03-05 18:00] [PACMAN] starting full system upgrade
    [2014-03-05 18:00] [PACMAN] upgraded gnutls (3.2.11-1 -> 3.2.12-1)
    [2014-03-05 18:00] [PACMAN] installed libseccomp (2.1.1-1)
    [2014-03-05 18:00] [ALPM-SCRIPTLET] :: systemd has not been reexecuted. It is recommended that you
    [2014-03-05 18:00] [ALPM-SCRIPTLET] reboot at your earliest convenience.
    [2014-03-05 18:00] [ALPM-SCRIPTLET] :: Network device naming is now controlled by udev's net_setup_link
    [2014-03-05 18:00] [ALPM-SCRIPTLET] builtin. Refer to the NETWORK LINK CONFIGURATION section of the
    [2014-03-05 18:00] [ALPM-SCRIPTLET] udev manpage for a full description.
    [2014-03-05 18:00] [ALPM-SCRIPTLET] :: No changes have been made to your network naming configuration.
    [2014-03-05 18:00] [ALPM-SCRIPTLET] Interfaces should continue to maintain the same names.
    [2014-03-05 18:00] [PACMAN] upgraded systemd (208-11 -> 210-2)
    [2014-03-05 18:00] [PACMAN] upgraded libpulse (4.0-6 -> 5.0-1)
    [2014-03-05 18:00] [PACMAN] upgraded man-pages (3.60-1 -> 3.61-1)
    [2014-03-05 18:00] [PACMAN] upgraded systemd-sysvcompat (208-11 -> 210-2)
    [2014-03-10 15:50] [PACMAN] Running 'pacman --color auto -Sy'
    [2014-03-10 15:50] [PACMAN] synchronizing package lists
    [2014-03-10 15:51] [PACMAN] Running 'pacman --color auto -S -u'
    [2014-03-10 15:51] [PACMAN] starting full system upgrade
    [2014-03-10 15:52] [PACMAN] upgraded file (5.17-1 -> 5.17-2)
    [2014-03-10 15:52] [PACMAN] upgraded gnutls (3.2.12-1 -> 3.2.12.1-1)
    [2014-03-10 15:52] [PACMAN] upgraded libarchive (3.1.2-4 -> 3.1.2-6)
    [2014-03-10 15:52] [PACMAN] upgraded libpng (1.6.9-1 -> 1.6.10-1)
    [2014-03-10 15:52] [PACMAN] upgraded libcups (1.7.1-3 -> 1.7.1-4)
    [2014-03-10 15:52] [PACMAN] upgraded libnl (3.2.23-1 -> 3.2.24-1)
    [2014-03-10 15:52] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2014-03-10 15:52] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ARCH
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Creating xz initcpio image: /boot/initramfs-linux.img
    [2014-03-10 15:52] [ALPM-SCRIPTLET] xz: Filter chain: --lzma2=dict=1MiB,lc=3,lp=0,pb=2,mode=fast,nice=128,mf=hc4,depth=8
    [2014-03-10 15:52] [ALPM-SCRIPTLET] xz: 9 MiB of memory is required. The limiter is disabled.
    [2014-03-10 15:52] [ALPM-SCRIPTLET] xz: Decompression will need 2 MiB of memory.
    [2014-03-10 15:52] [ALPM-SCRIPTLET] (stdin): 4,276.4 KiB / 11.7 MiB = 0.356, 1.4 MiB/s, 0:08
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> Starting build: 3.13.6-1-ARCH
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [encrypt]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2014-03-10 15:52] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2014-03-10 15:52] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2014-03-10 15:53] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2014-03-10 15:53] [ALPM-SCRIPTLET] ==> Creating xz initcpio image: /boot/initramfs-linux-fallback.img
    [2014-03-10 15:53] [ALPM-SCRIPTLET] xz: Filter chain: --lzma2=dict=1MiB,lc=3,lp=0,pb=2,mode=fast,nice=128,mf=hc4,depth=8
    [2014-03-10 15:53] [ALPM-SCRIPTLET] xz: 9 MiB of memory is required. The limiter is disabled.
    [2014-03-10 15:53] [ALPM-SCRIPTLET] xz: Decompression will need 2 MiB of memory.
    [2014-03-10 15:53] [ALPM-SCRIPTLET] (stdin): 13.8 MiB / 41.2 MiB = 0.335, 1.1 MiB/s, 0:36
    [2014-03-10 15:53] [ALPM-SCRIPTLET] ==> Image generation successful
    [2014-03-10 15:53] [PACMAN] upgraded linux (3.13.5-1 -> 3.13.6-1)
    [2014-03-10 15:53] [PACMAN] upgraded linux-headers (3.13.5-1 -> 3.13.6-1)
    [2014-03-10 15:53] [PACMAN] upgraded pkgfile (12-1 -> 13-1)
    [2014-03-10 15:53] [PACMAN] upgraded ruby (2.1.0-2 -> 2.1.1-1)
    [2014-03-10 15:53] [PACMAN] upgraded s-nail (14.6.1-1 -> 14.6.2-1)
    [2014-03-10 15:53] [PACMAN] upgraded systemd (210-2 -> 210-3)
    [2014-03-10 15:53] [PACMAN] upgraded systemd-sysvcompat (210-2 -> 210-3)
    [2014-03-10 18:32] [PACMAN] Running 'pacman -Syyu'
    [2014-03-10 18:32] [PACMAN] synchronizing package lists
    [2014-03-10 18:32] [PACMAN] starting full system upgrade
    [2014-03-10 18:32] [PACMAN] upgraded dhcpcd (6.2.1-1 -> 6.3.1-1)
    [2014-03-10 18:32] [PACMAN] upgraded espeak (1.47.11-1 -> 1.48.04-1)
    [2014-03-10 18:32] [PACMAN] upgraded tzdata (2013i-1 -> 2014a-1)
    The last log via "journalctl -x -b -1":
    -- Logs begin at Mo 2013-02-25 20:48:46 CET, end at Mo 2014-03-10 18:44:57 CET. --
    Mär 10 18:41:59 matt systemd-journal[178]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.8M free of 492.4M available → current limit 49.8M).
    Mär 10 18:41:59 matt systemd-journal[178]: Runtime journal is using 6.2M (max allowed 49.8M, trying to leave 74.8M free of 492.4M available → current limit 49.8M).
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys cpuset
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys cpu
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys cpuacct
    Mär 10 18:41:59 matt kernel: Linux version 3.13.6-1-ARCH (nobody@var-lib-archbuild-extra-i686-thomas) (gcc version 4.8.2 20140206 (prerelease) (GCC) ) #1 SMP PREEMPT Fri Mar 7 22:30:23 CET 2014
    Mär 10 18:41:59 matt kernel: Disabled fast string operations
    Mär 10 18:41:59 matt kernel: e820: BIOS-provided physical RAM map:
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003f7bffff] usable
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x000000003f7c0000-0x000000003f7cdfff] ACPI data
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x000000003f7ce000-0x000000003f7fffff] ACPI NVS
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Mär 10 18:41:59 matt kernel: BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
    Mär 10 18:41:59 matt kernel: Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
    Mär 10 18:41:59 matt kernel: SMBIOS 2.4 present.
    Mär 10 18:41:59 matt kernel: DMI: Intel Intel/Intel, BIOS 080015 12/25/2009
    Mär 10 18:41:59 matt kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    Mär 10 18:41:59 matt kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Mär 10 18:41:59 matt kernel: e820: last_pfn = 0x3f7c0 max_arch_pfn = 0x100000
    Mär 10 18:41:59 matt kernel: MTRR default type: uncachable
    Mär 10 18:41:59 matt kernel: MTRR fixed ranges enabled:
    Mär 10 18:41:59 matt kernel: 00000-9FFFF write-back
    Mär 10 18:41:59 matt kernel: A0000-DFFFF uncachable
    Mär 10 18:41:59 matt kernel: E0000-E3FFF write-protect
    Mär 10 18:41:59 matt kernel: E4000-EFFFF write-through
    Mär 10 18:41:59 matt kernel: F0000-FFFFF write-protect
    Mär 10 18:41:59 matt kernel: MTRR variable ranges enabled:
    Mär 10 18:41:59 matt kernel: 0 base 000000000 mask 0C0000000 write-back
    Mär 10 18:41:59 matt kernel: 1 base 03F800000 mask 0FF800000 uncachable
    Mär 10 18:41:59 matt kernel: 2 disabled
    Mär 10 18:41:59 matt kernel: 3 disabled
    Mär 10 18:41:59 matt kernel: 4 disabled
    Mär 10 18:41:59 matt kernel: 5 disabled
    Mär 10 18:41:59 matt kernel: 6 disabled
    Mär 10 18:41:59 matt kernel: 7 disabled
    Mär 10 18:41:59 matt kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Mär 10 18:41:59 matt kernel: found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [c00ff780]
    Mär 10 18:41:59 matt kernel: Scanning 1 areas for low memory corruption
    Mär 10 18:41:59 matt kernel: initial memory mapped: [mem 0x00000000-0x00bfffff]
    Mär 10 18:41:59 matt kernel: Base memory trampoline at [c009b000] 9b000 size 16384
    Mär 10 18:41:59 matt kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Mär 10 18:41:59 matt kernel: [mem 0x00000000-0x000fffff] page 4k
    Mär 10 18:41:59 matt kernel: init_memory_mapping: [mem 0x37000000-0x373fffff]
    Mär 10 18:41:59 matt kernel: [mem 0x37000000-0x373fffff] page 2M
    Mär 10 18:41:59 matt kernel: init_memory_mapping: [mem 0x30000000-0x36ffffff]
    Mär 10 18:41:59 matt kernel: [mem 0x30000000-0x36ffffff] page 2M
    Mär 10 18:41:59 matt kernel: init_memory_mapping: [mem 0x00100000-0x2fffffff]
    Mär 10 18:41:59 matt kernel: [mem 0x00100000-0x003fffff] page 4k
    Mär 10 18:41:59 matt kernel: [mem 0x00400000-0x2fffffff] page 2M
    Mär 10 18:41:59 matt kernel: init_memory_mapping: [mem 0x37400000-0x377fdfff]
    Mär 10 18:41:59 matt kernel: [mem 0x37400000-0x377fdfff] page 4k
    Mär 10 18:41:59 matt kernel: BRK [0x008aa000, 0x008aafff] PGTABLE
    Mär 10 18:41:59 matt kernel: RAMDISK: [mem 0x3f392000-0x3f7bffff]
    Mär 10 18:41:59 matt kernel: Allocated new RAMDISK: [mem 0x373d0000-0x377fd177]
    Mär 10 18:41:59 matt kernel: Move RAMDISK from [mem 0x3f392000-0x3f7bf177] to [mem 0x373d0000-0x377fd177]
    Mär 10 18:41:59 matt kernel: ACPI: RSDP 000f9b20 000014 (v00 ACPIAM)
    Mär 10 18:41:59 matt kernel: ACPI: RSDT 3f7c0000 000038 (v01 122509 RSDT1918 20091225 MSFT 00000097)
    Mär 10 18:41:59 matt kernel: ACPI: FACP 3f7c0200 000084 (v02 122509 FACP1918 20091225 MSFT 00000097)
    Mär 10 18:41:59 matt kernel: ACPI: DSDT 3f7c0430 004442 (v01 BIBTB BIBTB010 00000010 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: FACS 3f7ce000 000040
    Mär 10 18:41:59 matt kernel: ACPI: APIC 3f7c0390 00005C (v01 122509 APIC1918 20091225 MSFT 00000097)
    Mär 10 18:41:59 matt kernel: ACPI: MCFG 3f7c03f0 00003C (v01 122509 OEMMCFG 20091225 MSFT 00000097)
    Mär 10 18:41:59 matt kernel: ACPI: OEMB 3f7ce040 000071 (v01 122509 OEMB1918 20091225 MSFT 00000097)
    Mär 10 18:41:59 matt kernel: ACPI: SSDT 3f7cea50 0004F0 (v01 PmRef CpuPm 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Local APIC address 0xfee00000
    Mär 10 18:41:59 matt kernel: 127MB HIGHMEM available.
    Mär 10 18:41:59 matt kernel: 887MB LOWMEM available.
    Mär 10 18:41:59 matt kernel: mapped low ram: 0 - 377fe000
    Mär 10 18:41:59 matt kernel: low ram: 0 - 377fe000
    Mär 10 18:41:59 matt kernel: BRK [0x008ab000, 0x008abfff] PGTABLE
    Mär 10 18:41:59 matt kernel: Zone ranges:
    Mär 10 18:41:59 matt kernel: DMA [mem 0x00001000-0x00ffffff]
    Mär 10 18:41:59 matt kernel: Normal [mem 0x01000000-0x377fdfff]
    Mär 10 18:41:59 matt kernel: HighMem [mem 0x377fe000-0x3f7bffff]
    Mär 10 18:41:59 matt kernel: Movable zone start for each node
    Mär 10 18:41:59 matt kernel: Early memory node ranges
    Mär 10 18:41:59 matt kernel: node 0: [mem 0x00001000-0x0009efff]
    Mär 10 18:41:59 matt kernel: node 0: [mem 0x00100000-0x3f7bffff]
    Mär 10 18:41:59 matt kernel: On node 0 totalpages: 259934
    Mär 10 18:41:59 matt kernel: free_area_init_node: node 0, pgdat c0707d00, node_mem_map f6be0020
    Mär 10 18:41:59 matt kernel: DMA zone: 32 pages used for memmap
    Mär 10 18:41:59 matt kernel: DMA zone: 0 pages reserved
    Mär 10 18:41:59 matt kernel: DMA zone: 3998 pages, LIFO batch:0
    Mär 10 18:41:59 matt kernel: Normal zone: 1744 pages used for memmap
    Mär 10 18:41:59 matt kernel: Normal zone: 223230 pages, LIFO batch:31
    Mär 10 18:41:59 matt kernel: HighMem zone: 256 pages used for memmap
    Mär 10 18:41:59 matt kernel: HighMem zone: 32706 pages, LIFO batch:7
    Mär 10 18:41:59 matt kernel: Using APIC driver default
    Mär 10 18:41:59 matt kernel: ACPI: PM-Timer IO Port: 0x808
    Mär 10 18:41:59 matt kernel: ACPI: Local APIC address 0xfee00000
    Mär 10 18:41:59 matt kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Mär 10 18:41:59 matt kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Mär 10 18:41:59 matt kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Mär 10 18:41:59 matt kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Mär 10 18:41:59 matt kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Mär 10 18:41:59 matt kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Mär 10 18:41:59 matt kernel: ACPI: IRQ0 used by override.
    Mär 10 18:41:59 matt kernel: ACPI: IRQ2 used by override.
    Mär 10 18:41:59 matt kernel: ACPI: IRQ9 used by override.
    Mär 10 18:41:59 matt kernel: Using ACPI (MADT) for SMP configuration information
    Mär 10 18:41:59 matt kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
    Mär 10 18:41:59 matt kernel: nr_irqs_gsi: 40
    Mär 10 18:41:59 matt kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Mär 10 18:41:59 matt kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Mär 10 18:41:59 matt kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Mär 10 18:41:59 matt kernel: e820: [mem 0x40000000-0xfedfffff] available for PCI devices
    Mär 10 18:41:59 matt kernel: Booting paravirtualized kernel on bare hardware
    Mär 10 18:41:59 matt kernel: setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
    Mär 10 18:41:59 matt kernel: PERCPU: Embedded 14 pages/cpu @f6bbe000 s33280 r0 d24064 u57344
    Mär 10 18:41:59 matt kernel: pcpu-alloc: s33280 r0 d24064 u57344 alloc=14*4096
    Mär 10 18:41:59 matt kernel: pcpu-alloc: [0] 0 [0] 1
    Mär 10 18:41:59 matt kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 258158
    Mär 10 18:41:59 matt kernel: Kernel command line: BOOT_IMAGE=../vmlinuz-linux cryptdevice=/dev/sda2:lvmmatt root=/dev/mapper/matt-root ro initrd=../initramfs-linux.img
    Mär 10 18:41:59 matt kernel: PID hash table entries: 4096 (order: 2, 16384 bytes)
    Mär 10 18:41:59 matt kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
    Mär 10 18:41:59 matt kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
    Mär 10 18:41:59 matt kernel: Initializing CPU#0
    Mär 10 18:41:59 matt kernel: allocated 2080248 bytes of page_cgroup
    Mär 10 18:41:59 matt kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Mär 10 18:41:59 matt kernel: Initializing HighMem for node 0 (000377fe:0003f7c0)
    Mär 10 18:41:59 matt kernel: Memory: 1016432K/1039736K available (4471K kernel code, 448K rwdata, 1320K rodata, 588K init, 972K bss, 23304K reserved, 130824K highmem)
    Mär 10 18:41:59 matt kernel: virtual kernel memory layout:
    fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
    pkmap : 0xff800000 - 0xffc00000 (4096 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
    lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
    .init : 0xc071b000 - 0xc07ae000 ( 588 kB)
    .data : 0xc055e28a - 0xc071a200 (1775 kB)
    .text : 0xc0100000 - 0xc055e28a (4472 kB)
    Mär 10 18:41:59 matt kernel: Checking if this processor honours the WP bit even in supervisor mode...Ok.
    Mär 10 18:41:59 matt kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    Mär 10 18:41:59 matt kernel: Preemptible hierarchical RCU implementation.
    Mär 10 18:41:59 matt kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Mär 10 18:41:59 matt kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Mär 10 18:41:59 matt kernel: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
    Mär 10 18:41:59 matt kernel: NR_IRQS:2304 nr_irqs:512 16
    Mär 10 18:41:59 matt kernel: CPU 0 irqstacks, hard=f6408000 soft=f640a000
    Mär 10 18:41:59 matt kernel: Console: colour VGA+ 80x25
    Mär 10 18:41:59 matt kernel: console [tty0] enabled
    Mär 10 18:41:59 matt kernel: tsc: Fast TSC calibration failed
    Mär 10 18:41:59 matt kernel: tsc: PIT calibration matches PMTIMER. 2 loops
    Mär 10 18:41:59 matt kernel: tsc: Detected 1595.992 MHz processor
    Mär 10 18:41:59 matt kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3193.98 BogoMIPS (lpj=5319973)
    Mär 10 18:41:59 matt kernel: pid_max: default: 32768 minimum: 301
    Mär 10 18:41:59 matt kernel: Security Framework initialized
    Mär 10 18:41:59 matt kernel: AppArmor: AppArmor disabled by boot time parameter
    Mär 10 18:41:59 matt kernel: Yama: becoming mindful.
    Mär 10 18:41:59 matt kernel: Mount-cache hash table entries: 512
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys memory
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys devices
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys freezer
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys net_cls
    Mär 10 18:41:59 matt kernel: Initializing cgroup subsys blkio
    Mär 10 18:41:59 matt kernel: Disabled fast string operations
    Mär 10 18:41:59 matt kernel: CPU: Physical Processor ID: 0
    Mär 10 18:41:59 matt kernel: CPU: Processor Core ID: 0
    Mär 10 18:41:59 matt kernel: mce: CPU supports 5 MCE banks
    Mär 10 18:41:59 matt kernel: CPU0: Thermal monitoring handled by SMI
    Mär 10 18:41:59 matt kernel: Last level iTLB entries: 4KB 32, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 8
    tlb_flushall_shift: 6
    Mär 10 18:41:59 matt kernel: Freeing SMP alternatives memory: 20K (c07ae000 - c07b3000)
    Mär 10 18:41:59 matt kernel: ACPI: Core revision 20131115
    Mär 10 18:41:59 matt kernel: ACPI: All ACPI Tables successfully acquired
    Mär 10 18:41:59 matt kernel: ftrace: allocating 20082 entries in 40 pages
    Mär 10 18:41:59 matt kernel: Enabling APIC mode: Flat. Using 1 I/O APICs
    Mär 10 18:41:59 matt kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Mär 10 18:41:59 matt kernel: smpboot: CPU0: Intel(R) Atom(TM) CPU N270 @ 1.60GHz (fam: 06, model: 1c, stepping: 02)
    Mär 10 18:41:59 matt kernel: Performance Events: PEBS fmt0+, LBR disabled due to erratumAtom events, Intel PMU driver.
    Mär 10 18:41:59 matt kernel: ... version: 3
    Mär 10 18:41:59 matt kernel: ... bit width: 40
    Mär 10 18:41:59 matt kernel: ... generic registers: 2
    Mär 10 18:41:59 matt kernel: ... value mask: 000000ffffffffff
    Mär 10 18:41:59 matt kernel: ... max period: 000000007fffffff
    Mär 10 18:41:59 matt kernel: ... fixed-purpose events: 3
    Mär 10 18:41:59 matt kernel: ... event mask: 0000000700000003
    Mär 10 18:41:59 matt kernel: CPU 1 irqstacks, hard=f64cc000 soft=f64ce000
    Mär 10 18:41:59 matt kernel: x86: Booting SMP configuration:
    Mär 10 18:41:59 matt kernel: Initializing CPU#1
    Mär 10 18:41:59 matt kernel: Disabled fast string operations
    Mär 10 18:41:59 matt kernel: CPU1: Thermal monitoring handled by SMI
    Mär 10 18:41:59 matt kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Mär 10 18:41:59 matt kernel: .... node #0, CPUs: #1
    Mär 10 18:41:59 matt kernel: x86: Booted up 1 node, 2 CPUs
    Mär 10 18:41:59 matt kernel: smpboot: Total of 2 processors activated (6386.96 BogoMIPS)
    Mär 10 18:41:59 matt kernel: devtmpfs: initialized
    Mär 10 18:41:59 matt kernel: PM: Registering ACPI NVS region [mem 0x3f7ce000-0x3f7fffff] (204800 bytes)
    Mär 10 18:41:59 matt kernel: RTC time: 17:41:46, date: 03/10/14
    Mär 10 18:41:59 matt kernel: NET: Registered protocol family 16
    Mär 10 18:41:59 matt kernel: cpuidle: using governor ladder
    Mär 10 18:41:59 matt kernel: cpuidle: using governor menu
    Mär 10 18:41:59 matt kernel: ACPI: bus type PCI registered
    Mär 10 18:41:59 matt kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Mär 10 18:41:59 matt kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mär 10 18:41:59 matt kernel: PCI: not using MMCONFIG
    Mär 10 18:41:59 matt kernel: PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=4
    Mär 10 18:41:59 matt kernel: PCI: Using configuration type 1 for base access
    Mär 10 18:41:59 matt kernel: bio: create slab <bio-0> at 0
    Mär 10 18:41:59 matt kernel: ACPI: Added _OSI(Module Device)
    Mär 10 18:41:59 matt kernel: ACPI: Added _OSI(Processor Device)
    Mär 10 18:41:59 matt kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Mär 10 18:41:59 matt kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Mär 10 18:41:59 matt kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Mär 10 18:41:59 matt kernel: ACPI: SSDT 3f7ce190 000285 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Dynamic OEM Table Load:
    Mär 10 18:41:59 matt kernel: ACPI: SSDT (null) 000285 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: SSDT 3f7ce4b0 000594 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Dynamic OEM Table Load:
    Mär 10 18:41:59 matt kernel: ACPI: SSDT (null) 000594 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: SSDT 3f7ce0c0 0000CC (v01 PmRef Cpu1Ist 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Dynamic OEM Table Load:
    Mär 10 18:41:59 matt kernel: ACPI: SSDT (null) 0000CC (v01 PmRef Cpu1Ist 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: SSDT 3f7ce420 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Dynamic OEM Table Load:
    Mär 10 18:41:59 matt kernel: ACPI: SSDT (null) 000085 (v01 PmRef Cpu1Cst 00003000 INTL 20051117)
    Mär 10 18:41:59 matt kernel: ACPI: Interpreter enabled
    Mär 10 18:41:59 matt kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
    Mär 10 18:41:59 matt kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
    Mär 10 18:41:59 matt kernel: ACPI: (supports S0 S3 S4 S5)
    Mär 10 18:41:59 matt kernel: ACPI: Using IOAPIC for interrupt routing
    Mär 10 18:41:59 matt kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Mär 10 18:41:59 matt kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
    Mär 10 18:41:59 matt kernel: PCI: MMCONFIG for 0000 [bus00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000) (size reduced!)
    Mär 10 18:41:59 matt kernel: PCI: Using MMCONFIG for extended config space
    Mär 10 18:41:59 matt kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Mär 10 18:41:59 matt kernel: ACPI: No dock devices found.
    Mär 10 18:41:59 matt kernel: ACPI: Power Resource [PFAN] (on)
    Mär 10 18:41:59 matt kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Mär 10 18:41:59 matt kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Mär 10 18:41:59 matt kernel: acpi PNP0A08:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Mär 10 18:41:59 matt kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    Mär 10 18:41:59 matt kernel: PCI host bridge to bus 0000:00
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [mem 0x3f800000-0xdfffffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: root bus resource [mem 0xe4000000-0xfed8ffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:00.0: [8086:27ac] type 00 class 0x060000
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: [8086:27ae] type 00 class 0x030000
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfe980000-0xfe9fffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: reg 0x14: [io 0xcc80-0xcc87]
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: reg 0x1c: [mem 0xfe940000-0xfe97ffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.1: [8086:27a6] type 00 class 0x038000
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.1: reg 0x10: [mem 0xfe880000-0xfe8fffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
    Mär 10 18:41:59 matt kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfe938000-0xfe93bfff 64bit]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: [8086:27d4] type 01 class 0x060400
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.0: reg 0x20: [io 0xcc00-0xcc1f]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.1: reg 0x20: [io 0xc880-0xc89f]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.1: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.2: reg 0x20: [io 0xc800-0xc81f]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.2: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.3: reg 0x20: [io 0xc480-0xc49f]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.3: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfe937c00-0xfe937fff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1d.7: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: System wakeup disabled by ACPI
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.0: [8086:27b9] type 00 class 0x060100
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.0: Force enabled HPET at 0xfed00000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.0: address space collision: [io 0x0800-0x087f] conflicts with ACPI CPU throttle [??? 0x00000810-0x00000815 flags 0x80000000]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.0: quirk: [io 0x0480-0x04bf] claimed by ICH6 GPIO
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: [8086:27c4] type 00 class 0x010180
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: reg 0x10: [io 0x0000-0x0007]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: reg 0x14: [io 0x0000-0x0003]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: reg 0x18: [io 0x0000-0x0007]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: reg 0x1c: [io 0x0000-0x0003]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: reg 0x20: [io 0xffa0-0xffaf]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Mär 10 18:41:59 matt kernel: pci 0000:02:00.0: [10ec:8199] type 00 class 0x028000
    Mär 10 18:41:59 matt kernel: pci 0000:02:00.0: reg 0x10: [io 0xdc00-0xdcff]
    Mär 10 18:41:59 matt kernel: pci 0000:02:00.0: reg 0x14: [mem 0xfeafc000-0xfeafffff]
    Mär 10 18:41:59 matt kernel: pci 0000:02:00.0: supports D1 D2
    Mär 10 18:41:59 matt kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [mem 0xfea00000-0xfeafffff]
    Mär 10 18:41:59 matt kernel: pci 0000:03:00.0: [1106:3053] type 00 class 0x020000
    Mär 10 18:41:59 matt kernel: pci 0000:03:00.0: reg 0x10: [io 0xec00-0xecff]
    Mär 10 18:41:59 matt kernel: pci 0000:03:00.0: reg 0x14: [mem 0xfebffc00-0xfebffcff]
    Mär 10 18:41:59 matt kernel: pci 0000:03:00.0: supports D1 D2
    Mär 10 18:41:59 matt kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [mem 0xfeb00000-0xfebfffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [mem 0x3f800000-0xdfffffff] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: bridge window [mem 0xe4000000-0xfed8ffff] (subtractive decode)
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: on NUMA node 0
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 *10 11 12 14 15)
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 *11 12 14 15)
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 10 11 12 14 15)
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 10 11 12 14 15)
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
    Mär 10 18:41:59 matt kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 10 11 12 14 15)
    Mär 10 18:41:59 matt kernel: ACPI: Enabled 1 GPEs in block 00 to 1F
    Mär 10 18:41:59 matt kernel: ACPI: \_SB_.PCI0: notify handler is installed
    Mär 10 18:41:59 matt kernel: Found 1 acpi root devices
    Mär 10 18:41:59 matt kernel: ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Mär 10 18:41:59 matt kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Mär 10 18:41:59 matt kernel: vgaarb: loaded
    Mär 10 18:41:59 matt kernel: vgaarb: bridge control possible 0000:00:02.0
    Mär 10 18:41:59 matt kernel: PCI: Using ACPI for IRQ routing
    Mär 10 18:41:59 matt kernel: PCI: pci_cache_line_size set to 64 bytes
    Mär 10 18:41:59 matt kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Mär 10 18:41:59 matt kernel: e820: reserve RAM buffer [mem 0x3f7c0000-0x3fffffff]
    Mär 10 18:41:59 matt kernel: NetLabel: Initializing
    Mär 10 18:41:59 matt kernel: NetLabel: domain hash size = 128
    Mär 10 18:41:59 matt kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Mär 10 18:41:59 matt kernel: NetLabel: unlabeled traffic allowed by default
    Mär 10 18:41:59 matt kernel: hpet clockevent registered
    Mär 10 18:41:59 matt kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    Mär 10 18:41:59 matt kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Mär 10 18:41:59 matt kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    Mär 10 18:41:59 matt kernel: Switched to clocksource hpet
    Mär 10 18:41:59 matt kernel: pnp: PnP ACPI init
    Mär 10 18:41:59 matt kernel: ACPI: bus type PNP registered
    Mär 10 18:41:59 matt kernel: system 00:00: [mem 0xfed13000-0xfed19fff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    Mär 10 18:41:59 matt kernel: pnp 00:01: [dma 4]
    Mär 10 18:41:59 matt kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Mär 10 18:41:59 matt kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Mär 10 18:41:59 matt kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
    Mär 10 18:41:59 matt kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
    Mär 10 18:41:59 matt kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
    Mär 10 18:41:59 matt kernel: pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
    Mär 10 18:41:59 matt kernel: system 00:07: [io 0x0a00-0x0a0f] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:07: [io 0x0a30-0x0a3f] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mär 10 18:41:59 matt kernel: system 00:08: [io 0x04d0-0x04d1] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:08: [io 0x0800-0x087f] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:08: [io 0x0480-0x04bf] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:08: [mem 0xfed40000-0xfed8ffff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mär 10 18:41:59 matt kernel: system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mär 10 18:41:59 matt kernel: system 00:0a: [mem 0xe0000000-0xe3ffffff] has been reserved
    Mär 10 18:41:59 matt kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    Mär 10 18:41:59 matt kernel: system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:0b: [mem 0x000c0000-0x000cffff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:0b: [mem 0x000e0000-0x000fffff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:0b: [mem 0x00100000-0x3f7fffff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:0b: [mem 0xfed90000-0xffffffff] could not be reserved
    Mär 10 18:41:59 matt kernel: system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
    Mär 10 18:41:59 matt kernel: pnp: PnP ACPI: found 12 devices
    Mär 10 18:41:59 matt kernel: ACPI: bus type PNP unregistered
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 01] add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1f.0: BAR 13: [io 0x0800-0x087f] has bogus alignment
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0x40000000-0x401fffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.0: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: PCI bridge to [bus 02]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [mem 0xfea00000-0xfeafffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: PCI bridge to [bus 03]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [io 0xe000-0xefff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [mem 0xfeb00000-0xfebfffff]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1c.2: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci 0000:00:1e.0: PCI bridge to [bus 04]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 8 [mem 0x3f800000-0xdfffffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:00: resource 9 [mem 0xe4000000-0xfed8ffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:01: resource 0 [io 0x1000-0x1fff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:01: resource 1 [mem 0x40000000-0x401fffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:01: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:02: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:03: resource 1 [mem 0xfeb00000-0xfebfffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:03: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 4 [io 0x0000-0x0cf7]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 5 [io 0x0d00-0xffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000dffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 8 [mem 0x3f800000-0xdfffffff]
    Mär 10 18:41:59 matt kernel: pci_bus 0000:04: resource 9 [mem 0xe4000000-0xfed8ffff]
    Mär 10 18:41:59 matt kernel: NET: Registered protocol family 2
    Mär 10 18:41:59 matt kernel: TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    Mär 10 18:41:59 matt kernel: TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    Mär 10 18:41:59 matt kernel: TCP: Hash tables configured (established 8192 bind 8192)
    Mär 10 18:41:59 matt kernel: TCP: reno registered
    Mär 10 18:41:59 matt kernel: UDP hash table entries: 512 (order: 2, 16384 bytes)
    Mär 10 18:41:59 matt kernel: UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    Mär 10 18:41:59 matt kernel: NET: Registered protocol family 1
    Mär 10 18:41:59 matt kernel: pci 0000:00:02.0: Boot video device
    Mär 10 18:41:59 matt kernel: PCI: CLS 32 bytes, default 64
    Mär 10 18:41:59 matt kernel: Unpacking initramfs...
    Mär 10 18:41:59 matt kernel: Freeing initrd memory: 4280K (f73d0000 - f77fe000)
    Mär 10 18:41:59 matt kernel: apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac)
    Mär 10 18:41:59 matt kernel: apm: disabled - APM is not SMP safe.
    Mär 10 18:41:59 matt kernel: Scanning for low memory corruption every 60 seconds
    Mär 10 18:41:59 matt kernel: audit: initializing netlink socket (disabled)
    Mär 10 18:41:59 matt kernel: type=2000 audit(1394473306.599:1): initialized
    Mär 10 18:41:59 matt kernel: bounce pool size: 64 pages
    Mär 10 18:41:59 matt kernel: HugeTLB registered 4 MB page size, pre-allocated 0 pages
    Mär 10 18:41:59 matt kernel: zbud: loaded
    Mär 10 18:41:59 matt kernel: VFS: Disk quotas dquot_6.5.2
    Mär 10 18:41:59 matt kernel: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    Mär 10 18:41:59 matt kernel: msgmni has been set to 1738
    Mär 10 18:41:59 matt kernel: Key type big_key registered
    Mär 10 18:41:59 matt kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Mär 10 18:41:59 matt kernel: io scheduler noop registered
    Mär 10 18:41:59 matt kernel: io scheduler deadline registered
    Mär 10 18:41:59 matt kernel: io scheduler cfq registered (default)
    Mär 10 18:41:59 matt kernel: pcieport 0000:00:1c.0: enabling device (0104 -> 0107)
    Mär 10 18:41:59 matt kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    Mär 10 18:41:59 matt kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    Mär 10 18:41:59 matt kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
    Mär 10 18:41:59 matt kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Mär 10 18:41:59 matt kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Mär 10 18:41:59 matt kernel: intel_idle: MWAIT substates: 0x20220
    Mär 10 18:41:59 matt kernel: intel_idle: v0.4 model 0x1C
    Mär 10 18:41:59 matt kernel: intel_idle: lapic_timer_reliable_states 0x2
    Mär 10 18:41:59 matt kernel: tsc: Marking TSC unstable due to TSC halts in idle states deeper than C2
    Mär 10 18:41:59 matt kernel: GHES: HEST is not enabled!
    Mär 10 18:41:59 matt kernel: isapnp: Scanning for PnP cards...
    Mär 10 18:41:59 matt kernel: isapnp: No Plug & Play device found
    Mär 10 18:41:59 matt kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Mär 10 18:41:59 matt kernel: rtc_cmos 00:02: RTC can wake from S4
    Mär 10 18:41:59 matt kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Mär 10 18:41:59 matt kernel: rtc_cmos 00:02: alarms up to one month, 114 bytes nvram, hpet irqs
    Mär 10 18:41:59 matt kernel: drop_monitor: Initializing network drop monitor service
    Mär 10 18:41:59 matt kernel: TCP: cubic registered
    Mär 10 18:41:59 matt kernel: NET: Registered protocol family 10
    Mär 10 18:41:59 matt kernel: NET: Registered protocol family 17
    Mär 10 18:41:59 matt kernel: Key type dns_resolver registered
    Mär 10 18:41:59 matt kernel: Using IPI No-Shortcut mode
    Mär 10 18:41:59 matt kernel: registered taskstats version 1
    Mär 10 18:41:59 matt kernel: Magic number: 6:667:693
    Mär 10 18:41:59 matt kernel: rtc_cmos 00:02: setting system clock to 2014-03-10 17:41:47 UTC (1394473307)
    Mär 10 18:41:59 matt kernel: PM: Hibernation image not present or could not be loaded.
    Mär 10 18:41:59 matt kernel: Freeing unused kernel memory: 588K (c071b000 - c07ae000)
    Mär 10 18:41:59 matt kernel: Write protecting the kernel text: 4476k
    Mär 10 18:41:59 matt kernel: Write protecting the kernel read-only data: 1324k
    Mär 10 18:41:59 matt kernel: random: systemd-tmpfile urandom read with 2 bits of entropy available
    Mär 10 18:41:59 matt systemd-udevd[47]: starting version 210
    Mär 10 18:41:59 matt kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
    Mär 10 18:41:59 matt kernel: i8042: Detected active multiplexing controller, rev 1.1
    Mär 10 18:41:59 matt kernel: ACPI: bus type USB registered
    Mär 10 18:41:59 matt kernel: usbcore: registered new interface driver usbfs
    Mär 10 18:41:59 matt kernel: usbcore: registered new interface driver hub
    Mär 10 18:41:59 matt kernel: SCSI subsystem initialized
    Mär 10 18:41:59 matt kernel: usbcore: registered new device driver usb
    Mär 10 18:41:59 matt kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Mär 10 18:41:59 matt kernel: uhci_hcd: USB Universal Host Controller Interface driver
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000cc00
    Mär 10 18:41:59 matt kernel: ehci-pci: EHCI PCI platform driver
    Mär 10 18:41:59 matt kernel: hub 1-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 1-0:1.0: 2 ports detected
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000c880
    Mär 10 18:41:59 matt kernel: hub 2-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 2-0:1.0: 2 ports detected
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 3
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: debug port 1
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: cache line size of 32 is not supported
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: irq 23, io mem 0xfe937c00
    Mär 10 18:41:59 matt kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Mär 10 18:41:59 matt kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Mär 10 18:41:59 matt kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Mär 10 18:41:59 matt kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Mär 10 18:41:59 matt kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Mär 10 18:41:59 matt kernel: libata version 3.00 loaded.
    Mär 10 18:41:59 matt kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    Mär 10 18:41:59 matt kernel: hub 3-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 3-0:1.0: 8 ports detected
    Mär 10 18:41:59 matt kernel: hub 1-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 1-0:1.0: 2 ports detected
    Mär 10 18:41:59 matt kernel: hub 2-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 2-0:1.0: 2 ports detected
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    Mär 10 18:41:59 matt kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c800
    Mär 10 18:41:59 matt kernel: hub 4-0:1.0: USB hub found
    Mär 10 18:41:59 matt kernel: hub 4-0:1.0: 2 po

    Scimmia wrote:Acer Aspire, by any chance? There was a thread on this earlier.
    No it's a Noname Netbook. It runs without a graphical user interface (only as a server).
    I've downgraded to systemd 208-11 and systemd-sysvcompat 208-11 and the error is gone. So it is definitely a systemd thing.
    EDIT:
    I figure it is related to this from http://lists.freedesktop.org/archives/s … 17362.html:
    * logind is now a lot more aggressive when suspending the
              machine due to a closed laptop lid. Instead of acting only
              on the lid close action it will continuously watch the lid
              status and act on it. This is useful for laptops where the
              power button is on the outside of the chassis so that it can
              be reached without opening the lid (such as the Lenovo
              Yoga). On those machines logind will now immediately
              re-suspend the machine if the power button has been
              accidentally pressed while the laptop was suspended and in a
              backpack or similar.
    EDIT2:
    Now that I knew what caused this, I googled for "logind suspend lid laptop 210" and found this other thread with the solution.
    Last edited by akurei (2014-03-11 19:41:55)

  • Using a report layout in background mode

    Is is possible to apply a saved report layout like you apply to the alv grid to a csv file run in background mode?

    Hi Cynthia ,
    I can figure out one way :
    SUBMIT ZREPORT TO SAP-SPOOL LAYOUT 'ZLAYOUT'
    VIA SELECTION-SCREEN
    DESTINATION 'locl'
    KEEP IN SPOOL 'X'
    IMMEDIATELY 'X'
    WITHOUT SPOOL DYNPRO
    AND RETURN.
    This will return the report in your layout to the spool and can be downloaded as well.
    Thanks
    Naresh

  • Mail.app crashes while trying to change layout

    Mail 2.0.5 crashes every time I try to change the layout of the "new message" window.
    When I'm going to create a new message you can see on the left side of the "account" line a symbol (three little lines and an arrow down). With this option field you can show/hide the lines for "BCC"-recipients an "Reply-To". And you can choose to show/hide several other buttons/symbols when clicking on "modify" (I'm using the german version which shows the word "Anpassen".
    When I try to reach these advanced options mail immediately crashes. The crash log is quite long.
    Does anyone hav an idea?
    Thanks a lot.
    Wolfgang
    Date/Time: 2005-11-27 20:48:48.356 +0100
    OS Version: 10.4.3 (Build 8F46)
    Report Version: 3
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Parent: WindowServer [65]
    Version: 2.0.5 (746)
    Build Version: 2
    Project Name: MailViewer
    Source Version: 7460000
    PID: 205
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9074ef80 CFDictionaryGetValue + 56
    1 com.apple.AppKit 0x93754030 -[NSViewAnimation _drawView:] + 116
    2 com.apple.AppKit 0x936c5ae8 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 148
    3 com.apple.AppKit 0x936c8930 _recursiveDisplayInRect2 + 84
    4 com.apple.CoreFoundation 0x9076c954 CFArrayApplyFunction + 416
    5 com.apple.AppKit 0x936c5cfc -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 680
    6 com.apple.AppKit 0x936c51b0 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    7 com.apple.AppKit 0x936c5778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    8 com.apple.AppKit 0x936c5778 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    9 com.apple.AppKit 0x936e5e14 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192
    10 com.apple.AppKit 0x936bee24 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    11 com.apple.AppKit 0x936b4118 -[NSView displayIfNeeded] + 248
    12 com.apple.AppKit 0x936b3f88 -[NSWindow displayIfNeeded] + 180
    13 com.apple.AppKit 0x936b3e34 _handleWindowNeedsDisplay + 200
    14 com.apple.CoreFoundation 0x9075cccc __CFRunLoopDoObservers + 352
    15 com.apple.CoreFoundation 0x9075cf6c __CFRunLoopRun + 420
    16 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    17 com.apple.HIToolbox 0x931831e0 RunCurrentEventLoopInMode + 264
    18 com.apple.HIToolbox 0x931827ec ReceiveNextEventCommon + 244
    19 com.apple.HIToolbox 0x931826e0 BlockUntilNextEventMatchingListInMode + 96
    20 com.apple.AppKit 0x93680904 _DPSNextEvent + 384
    21 com.apple.AppKit 0x936805c8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    22 com.apple.AppKit 0x937a73c8 _NSUnhighlightCarbonMenu + 164
    23 com.apple.AppKit 0x9377bff4 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 132
    24 com.apple.AppKit 0x937a4ae0 _NSPopUpCarbonMenu2 + 2480
    25 com.apple.AppKit 0x937a4120 _NSPopUpCarbonMenu1 + 44
    26 com.apple.AppKit 0x937a40dc -[NSCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:] + 224
    27 com.apple.AppKit 0x937a3d7c -[NSPopUpButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 1184
    28 com.apple.AppKit 0x9373ae58 -[NSControl mouseDown:] + 536
    29 com.apple.AppKit 0x936dc660 -[NSWindow sendEvent:] + 4616
    30 com.apple.mail 0x00152260 0x1000 + 1380960
    31 com.apple.AppKit 0x936856f4 -[NSApplication sendEvent:] + 4172
    32 com.apple.mail 0x000e6290 0x1000 + 938640
    33 com.apple.AppKit 0x9367cb30 -[NSApplication run] + 508
    34 com.apple.AppKit 0x9376d618 NSApplicationMain + 452
    35 com.apple.mail 0x00002888 0x1000 + 6280
    36 com.apple.mail 0x000a4da0 0x1000 + 671136
    Thread 1:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.pgp.framework.PGP 0x35001a18 -[CPGPnotificationTask run] + 284 (icplusplus.c:27)
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.apple.MessageFramework 0x9a98ba0c +[_NSSocket _runIOThread] + 92
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9001f20c select + 12
    1 com.apple.CoreFoundation 0x9076f99c __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92902b9c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92903cdc +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b208 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b15c mach_msg + 60
    2 com.apple.CoreFoundation 0x9075d108 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9075ca0c CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x928ea664 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x928ea59c -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x9596e870 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x928db6d4 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009074ef80 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24042444 xer: 0x0000000000000000 lr: 0x000000009074ef50 ctr: 0x000000009074ef48
    r0: 0x0000000000404ad0 r1: 0x00000000bfffcc50 r2: 0x00000000a073a274 r3: 0x0000000000000000
    r4: 0x000000000548de40 r5: 0x00000000a0004168 r6: 0xffffffffffffffff r7: 0x0000000000000000
    r8: 0x0000000000000000 r9: 0x000000000000000c r10: 0x0000000000000081 r11: 0x00000000a367b724
    r12: 0x000000009074ef48 r13: 0x0000000000000000 r14: 0x00000000bfffd000 r15: 0x0000000000000001
    r16: 0x00000000004d4b00 r17: 0x0000000000000000 r18: 0x0000000000000000 r19: 0x0000000000000000
    r20: 0x00000000a36b50ec r21: 0x00000000a36b5a54 r22: 0x00000000bfffcf30 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000000000000 r27: 0x0000000000000001
    r28: 0x000000000548de40 r29: 0x000000000548de58 r30: 0x0000000000000000 r31: 0x000000009074ef50
    Binary Images Description:
    0x1000 - 0x198fff com.apple.mail 2.0.5 (746) /Applications/Mail.app/Contents/MacOS/Mail
    0x3f9000 - 0x3fbfff com.unsanity.menuextraenabler Menu Extra Enabler version 1.0.1 (1.0.1) /Users/wolfgang/Library/InputManagers/Menu Extra Enabler/Menu Extra Enabler.bundle/Contents/MacOS/Menu Extra Enabler
    0x653000 - 0x657fff com.fsb.SafariBlock ??? (1.0) /Users/wolfgang/Library/InputManagers/SafariBlock/SafariBlock.bundle/Contents/M acOS/SafariBlock
    0x6fc000 - 0x701fff net.spamcop.Mail SpamCop version 1.3.2 (1.3.2) /Users/wolfgang/Library/Mail/Bundles/SpamCop.mailbundle/Contents/MacOS/SpamCop
    0x733000 - 0x736fff com.c-command.spamsieve.mailplugin ??? (1.2) /Users/wolfgang/Library/Mail/Bundles/SpamSieve.mailbundle/Contents/MacOS/SpamSi eve
    0x73b000 - 0x75efff PGPmailTiger PGP Desktop 9.0.3 (Build 2932) /Library/Mail/Bundles/PGPmailTiger.mailbundle/Contents/MacOS/PGPmailTiger
    0x5068000 - 0x507bfff com.apple.Mail.Syncer 1.0.5 (746.2) /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x514e000 - 0x5154fff com.apple.DictionaryServiceComponent 1.0.0 /System/Library/Components/DictionaryService.component/Contents/MacOS/Dictionar yService
    0x51e5000 - 0x51e7fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6d22000 - 0x6d4cfff com.apple.security.dotmacdl 1.1 (25420) /System/Library/Security/dotmacdl.bundle/Contents/MacOS/dotmacdl
    0x6d74000 - 0x6d91fff com.apple.security.ldapdl 1.0 (8) /System/Library/Security/ldapdl.bundle/Contents/MacOS/ldapdl
    0x31000000 - 0x310f3fff com.pgp.framework.PGPclient PGP Desktop 9.0.3 (Build 2932) /Library/Frameworks/PGPclient.framework/Versions/A/PGPclient
    0x32000000 - 0x32068fff PGPproxy /Library/Frameworks/PGPproxy.framework/Versions/A/PGPproxy
    0x34000000 - 0x3402afff com.pgp.framework.PGPui PGP Desktop 9.0.3 (Build 2932) (3.5.3) /Library/Frameworks/PGPui.framework/Versions/A/PGPui
    0x35000000 - 0x351e0fff com.pgp.framework.PGP 3.5.3 /Library/Frameworks/PGP.framework/Versions/A/PGP
    0x8fe00000 - 0x8fe54fff dyld 44.2 /usr/lib/dyld
    0x90000000 - 0x901b3fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x9020b000 - 0x9020ffff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x90211000 - 0x90264fff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90291000 - 0x90342fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90371000 - 0x906aefff com.apple.CoreGraphics 1.256.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9073a000 - 0x90813fff com.apple.CoreFoundation 6.4.4 (368.18) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9085c000 - 0x9085cfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9085e000 - 0x90960fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x909ba000 - 0x90a3efff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90a68000 - 0x90ad6fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90aed000 - 0x90afffff libauto.dylib /usr/lib/libauto.dylib
    0x90b06000 - 0x90dddfff com.apple.CoreServices.CarbonCore 671.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e43000 - 0x90ec3fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f0d000 - 0x90f4efff com.apple.CFNetwork 10.4.3 (129.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90f63000 - 0x90f7bfff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x90f8b000 - 0x9100cfff com.apple.SearchKit 1.0.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91052000 - 0x9107bfff com.apple.Metadata 10.4.3 (121.20.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9108c000 - 0x9109afff libz.1.dylib /usr/lib/libz.1.dylib
    0x9109d000 - 0x9125ffff com.apple.security 4.2 (24844) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91362000 - 0x9136bfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91372000 - 0x91399fff com.apple.SystemConfiguration 1.8.1 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x913ac000 - 0x913b4fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x913b9000 - 0x913d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x913df000 - 0x913e7fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913eb000 - 0x91469fff com.apple.audio.CoreAudio 3.0.1 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914a7000 - 0x914a7fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914a9000 - 0x914e1fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x914fc000 - 0x915c9fff com.apple.ColorSync 4.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9161e000 - 0x916b1fff com.apple.print.framework.PrintCore 4.3 (172.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x916f8000 - 0x917b5fff com.apple.QD 3.8.18 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917f3000 - 0x91851fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9187f000 - 0x918a3fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x918b7000 - 0x918dcfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x918ef000 - 0x91931fff com.apple.LaunchServices 10.4.5 (168) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9194d000 - 0x91961fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9196f000 - 0x919a8fff com.apple.ImageIO.framework 1.4.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x919bd000 - 0x91a83fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91ad0000 - 0x91ae5fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91aea000 - 0x91b06fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b0b000 - 0x91b7afff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91b91000 - 0x91b95fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91b97000 - 0x91bc8fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91bcc000 - 0x91c0ffff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91c16000 - 0x91c2ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91c34000 - 0x91c37fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91c39000 - 0x91c39fff com.apple.Accelerate 1.1.1 (Accelerate 1.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91c3b000 - 0x91d25fff com.apple.vImage 2.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d2d000 - 0x91d4cfff com.apple.Accelerate.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91db8000 - 0x91e1dfff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91e27000 - 0x91eb9fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91ed3000 - 0x92463fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x924ab000 - 0x927bbfff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x927e8000 - 0x92874fff com.apple.DesktopServices 1.3.1 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x928b6000 - 0x92ae0fff com.apple.Foundation 6.4.2 (567.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92bfe000 - 0x92cdcfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92cfc000 - 0x92deafff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92dfc000 - 0x92e1afff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92e25000 - 0x92e7ffff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92e9d000 - 0x92e9dfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92e9f000 - 0x92eb3fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ecb000 - 0x92edbfff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ee7000 - 0x92efcfff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92f0e000 - 0x92f95fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92fa9000 - 0x92fb4fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92fbe000 - 0x92febfff com.apple.openscripting 1.2.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93005000 - 0x93015fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93021000 - 0x93087fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x930b8000 - 0x9310afff com.apple.NavigationServices 3.4.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93136000 - 0x93153fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93165000 - 0x93172fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9317b000 - 0x9348dfff com.apple.HIToolbox 1.4.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x935d9000 - 0x935e5fff com.apple.opengl 1.4.6 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935ea000 - 0x9360bfff com.apple.DirectoryService.Framework 3.0 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93676000 - 0x93676fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93678000 - 0x93cabfff com.apple.AppKit 6.4.3 (824.23) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94037000 - 0x940a6fff com.apple.CoreData 50 (77) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x940df000 - 0x941a9fff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x941fd000 - 0x941fdfff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x941ff000 - 0x94377fff com.apple.QuartzCore 1.4.3 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x943c1000 - 0x943fefff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94406000 - 0x94456fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94496000 - 0x944d9fff com.apple.bom 8.0 (85) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94560000 - 0x9457cfff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94590000 - 0x945d4fff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x945f8000 - 0x94607fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9460f000 - 0x9461bfff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94660000 - 0x94678fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94ac0000 - 0x94beefff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94c80000 - 0x94c8ffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94c97000 - 0x94cc4fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94ccb000 - 0x94cdbfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94cdf000 - 0x94d0dfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94d1d000 - 0x94d3afff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9596c000 - 0x959f8fff com.apple.WebKit 416.11 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95a53000 - 0x95b47fff com.apple.JavaScriptCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95b98000 - 0x95e9cfff com.apple.WebCore 416.13 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96021000 - 0x9604afff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96052000 - 0x960cbfff com.apple.syncservices 2.1 (182) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9637e000 - 0x96380fff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x96383000 - 0x963b5fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9738b000 - 0x973aafff com.apple.vecLib 3.1.1 (vecLib 3.1.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97a1b000 - 0x97a40fff com.apple.speech.LatentSemanticMappingFramework 2.2 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x9842c000 - 0x9843afff com.apple.DMNotification 1.0.2 (29) /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x98645000 - 0x986ddfff com.apple.QuartzComposer 1.1.1 (30.1) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9872e000 - 0x9872efff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x988f7000 - 0x9890ffff com.apple.slideshow 1.0.3 (1.0) /System/Library/PrivateFrameworks/Slideshow.framework/Versions/A/Slideshow
    0x98e28000 - 0x98e94fff com.apple.ISSupport 1.0.3 (13) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x98eba000 - 0x98ed6fff com.apple.DotMacSyncManager 1.0.2 (47) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x99516000 - 0x99557fff com.apple.PAPICommon 2.2 (117) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x9a959000 - 0x9a963fff com.apple.IMFramework 3.1 (407) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9a96d000 - 0x9aac3fff com.apple.MessageFramework 2.0.5 (746.2) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: PowerMac7,2, BootROM 5.1.4f0, 2 processors, PowerPC 970 (2.2), 2 GHz, 2.5 GB
    Graphics: ATI Radeon 9600 Pro, ATY,RV350, AGP, 64 MB
    Memory Module: DIMM0/J11, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM4/J41, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM5/J42, 512 MB, DDR SDRAM, PC3200U-30330
    Modem: MicroDash, Euro, V.92, 1.0F, APPLE VERSION 2.6.6
    Bluetooth: Version 1.6.6f22, 2 service, 0 devices, 1 incoming serial ports
    Network Service: Ethernet (integriert), Ethernet, en0
    Serial ATA Device: ST3160023AS, 149.05 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-106D,
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: Bluetooth HCI, , Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Trackball, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: USB-PS/2 Optical Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Studio Display, , Up to 1.5 Mb/sec, 500 mA
    USB Device: XSKey, Emagic GmbH, Up to 1.5 Mb/sec, 500 mA
    USB Device: Hub, , Up to 12 Mb/sec, 500 mA
    USB Device: USB Device, , Up to 12 Mb/sec, 500 mA
    FireWire Device: unknown_device, unknown_value, Up to 400 Mb/sec
    Dual G5 2 GHz   Mac OS X (10.4.2)  

    Problem is now known by Apple. See http://docs.info.apple.com/article.html?artnum=303604

Maybe you are looking for

  • TA48312 how to get my Macbook pro CDROM

    I have bought one Macbook pro on June 2009, now I want to re-instal my PC...checked my box, inside no any CDROM for this, how can I get it? I have buy another new Macbook pro last year, I use it but always get error message this PC can't instal?

  • How to configure a free proxy

    Hi, how do we configure an imac intel to use a transparent US Http proxy that does not spill our IP address. Can someone help me to do this? Using Safari 3. Thanks

  • Nokia 9500 communicator

    Hello, Does anybody how can I optimise my contacts search as there is always a message appears that says that my contacts are not optimised for the search when i choose more fields to search by in the advanced search options? Thank you Mortada

  • IPhoto 11 and one event with 15,000+ photos - help

    I am new to Mac, this is my first, but long time PC users (28 years)... so it is a learning curve. My photos were/are on an external hard drive, (due to last computer failure) and undamaged. I only got my iMac 27 i5 on Friday, and have been importing

  • Dv9700 audio input in - alternate audio jack port pcb board available?

    I have an HP Pavilion dv9700 Notebook PC, Product LC329UA#ABA There is no sound/audio input in jack, 2 headphone jacks instead I want to hook up a device which uses the input in jack for my turntable Have seen part 449763-001 described as Genuine HP