legacy-map false /legacy-map

In the BlazeDS dev guide there is the following statement (when talking about explicitly mapping between Java and ActionScript) :
http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=serialize_data_2.ht ml
Note: In Flex 1.5, java.util.Map was sent as an associative or ECMA Array. This is no longer a recommended practice. You can enable legacy Map support to associative Arrays, but Adobe recommends against doing this.
Why is this not recommended by Adobe?
Kind regards,
Fretzer.

Thanks for your help Raff.  We got it working after making a firewall change and correcting an issue with the hook URL, which should have gone to a subdirectory.
For anyone else using Spring 3, the aspect oriented setup works fine.
@RemotingDestination(channels={"amf"})
@Service("RTC")
public class RTCHOOKS {
Just make sure the class is contained in a package specified in
<context:component-scan base-package="..." />

Similar Messages

  • Legacy Mapping Problem: Compound PK is Foreign Key

    My job is to map beans using JPA onto a legacy database schema that must not get modified. I am stuck with doing the relation between two tables.
    The schema is:
    CREATE TABLE A (
         a1 INTEGER NOT NULL,
         a2 INTEGER NOT NULL,
         PRIMARY KEY (a1, a2)
    CREATE TABLE B (
         b1 INTEGER NOT NULL,
         b2 INTEGER NOT NULL,
         b3 INTEGER NOT NULL,
         FOREIGN KEY f (b1, b2) REFERENCES A (a1, b2) ON UPDATE CASCADE ON DELETE CASCADE,
         PRIMARY KEY (b1, b2, b3)
    )As you can see, both tables have compound primary keys, and the primary key of table B contains a foreign key to table A. This is typical in our DB because B in fact acts like a "inner table" (in the sense of "inner class") to A.
    So far I defined both classes and provided a primary key, but the question now is, how to provide the relation between both? The relation shall be unidirectional, so that I can query all Bs belonging to one A by "myA.getBs(): Collection".
    The code I have written so far is:
    @Entity
    public class A {
         @EmbeddedId
         private APK primaryKey;
         @OneToMany
         private Collection<B> characteristics;
    @Embeddable
    public class APK {
         private String a1;
         private String a2;
    @Entity
    public class B {
         @EmbeddedId
         private BPK primaryKey;
    @Embeddable
    public class BPK {
         private String b1;
         private String b2;
         private String b3;
    }Unfortunately that is not working, because the JPA Provider (here: TopLink Essentials) tries to map the relationship on a third table named "A_B" that actually is not there.
    So how to tell TopLink to find the mapping information in table B (just like using the foreign key f)?
    Please help, I am driving nuts!

    OK
    So i found out the real problem
    And the problem is that my CustomerHistory has a Text Field, as in a MS SQL Server TEXT Field
    When i changed it to a VARCHAR, it started working
    The strangest thing is that Customer also has a TEXT Field (mapped to a String) and i can do Finds without any problems
    So my question now is how can i work with TEXT in CMPs ?
    Thanks

  • Legacy data(mapping to be done by xi (in xml format)) to sap using idoc .

    hi all,
    I need to work in an object in which requirement is like , the source data is directly extracted from legacy and input file is made. now i need to create an interface program which will be used to create purchase req. in weekly basis.  now according to functional specification xi team will  map the source data in xml format and then  through idoc data is to be pushed into sap. i am confused about the step by step senario from source data to final pr creation . please clarify if somebody had worked on this kind of situation.

    Hi i encounter like this but in SD side,
    from legacy ->XI -> SAP (create SO)
    then from created SO via IDOC my requirement is to post delivery then billing.
    I think in your case the PR is already created and to be process to PO.. better check and fully understand the flow with your team.

  • Mapping from legacy to BW

    Hi Gurus
    We will be having BW which will feed legacy and legacy will do some transformation of data and it will again feed BW.
    we are in initial stage but not sure which kind of mapping I need to do to prepare initial mapping document.would you pl help me and explain what shall I do?
    Thanks

    Hi Kris,
    There are mutilple ways of Retracting the data from SAP BW into Legacy System.
    First way:- ( By Using Open Hub Service )
    By using Open hub Sevice we can retract the data from Info Cube, ODS, Master data Tables into Flat files in Application Server and by using FTP ( File Transfer Protocol) we can transfer the file to the legacy system and load into it and let them do the required transformations and send a file to the SAP BW Application server and we load from there on.
    Second Way:- ( B Using RSCRM_REPORT )
    First design a BEx report which gives you the reuired data and then by using RSCRM_REPORT we can schedule the report in the background and place the output of the report as a Flatfile in the Applicatin Server and by using FTP ( File Transfer Protocol) we can transfer the file to the legacy system and load into it and let them do the required transformations and send a file to the SAP BW Application server and we load from there on.
    Third Way: - ( By using RSCRM_BAPI )
    Thanks,
    Haritha K

  • JPA: @ManyToOne legacy mapping using @JoinTable

    Dear JEE experts,
    I have a tough legacy mapping problem. There are two entities Pac and BasePac where each Pac has a BasePac field which is to be queried from the other entity table. The association is definied in a third table pac_component which has a Pac and a BasePac field among several others. I think the schema is a bit weird and I would have defined it differently, but I cannot change it because other applications using the database must not be changed.
    My code looks like this:
    @javax.persistence.Entity(name="Pacs")
    @javax.persistence.Table(name="packet")
    @javax.persistence.SequenceGenerator(name="PacsSeqGen", sequenceName="packet_packet_id_seq")
    public class Pac
         implements java.io.Serializable
        // virtual attribute basePac
        @javax.persistence.ManyToOne(fetch=EAGER, optional=true) // optional should be default anyway
        @javax.persistence.JoinTable(
             name="packet_component",
             [email protected](name="packet_id"),
             [email protected](name="basepacket_id") )
        private BasePac basePac;
        public BasePac getBasePac() { return basePac; }
        public void setBasePac( BasePac basePac ) { this.basePac = basePac; }
    @javax.persistence.Entity(name="BasePacs")
    @javax.persistence.Table(name="basepacket")
    @javax.persistence.SequenceGenerator(name="BasePacsSeqGen", sequenceName="basepacket_basepacket_id_seq")
    public class BasePac
         implements java.io.Serializable
    { ... }The Entity for pac_component does not appear so far and afaik it does not matter.
    When I now create a Pac instance and persist it, JPA (with Hibernate) always wants to create a link object:
    insert into pac_component (basepacket_id, packet_id) values (?, ?)Where the ? for basepacket_id is null. But this is not a valid row for pac_component, thus I will get a ConstaintViolationException.
    My question is: Why does it create this row at all? The association is marked optional!
    My solution might be to make the field PacBase within Pac transient and access it only through a pacComponents field, which is a @OneToMany but every assiciated PacComponent entity refers to the same BasePac. Anyway, I wonder why JPA or Hibernate wants to create such a row at all.
    ... MIchael

    I wouldn't focus too much on wanting to solve this through JPA. What you have here is a 'problem' which you will run into in many forms - your business requirements do not map directly to the data layer. This simply means that you need some business logic to make the translation. For example if this were for a web layer I would implement a specialized bean which can take different entities and then provide an alternative view on the data, optionally by generating it.
    If 'calculated' data is closely tied to the database layer and less to the business layer then you could of course choose to fix it through the database itself - by creating a view and mapping an entity to that. That is especially useful if you need the same data in multiple aspects of the application framework and not only in the Java code (think of reporting and analysis for example), but it has other considerations like performance.

  • Help using Stringification to map to legacy data

    I am trying to map some JDO classes to legacy data in an existing Oracle
    database. Some of the columns are of type varchar2 which contain binary data
    I am trying to convert this data to java types using the Stringification
    mechanism in Kodo 2.5.0
    Everything seems to be set up OK except that I don't seem to be able to get
    byte values outside the range of 0 to 127 from the Strings passed to the
    field factory methods. It seems that the data in the Strings has been anded
    with 0x7f before being stored in the String. I am not sure where this would
    be happening, i.e. at the jdbc level or somewhere in Kodo or in the String
    itself.
    Any suggestions as to what I am doing wrong?
    Will it even work? or do I need to find some other way?
    ps I am wrapping the String in a ByteBuffer and using the methods provided
    to reconstruct the integer values.
    Regards,
    Andreas

    Abe,
    Thanks for the reply.
    I have tried to create a custom field mapping using the sample in custom
    proxies although I must be doing something wrong.
    In the load method if I call rs.getString (index) there is no exception
    however if I try to call rs.getBytes (index) I get an exception.
    Not sure what to set where to overcome this.
    I have set the type of the column to SQLTypes.STRING in the install method,
    ie.
    super.install (.......);
    getDataColumns ()[0].setType (SQLTypes.STRING)
    Any pointers would be appreciated.
    TIA
    Andreas
    Or create custom field mappings for those fields.
    Unfortunately our documentation on custom field mappings is pretty sparse
    (as in: right now it's just the Javadoc).

  • Mapping with Legacy System

    Hi,
    We have to merge an old legacy system data into SAP.
    Does anybody have any documentation on that?
    Regards
    SC

    see the following links
    http://service.sap.com/customdev-tdms
    Data Migration.........

  • User Mapping to R/3 - admin.pwdprotection=false but still pwd field appears

    <br />
    Hello All,<br />
    I am doing SSO using user mapping to R/3 system from Portal as the ids are different for Portal and R/3.<br />
    I can access a transaction iview from R/3 successfully using user mapping(in SSO) but the problem is everytime a user changes his R/3 password, the mapped password is to be changed in Portal.Otherwise, unable to access transaction iview.<br />
    1) I have changed the property ume.usermapping.admin.pwdprotection=false in configtool but still in User Admin > User mapping for system access , the password field is populated and while accessing the R/3, the password is being verified. I have seen in another system where the password field is not being asked after modifying the property to false, only id field is present. From the end user, under Personalize > User Profile > User Mapping for system, no systems are present as expected for mapping. Logon method in system is uidpw and mapping type is "Admin".<br />
    Versions - Portal is NW7.0 SP18 and ECC is .0 EhP3.<br />
    anybody faced the same problem? Is there a note to fix it?<br />
    2)Also, in the User Admin > User mapping for system access , in the dropdown I can see the system aliases I have created in systems but not in System admin> sys config > Ume config > under User Mapping , I do not find any reference system. <br />
    After first restart it was not there, after some time it has come, later it was coming as configured but invalid beside the system in braces in dropdown like abc(configured but invalid). Once I unselected, now it is no more available in dropdown.<br />
    3) I have used diagtool to identify the problem. In the ticket, how do I see the mapped user?<br />
    I am seeing only the following details.From the log - <br />
    The created ticket is: <br />
    [ [Ticket [initialized]<br />
      Ticket Version  = 0<br />
      Ticket Codepage =  (Encoding=1100)<br />
      User = 121444<br />
      Issuing System ID     = EPD  ( Portal name)<br />
      Issuing System Client = 000<br />
      Creation Time = 200905150649<br />
      Valid Time    = 8 h 0 min<br />
      Signature (length=261 bytes)<br />
      InfoUnit id=32, name=portal_user, content=portal:121444, length=16<br />
      InfoUnit id=136, name=authscheme, content=basicauthentication, length=19<br />
      InfoUnit id=1, length=9<br />
      InfoUnit id=2, length=3<br />
      InfoUnit id=3, length=3<br />
      InfoUnit id=4, length=12<br />
      InfoUnit id=5, length=4<br />
      InfoUnit id=10, length=9<br />
    ]. <br />
    Authentication stack: [ticket].<br />
    <br />
    Does this have an entry for mapped user of target R/3 system also?<br />
    If I am not finding the userid/pwd in ticket, how is SSO working? based on user mapping only?<br />
    Thanks,<br />
    Isvarya<br />

    Thanks Anja for the quick response.
    My primary objective is to use SSO with logon tickets to backend which is independent of user passwords.
    regarding 1)
    From the link -
    http://help.sap.com/saphelp_nw70/helpdata/EN/f8/3b514ca29011d5bdeb006094191908/frameset.htm
    Features
    ●      Either users or administrators can perform user mapping.
    ¡        Users must always enter a password to validate their mapped user ID.
    This password is not stored, but is used to confirm that the user is entering a user ID with which he or she has access to the ABAP-based system.
    ○       Administrators can enter a password to validate their entries.
    The UME property ume.usermapping.admin.pwdprotection defines whether or not the administrator must enter a password. By default the administrator must enter one.
    is also in the same lines.
    But as per the SAP library link, I do not find a reference system  because of problem 2 in the initial post.
    Also, I have a screenshot of user admin where the password field itself is not present. If you can share your email id, I will send the scrnshot without pwd and mine with password.
    2)I have seen this note. But, none of the 3 cases mentioned are applicable to me..user mapping is working just fine..Only reference system is not populated. 
    3) Becuase of 1, I was expecting to see mapped id alone or mapped id along with system name in logon tickets.
    Thanks for the response.

  • Displaying base map even though setVisible set to false

    Hello.
    I have a jsp which renders a map with base map features turned 'off' to start with. However, when this map is rendered sometimes the features are displayed. Here is what I am using:
    mapview.addBaseMapLayer(basemap0); // topography
    basemap0.setVisible (false);
    Has anyone had a similiar problem, and is there a workaround for this? Thanks.

    Thanks to Jayant Sharma.
    He said:
    1) It is likely a bug with multiple basemaps. So try doing the following:
    a) call setVisible() before addMapTileLayer() in each case e.g.
    basemap0.setVisible (false);
    mapview.addMapTileLayer(basemap0); // topography

  • 5800 XM + Maps/Location + Facebook = false?

    Hello, i'm running Maps 30.6 and the latest firmware rev, whatever the number was.
    And im unable to find Facebook under "Share Online (which i suppose need to be there?)
    Also, when i go to "Check in Settings" under Maps, all i get is "Loading networks list. Please wait." nothing ever happens. Whats the deal?
    And by just pressing Check In, i get the error "Thera re currently network problems, please try again later".
    Thanks in advance.

    Try uninstalling and reinstalling Ovi 3.06....The check in features works flawlessly on my 5800.
    Also, in the Maps>Options>internet, make sure that the connection is set to online, and make sure that you are logged in to your Nokia Account.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • BUG in process suhelperd[330]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)

    Mac Pro (late 2013) OSX 10.10.1
    Computer begin to start but after 10 sec the starting process ends. I always have to reset PRAM. The same happens without devices.
    Console with :
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 kernel[0]: Longterm timer threshold: 1000 ms
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external
    Here the complete Console log
    24.11.14 15:04:53.000 bootlog[0]: BOOT_TIME 1416837893 0
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.AccountPolicyHelper" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/asl" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.awdd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.callhistory.asl.conf" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.cloudd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.clouddocs" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.commerce.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.CoreDuetAdmissionControl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.family.asl" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.ical" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.icloud.FindMyDevice" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.networking.symptoms" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.secinitd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 syslogd[24]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    24.11.14 15:04:54.000 kernel[0]: Longterm timer threshold: 1000 ms
    24.11.14 15:04:54.000 kernel[0]: PMAP: PCID enabled
    24.11.14 15:04:54.000 kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    24.11.14 15:04:54.000 kernel[0]: Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    24.11.14 15:04:54.000 kernel[0]: vm_page_bootstrap: 16255835 free pages and 488613 wired pages
    24.11.14 15:04:54.000 kernel[0]: kext submap [0xffffff7f80a00000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000a00000]
    24.11.14 15:04:54.000 kernel[0]: zone leak detection enabled
    24.11.14 15:04:54.000 kernel[0]: "vm_compressor_mode" is 4
    24.11.14 15:04:54.000 kernel[0]: multiq scheduler config: deep-drain 0, urgent first 1, depth limit 4, band limit 127, sanity check 0
    24.11.14 15:04:54.000 kernel[0]: standard timeslicing quantum is 10000 us
    24.11.14 15:04:54.000 kernel[0]: standard background quantum is 2500 us
    24.11.14 15:04:54.000 kernel[0]: mig_table_max_displ = 13
    24.11.14 15:04:54.000 kernel[0]: TSC Deadline Timer supported and enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=3 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=4 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=5 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=6 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=7 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=8 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=9 LocalApicId=9 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=10 LocalApicId=10 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=11 LocalApicId=11 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=12 LocalApicId=16 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=13 LocalApicId=17 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=14 LocalApicId=18 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=15 LocalApicId=19 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=16 LocalApicId=20 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=17 LocalApicId=21 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=18 LocalApicId=22 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=19 LocalApicId=23 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=20 LocalApicId=24 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=21 LocalApicId=25 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=22 LocalApicId=26 Enabled
    24.11.14 15:04:54.000 kernel[0]: AppleACPICPU: ProcessorId=23 LocalApicId=27 Enabled
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for TMSafetyNet
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for AMFI
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Apple Mobile File Integrity (AMFI)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for Sandbox
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    24.11.14 15:04:54.000 kernel[0]: calling mpo_policy_init for Quarantine
    24.11.14 15:04:54.000 kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    24.11.14 15:04:54.000 kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    24.11.14 15:04:54.000 kernel[0]: The Regents of the University of California. All rights reserved.
    24.11.14 15:04:54.000 kernel[0]: MAC Framework successfully initialized
    24.11.14 15:04:54.000 kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    24.11.14 15:04:54.000 kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2014 00:11:30)
    24.11.14 15:04:54.000 kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    24.11.14 15:04:54.000 kernel[0]: IOAPIC: Version 0x20 Vectors 88:111
    24.11.14 15:04:54.000 kernel[0]: ACPI: sleep states S3 S4 S5
    24.11.14 15:04:54.000 kernel[0]: pci (build 00:11:20 Sep 19 2014), flags 0xe3000, pfm64 (44 cpu) 0xfff80000000, 0x80000000
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3334777B
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagement: (built 00:11:36 Sep 19 2014) initialization complete
    24.11.14 15:04:54.000 kernel[0]: [ PCI configuration begin ]
    24.11.14 15:04:54.335 com.apple.xpc.launchd[1]: (com.apple.AppleFileServer) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.000 kernel[0]: console relocated to 0xfff80010000
    24.11.14 15:04:54.000 kernel[0]: [ PCI configuration end, bridges 38, devices 32 ]
    24.11.14 15:04:54.000 kernel[0]: SATA WARNING: IDENTIFY DEVICE checksum not implemented.
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    24.11.14 15:04:54.000 kernel[0]: mcache: 24 CPU(s), 64 bytes CPU cache line size
    24.11.14 15:04:54.000 kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    24.11.14 15:04:54.000 kernel[0]: rooting via boot-uuid from /chosen: A2AB27CD-6534-3E31-8873-923476B00444
    24.11.14 15:04:54.000 kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    24.11.14 15:04:54.000 kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    24.11.14 15:04:54.000 kernel[0]: AppleIntelCPUPowerManagementClient: ready
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.alf) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.000 kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/RP05@1C,4/IOPP/SSD0@0/Ap pleAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlo ckStorageDriver/APPLE SSD SM1024F Media/IOGUIDPartitionScheme/Customer@2
    24.11.14 15:04:54.000 kernel[0]: BSD root: disk0s2, major 1, minor 5
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107018: srom rev:11
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107502: ChangeVCO => vco:960, xtalF:40, frac: 98, ndivMode: 3, ndivint: 24
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107512: Data written into the PLL_CNTRL_ADDR2: 00000c31
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.107560: Data written into the PLL_CNTRL_ADDR3 (Fractional): 0000100e
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.117841: BTCOEXIST off
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.118128: BRCM tunables:
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.118133:   pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    24.11.14 15:04:54.000 kernel[0]: ARPT: 2.119717: wl0: Broadcom BCM43a0, vendorID[0x14e4] BAR0[0xa0200004]
    24.11.14 15:04:54.000 kernel[0]: 7.15.124.12 (r497602)
    24.11.14 15:04:54.000 kernel[0]: hfs: mounted PTAHT IX on device root_device
    24.11.14 15:04:54.000 kernel[0]: VM Swap Subsystem is ON
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.audio.coreaudiod) Unknown key for array: seatbelt-profiles
    24.11.14 15:04:54.424 hidd[85]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    24.11.14 15:04:54.427 hidd[85]: ____IOHIDSessionScheduleAsync_block_invoke: thread_id=0x101b4b000
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.auditd) The TimeOut key is no longer respected. It never did anything anyway.
    24.11.14 15:04:54.427 hidd[85]: HID Session async scheduling initiated.
    24.11.14 15:04:54.427 hidd[85]: HID Session async root queue running at priority 63 and schedule 2.
    24.11.14 15:04:54.427 hidd[85]: HID Session async scheduling complete.
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.autofsd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.428 hidd[85]: Successfully opened the IOHIDSession
    24.11.14 15:04:54.432 com.apple.SecurityServer[65]: Session 100000 created
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.backupd-helper.status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.336 com.apple.xpc.launchd[1]: (com.apple.backupd-auto) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.backupd-status) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.backupd.status.xpc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.bsd.dirhelper) The TimeOut key is no longer respected. It never did anything anyway.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.AVCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.IIDCVideoAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.cmio.VDCAssistant) ThrottleInterval set to zero. You're not that important. Ignoring.
    24.11.14 15:04:54.337 com.apple.xpc.launchd[1]: (com.apple.configd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.338 com.apple.xpc.launchd[1]: (com.apple.coreduetd) This service is defined to be constantly running and is inherently inefficient.
    24.11.14 15:04:54.000 kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    24.11.14 15:04:54.000 kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    24.11.14 15:04:54.000 kernel[0]: bpfAttach len 64 dlt 12
    24.11.14 15:04:54.518 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:54.519 com.apple.xpc.launchd[1]: (com.rogueamoeba.hermes[84]) Could not find and/or execute program specified by service: 2: No such file or directory: /usr/local/hermes/bin/hermesctl
    24.11.14 15:04:54.519 com.apple.xpc.launchd[1]: (com.rogueamoeba.hermes[84]) Service setup event to handle failure and will not launch until it fires.
    24.11.14 15:04:54.520 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:04:54.520 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:04:54.524 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:04:54.526 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:04:54.540 iconservicesagent[46]: iconservicesagent launched.
    24.11.14 15:04:54.540 com.apple.SecurityServer[65]: Entering service
    24.11.14 15:04:54.589 configd[33]: preference: no sharing preferences
    24.11.14 15:04:54.595 com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(    wd_watchdog_open) - IOIteratorNext failed (kr=0)
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(      wd_daemon_init) - could not initialize the hardware watchdog
    24.11.14 15:04:54.608 watchdogd[39]:  [watchdog_daemon] @(                main) - cannot initialize the watchdog service
    24.11.14 15:04:54.611 com.apple.xpc.launchd[1]: (com.apple.watchdogd) Service only ran for 0 seconds. Pushing respawn out by 10 seconds.
    24.11.14 15:04:54.632 opendirectoryd[56]: BUG in libdispatch: 14B25 - 2004 - 0x5
    24.11.14 15:04:54.000 kernel[0]: AppleIntelMCEReporter: start()
    24.11.14 15:04:54.000 kernel[0]: IOGraphics flags 0x43
    24.11.14 15:04:54.000 kernel[0]: AGC: 3.7.21, HW version=4.0.11 [3.2.8], flags:0, features:0
    24.11.14 15:04:54.667 com.apple.usbmuxd[64]: usbmuxd-344.3 on Oct 13 2014 at 21:10:09, running 64 bit
    24.11.14 15:04:54.000 kernel[0]: IOBluetoothUSBDFU::probe
    24.11.14 15:04:54.000 kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828D FirmwareVersion - 0x0099
    24.11.14 15:04:54.000 kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x9000 ****
    24.11.14 15:04:54.000 kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x9000 ****
    24.11.14 15:04:54.000 kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    24.11.14 15:04:54.000 kernel[0]: ** GPU Hardware VM is enabled (multispace: enabled, page table updates with DMA: enabled)
    24.11.14 15:04:54.734 iconservicesd[45]: iconservicesd launched.
    24.11.14 15:04:54.742 iconservicesd[45]: Cache path: /Library/Caches/com.apple.iconservices.store
    24.11.14 15:04:54.843 systemkeychain[121]: done file: /var/run/systemkeychaincheck.done
    24.11.14 15:04:54.000 kernel[0]: Waiting for DSMOS...
    24.11.14 15:04:54.889 UserEventAgent[23]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    24.11.14 15:04:54.891 UserEventAgent[23]: Captive: CNPluginHandler en2: Inactive
    24.11.14 15:04:54.893 thermald[30]: Waiting for OSTT support notification
    24.11.14 15:04:54.955 apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    24.11.14 15:04:54.989 configd[33]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en0) failed: Network is down (50)
    24.11.14 15:04:54.989 secinitd[142]: UID[0]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    24.11.14 15:04:54.990 configd[33]: DHCP en0: INIT-REBOOT transmit failed
    24.11.14 15:04:54.990 secinitd[142]: ctkd[141]: unable to get root path for bundle of main executable: /System/Library/Frameworks/CryptoTokenKit.framework/ctkd
    24.11.14 15:04:55.000 kernel[0]: AirPort: Link Down on en2. Reason 8 (Disassociated because station leaving).
    24.11.14 15:04:55.000 kernel[0]: en2::IO80211Interface::postMessage bssid changed
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 94 dlt 163
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 30 dlt 105
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 52 dlt 127
    24.11.14 15:04:55.000 kernel[0]: bpfAttach len 38 dlt 192
    24.11.14 15:04:55.006 configd[33]: dhcp_arp_router: en2 SSID unavailable
    24.11.14 15:04:55.006 apsd[62]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    24.11.14 15:04:55.007 apsd[62]: Attempt to set push wake topics without dark wake enabled: ()
    24.11.14 15:04:55.008 apsd[62]: Unable to bootstrap_look_up connection port 'com.apple.askpermission.aps' for user 0: Unknown service name
    24.11.14 15:04:55.008 apsd[62]: <APSConnectionServer: 0x7f9b6d600cf0> Invalid mach port - Cleaning up this named port's topics. com.apple.askpermission.aps
    24.11.14 15:04:55.008 configd[33]: setting hostname to "Ptaht-IX.local"
    24.11.14 15:04:55.014 configd[33]: network changed.
    24.11.14 15:04:55.000 kernel[0]: Previous shutdown cause: 3
    24.11.14 15:04:55.000 kernel[0]: IOPPF - IODeviceTree:/efi/platform/StartupPowerEvents: 0x0
    24.11.14 15:04:55.078 com.apple.kextd[26]: kext file:///System/Library/Extensions/CDSDAudioCaptureSupport.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:55.079 com.apple.kextd[26]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    24.11.14 15:04:55.080 com.apple.kextd[26]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    24.11.14 15:04:55.215 com.apple.kextd[26]: kext file:///System/Library/Extensions/CDSDAudioCaptureSupport.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:55.215 com.apple.kextd[26]: Can't load /System/Library/Extensions/CDSDAudioCaptureSupport.kext - no code for running kernel's architecture.
    24.11.14 15:04:55.216 com.apple.kextd[26]: Load com.hzsystems.driver.CDSDAudioCaptureSupport failed; removing personalities from kernel.
    24.11.14 15:04:55.220 com.apple.xpc.launchd[1]: (com.apple.CoreRAID[28]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.CoreRAID
    24.11.14 15:04:55.373 iconservicesagent[46]: Starting service with cache path: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/C/com.apple.iconservices
    24.11.14 15:04:55.392 com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:55.392 com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    24.11.14 15:04:55.393 com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    24.11.14 15:04:55.393 com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    24.11.14 15:04:55.402 digest-service[151]: label: default
    24.11.14 15:04:55.402 digest-service[151]: dbname: od:/Local/Default
    24.11.14 15:04:55.402 digest-service[151]: mkey_file: /var/db/krb5kdc/m-key
    24.11.14 15:04:55.402 digest-service[151]: acl_file: /var/db/krb5kdc/kadmind.acl
    24.11.14 15:04:55.000 kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendPStates - Success!
    24.11.14 15:04:55.430 kdc[74]: label: default
    24.11.14 15:04:55.431 kdc[74]: dbname: od:/Local/Default
    24.11.14 15:04:55.431 kdc[74]: mkey_file: /var/db/krb5kdc/m-key
    24.11.14 15:04:55.431 kdc[74]: acl_file: /var/db/krb5kdc/kadmind.acl
    24.11.14 15:04:55.458 kdc[74]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    24.11.14 15:04:55.474 digest-service[151]: digest-request: uid=0
    24.11.14 15:04:55.662 com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.domain.system) Service "com.apple.ManagedClient.startup" tried to hijack endpoint "com.apple.ManagedClient.agent" from owner: com.apple.ManagedClient
    24.11.14 15:04:55.677 locationd[67]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    24.11.14 15:04:55.682 UserEventAgent[23]: nsurlsessiond_events plugin: adding token 1 for client softwareupdate_download_service
    24.11.14 15:04:55.708 UserEventAgent[23]: Could not get event name for stream/token: com.apple.xpc.activity/2: 132: Request for stale data
    24.11.14 15:04:55.000 kernel[0]: X86PlatformShim::sendStepper - Done!
    24.11.14 15:04:55.712 locationd[67]: NBB-Could not get UDID for stable refill timing, falling back on random
    24.11.14 15:04:55.754 com.apple.kextd[26]: ERROR: invalid signature for com.rogueamoeba.InstantOn, will not load
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.769204: createVirtIf(): ifRole = 1
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <p2p0> role 1
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init <p2p> role 1
    24.11.14 15:04:55.000 kernel[0]: setVIRTUAL_IF_CREATE: AWDL interface role (4)
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.770106: createVirtIf(): ifRole = 1
    24.11.14 15:04:55.000 kernel[0]: ARPT: 4.770111: Create AWDL virtif(AWDL): unit = 2, ifRole = 4
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init name <awdl0> role 4
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::attachToBpf name <awdl0> role 4 successful attach to bpf type 147
    24.11.14 15:04:55.000 kernel[0]: AirPort_Brcm4360_P2PInterface::init <awdl> role 4
    24.11.14 15:04:55.764 digest-service[151]: digest-request: netr probe 0
    24.11.14 15:04:55.765 digest-service[151]: digest-request: init request
    24.11.14 15:04:55.766 locationd[67]: Location icon should now be in state 'Inactive'
    24.11.14 15:04:55.776 digest-service[151]: digest-request: init return domain: BUILTIN server: PTAHT-IX indomain was: <NULL>
    24.11.14 15:04:55.784 networkd[240]: networkd-411 pid 240
    24.11.14 15:04:55.790 airportd[38]: airportdProcessDLILEvent: en2 attached (up)
    24.11.14 15:04:55.832 UserEventAgent[23]: assertion failed: 14B25: com.apple.telemetry + 22797 [B2D9FFC4-66B7-3739-AFFA-A7E4BDE84A2B]: 0xffffffffe00002eb
    24.11.14 15:04:55.979 com.apple.kextd[26]: ERROR: invalid signature for com.rogueamoeba.InstantOn, will not load
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets GetProcessNameFromSocket() failed errno[57] err[-1]
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets Unknown(-1), errno 0 UDS FD=3
    24.11.14 15:04:56.028 discoveryd[61]: Basic Sockets UDS FD=3 ERROR: failed to get effective user ID, errno 0
    24.11.14 15:04:56.029 discoveryd[61]: Basic SleepProxy BSP Server Disabled. Metric = 3373
    24.11.14 15:04:56.033 discoveryd[61]: AwdlD2d AwdlD2dInitialize: Initialized
    24.11.14 15:04:56.035 discoveryd[61]: D2D_IPC: Loaded
    24.11.14 15:04:56.042 discoveryd[61]: Basic WABServer NetResolverEvent no resolvers, resetting domains
    24.11.14 15:04:56.042 discoveryd[61]: Basic DNSResolver etc/hosts file changed: Event 0x7f897c1007e0 Flushed /etc/hosts cache
    24.11.14 15:04:56.042 discoveryd[61]: Basic RemoteControl com.apple.discoveryd Starting XPC Server
    24.11.14 15:04:56.043 discoveryd[61]: Basic SleepProxy Could not get the primary interface
    24.11.14 15:04:56.043 discoveryd[61]: Basic RemoteControl com.apple.discoveryd.dnsproxy Starting XPC Server
    24.11.14 15:04:56.044 discoveryd[61]: Basic SleepProxy Sleep Proxy Server is not enabled
    24.11.14 15:04:56.051 discoveryd_helper[285]: Basic RemoteControl com.apple.discoveryd_helper Starting XPC Server
    24.11.14 15:04:56.052 discoveryd_helper[285]: Detailed RemoteControl com.apple.discoveryd_helper XPC connection 0x7fed79900000: start (pid=61, <unknown> not root)
    24.11.14 15:04:56.054 configd[33]: network changed.
    24.11.14 15:04:56.095 kdc[74]: KDC started
    24.11.14 15:04:56.124 com.apple.kextd[26]: ERROR: invalid signature for com.logmein.driver.LogMeInSoundDriver, will not load
    24.11.14 15:04:56.000 kernel[0]: AirPort: Link Up on awdl0
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::configure Dynamic country code not supported on this device
    24.11.14 15:04:56.231 configd[33]: IPConfiguration: IPv4 ConfigMethod is missing/invalid
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::setAwdlOperatingMode Setting the AWDL operation mode from AUTO to SUSPENDED
    24.11.14 15:04:56.000 kernel[0]: IO80211AWDLPeerManager::setAwdlSuspendedMode() Suspending AWDL, enterQuietMode(true)
    24.11.14 15:04:56.257 com.apple.kextd[26]: kext file:///Library/Extensions/VirtualPCOSServices.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:56.257 com.apple.kextd[26]: Can't load /Library/Extensions/VirtualPCOSServices.kext - no code for running kernel's architecture.
    24.11.14 15:04:56.259 com.apple.kextd[26]: Load com.microsoft.VirtualPC.OSServices failed; removing personalities from kernel.
    24.11.14 15:04:56.000 kernel[0]: DSMOS has arrived
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController][staticBluetoothTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x9000
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController][start] -- completed
    24.11.14 15:04:56.000 kernel[0]: en3: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en4: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en5: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en6: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en7: promiscuous mode enable succeeded
    24.11.14 15:04:56.000 kernel[0]: en8: promiscuous mode enable succeeded
    24.11.14 15:04:56.286 loginwindow[79]: Login Window Application Started
    24.11.14 15:04:56.000 kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    24.11.14 15:04:56.000 kernel[0]: **** [IOBluetoothHCIController][ProcessBluetoothTransportShowsUpActionWL] -- Connected to the transport successfully -- 0x1580 -- 0x3800 -- 0x9000 ****
    24.11.14 15:04:56.330 mds[41]: (FMW.Normal:1402) FMW 0 0
    24.11.14 15:04:56.000 kernel[0]: en2: 802.11d country code set to 'CH'.
    24.11.14 15:04:56.000 kernel[0]: en2: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    24.11.14 15:04:56.349 WindowServer[286]: Server is starting up
    24.11.14 15:04:56.356 WindowServer[286]: Session 257 retained (2 references)
    24.11.14 15:04:56.356 WindowServer[286]: Session 257 released (1 references)
    24.11.14 15:04:56.383 WindowServer[286]: Session 257 retained (2 references)
    24.11.14 15:04:56.391 WindowServer[286]: init_page_flip: page flip mode is on
    24.11.14 15:04:56.000 kernel[0]: ARPT: 5.448960: MacAuthEvent en2   Auth result for: 90:72:40:20:29:d1  MAC AUTH succeeded
    24.11.14 15:04:56.000 kernel[0]: AirPort: Link Up on en2
    24.11.14 15:04:56.000 kernel[0]: en2: BSSID changed to 90:72:40:20:29:d1
    24.11.14 15:04:56.000 kernel[0]: en2::IO80211Interface::postMessage bssid changed
    24.11.14 15:04:56.000 kernel[0]: AirPort: RSN handshake complete on en2
    24.11.14 15:04:56.518 com.apple.kextd[26]: kext file:///System/Library/Extensions/PACESupportFamily.kext/Contents/PlugIns/PACES upportSnowLeopard.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:56.524 lsregister[283]: LaunchServices: Begin database seeding
    24.11.14 15:04:56.525 lsregister[283]: LaunchServices: Completed database seeding
    24.11.14 15:04:56.000 kernel[0]: rtR0InitNative: warning! failed to resolve special kernel symbols
    24.11.14 15:04:56.000 kernel[0]: vboxdrv: fAsync=0 offMin=0xd422 offMax=0x1b01e
    24.11.14 15:04:56.000 kernel[0]: supdrvDTraceInit: RTR0DbgKrnlInfoOpen failed with rc=-102.
    24.11.14 15:04:56.000 kernel[0]: VBoxDrv: version 4.3.8 r92456; IOCtl version 0x1a0007; IDC version 0x10000; dev major=33
    24.11.14 15:04:56.000 kernel[0]: VBoxDrv: Failed to open kernel symbols, rc=-102
    24.11.14 15:04:57.034 com.apple.kextd[26]: kext file:///System/Library/Extensions/iSpy.kext/ is in hash exception list, allowing to load
    24.11.14 15:04:57.000 kernel[0]: [iSpy.kext] INFO: loaded successfully!
    24.11.14 15:04:57.000 kernel[0]: VBoxFltDrv: version 4.3.8 r92456
    24.11.14 15:04:57.000 kernel[0]: VBoxAdpDrv: version 4.3.8 r92456
    24.11.14 15:04:57.558 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.586 WindowServer[286]: Found 82 modes for display 0x00000000 [82, 0]
    24.11.14 15:04:57.588 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.589 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.590 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.591 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.592 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:57.605 WindowServer[286]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe00002bc)
    24.11.14 15:04:57.605 WindowServer[286]: mux_initialize: Mode is safe
    24.11.14 15:04:57.656 WindowServer[286]: Found 82 modes for display 0x00000000 [82, 0]
    24.11.14 15:04:57.803 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:04:57.804 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:04:57.804 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:04:57.806 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:04:57.806 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:04:57.807 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:04:57.807 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:04:57.999 mds[41]: (ImportServer.Normal:1700) Ignoring blacklisted Spotlight importer plugin:/Library/Spotlight/Finale.mdimporter uuid:8F7AD1E0-0DB3-11D9-95E0-000A95BA3EA2 version:1.1
    24.11.14 15:04:58.000 kernel[0]: Ethernet [AppleBCM5701Ethernet]: Link up on en0, 100-Megabit, Full-duplex, Symmetric flow-control, Debug [796d,2301,0de1,0300,45e1,0000]
    24.11.14 15:04:58.220 configd[33]: IPConfiguration: IPv4 ConfigMethod is missing/invalid
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothDevice::setProperties() -- calling hciController->CallCreateDeviceReporter() -- this = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CallCreateDeviceReporter -- calling enqueueAction() -- device = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporterAction -- device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporterAction -- calling CreateDeviceReporter() device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: IOBluetoothHCIController::CreateDeviceReporter -- device = = 0x9000
    24.11.14 15:04:58.000 kernel[0]: [BNBTrackpadDevice::init][85.3] init is complete
    24.11.14 15:04:58.000 kernel[0]: [BNBTrackpadDevice::handleStart][85.3] returning 1
    24.11.14 15:04:58.000 kernel[0]: [AppleMultitouchHIDEventDriver::start] entered
    24.11.14 15:04:58.773 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.773 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.774 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.789 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.000 kernel[0]: [AppleMultitouchDevice::start] entered
    24.11.14 15:04:58.908 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.909 WindowServer[286]: Found 1 modes for display 0x00000000 [1, 0]
    24.11.14 15:04:58.000 kernel[0]: IOHIDSystem: Seize of AppleMultitouchHIDEventDriver failed.
    24.11.14 15:04:58.000 kernel[0]: IOHIDSystem: Seize of IOHIDPointing failed.
    24.11.14 15:04:59.067 WindowServer[286]: WSMachineUsesNewStyleMirroring: false
    24.11.14 15:04:59.088 hidd[85]: IOHIDService compatibility thread running at priority 63 and schedule 2.
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x44087a80: GL mask 0x1; bounds (0, 0)[1920 x 2160], 82 modes available
    Main, Active, on-line, enabled, boot, Vendor 4d10, Model 21ea, S/N 0, Unit 0, Rotation 0
    UUID 0xa72347ebf7312d8f13fba6868aea7db8
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0042: GL mask 0x40; bounds (0, 0)[4096 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0041: GL mask 0x20; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.160 WindowServer[286]: Display 0x003f0043: GL mask 0x80; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.161 WindowServer[286]: Set a breakpoint at CGSLogError to catch errors as they are logged.
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.161 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.162 WindowServer[286]: WSSetWindowTransform: Singular matrix
    24.11.14 15:04:59.310 configd[33]: network changed: v4(en0+:192.168.178.34) DNS+ Proxy+ SMB
    24.11.14 15:04:59.312 discoveryd[61]: Basic SleepProxy Could not get the primary interface
    24.11.14 15:04:59.315 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'ptaht-ix' Advertising service started
    24.11.14 15:04:59.316 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'ptaht-ix' Advertising service started
    24.11.14 15:04:59.000 kernel[0]: IO80211AWDLPeerManager::setAwdlOperatingMode Setting the AWDL operation mode from SUSPENDED to AUTO
    24.11.14 15:04:59.000 kernel[0]: IO80211AWDLPeerManager::setAwdlAutoMode Resuming AWDL
    24.11.14 15:04:59.318 discoveryd[61]: AwdlD2d AwdlD2dStartAdvertisingPair: 'c64ff5efff7b14c700000000000008efip6arpa' Advertising service started
    24.11.14 15:04:59.319 UserEventAgent[23]: Captive: [CNInfoNetworkActive:1709] en2: SSID 'Diego's Wi-Fi Network' making interface primary (protected network)
    24.11.14 15:04:59.319 configd[33]: network changed: v4(en0:192.168.178.34) DNS* Proxy SMB
    24.11.14 15:04:59.319 UserEventAgent[23]: Captive: CNPluginHandler en2: Evaluating
    24.11.14 15:04:59.320 UserEventAgent[23]: Captive: en2: Probing 'Diego's Wi-Fi Network'
    24.11.14 15:04:59.324 configd[33]: network changed: v4(en0:192.168.178.34, en2!:192.168.178.13) DNS Proxy SMB
    24.11.14 15:04:59.000 kernel[0]: en2: BSSID changed to 90:72:40:20:29:d1
    24.11.14 15:04:59.335 configd[33]: setting hostname to "Ptaht-IX.fritz.box"
    24.11.14 15:04:59.396 UserEventAgent[23]: tcp_connection_destination_prepare_complete 1 connectx to 104.66.181.165:80@en2 failed: Host is down
    24.11.14 15:04:59.446 locationd[298]: Logging binary sensor data to /var/folders/zz/zyxvpxvq6csfxvn_n00000sm00006d/C/locationdSensors.bin
    24.11.14 15:04:59.448 locationd[298]: NBB-Could not get UDID for stable refill timing, falling back on random
    24.11.14 15:04:59.456 locationd[298]: Location icon should now be in state 'Inactive'
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x44087a80: GL mask 0x1; bounds (0, 0)[1920 x 2160], 82 modes available
    Main, Active, on-line, enabled, boot, Vendor 4d10, Model 21ea, S/N 0, Unit 0, Rotation 0
    UUID 0xa72347ebf7312d8f13fba6868aea7db8
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0042: GL mask 0x40; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 6, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0041: GL mask 0x20; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 5, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0040: GL mask 0x10; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003f: GL mask 0x8; bounds (2947, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003e: GL mask 0x4; bounds (2948, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f003d: GL mask 0x2; bounds (2949, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.515 WindowServer[286]: Display 0x003f0043: GL mask 0x80; bounds (2950, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 7, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    24.11.14 15:04:59.516 WindowServer[286]: CGXPerformInitialDisplayConfiguration
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x44087a80: Unit 0; Vendor 0x4d10 Model 0x21ea S/N 0 Dimensions 27.56 x 15.35; online enabled, Bounds (0,0)[1920 x 2160], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0042: Unit 6; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0041: Unit 5; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2947,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2948,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2949,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.516 WindowServer[286]:   Display 0x003f0043: Unit 7; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2950,0)[1 x 1], Rotation 0, Resolution 1
    24.11.14 15:04:59.518 WindowServer[286]: CGXMuxBoot: Boot normal
    24.11.14 15:05:00.176 sntp[296]: time set +0.640194 s
    24.11.14 15:05:00.180 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:05:00.181 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:05:00.181 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:05:00.182 WindowServer[286]: GLCompositor: GL renderer id 0x01021c01, GL mask 0x0000007f, accelerator 0x00004c5b, unit 0, caps QEX|MIPMAP, vram 2048 MB
    24.11.14 15:05:00.183 WindowServer[286]: GLCompositor: GL renderer id 0x01021c01, GL mask 0x0000007f, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    24.11.14 15:05:00.183 WindowServer[286]: GLCompositor: GL renderer id 0x02021c01, GL mask 0x00000080, accelerator 0x00002a23, unit 7, caps QEX|MIPMAP, vram 2048 MB
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:05:00.183 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:05:00.184 WindowServer[286]: GLCompositor: GL renderer id 0x02021c01, GL mask 0x00000080, texture max 16384, viewport max {16384, 16384}, extensions NPOT|GLSL|FLOAT
    24.11.14 15:05:00.184 WindowServer[286]: GLCompositor enabled for tile size [256 x 256]
    24.11.14 15:05:00.184 WindowServer[286]: CGXGLInitMipMap: mip map mode is on
    24.11.14 15:05:00.184 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: [async_http_read_stream:387] kCFStreamEventErrorOccurred NSPOSIXErrorDomain/64: The operation couldn’t be completed. Host is down
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: [CaptiveHandleRedirect:1662] Unknown result value: 1, assuming online
    24.11.14 15:05:00.187 UserEventAgent[23]: Captive: CNPluginHandler en2: Authenticated
    24.11.14 15:05:00.209 ntpd[242]: peer time.euro.apple.com @ 17.72.148.52
    24.11.14 15:05:00.454 ntpd[242]: drift PPM:0.000 -> -75.112
    24.11.14 15:05:00.000 kernel[0]: EDID CEA Extensions not valid for audio [Revision ID]: 1 (minimum value: 3)
    24.11.14 15:05:01.043 com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    24.11.14 15:05:01.043 com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    24.11.14 15:05:01.046 com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    24.11.14 15:05:01.047 com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    24.11.14 15:05:01.047 com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    24.11.14 15:05:01.049 com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    24.11.14 15:05:01.049 com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    24.11.14 15:05:01.050 com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    24.11.14 15:05:01.051 com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in process suhelperd[301]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    24.11.14 15:05:01.000 kernel[0]: BUG in p

    I have the same errors occurring at an alarming rate. I did isolate it to the App Store. Specifically when checking for an update. I was hoping that you could test this out for me. Go to your console log and select all messages and then check kernel in the sender box (bottom left). I found that now is a good time to insert a marker. Now launch the app store then got to the update section. Select check for update.
    Does this generate a series of the errors? I can reproduce the errors every time I "check for updates". The error would not show up when checking for updates in iTunes.
    I did notice errors in both extending from CFNetwork
    App store:
    2015-01-15 8:40:38.047 AM storeassetd[356]: CFNetwork SSLHandshake failed (-9802)
    iTunes
    2015-01-15 8:53:53.986 AM iTunes[2200]: CFNetwork SSLHandshake failed (-9806)
    Please compare and see if you get the same results.

  • Real trouble trying to install Catalyst Legacy

    I'm kind of in trouble trying to install catalyst-total-hd234k package from the AUR
    using yaourt to achieve this, enabled the xorg112 package to downgrade, tried pacman directly and makepkg, same result
    It asks a lot of dependencies conflicting with catalyst drivers, so I accept to remove before downgrading to 1.12
    It goes through like if nothing was up after downgrading, package installs without any error
    Following the AMD Catalyst wiki page in here leads me to have a black screen after reboot
    EDIT 2: Process of reproducing the problem I'm facing
    - I enable the xorg112 repository on top of every other in /etc/pacman.conf
    - Downgrade xorg with
    # pacman -S xorg
    :: There are 79 members in group xorg:
    :: Repository xorg112
    1) xf86-input-acecad 2) xf86-input-aiptek 3) xf86-input-evdev 4) xf86-input-joystick 5) xf86-input-keyboard 6) xf86-input-mouse 7) xf86-input-synaptics
    8) xf86-input-vmmouse 9) xf86-input-void 10) xf86-video-apm 11) xf86-video-fbdev 12) xf86-video-intel 13) xf86-video-v4l 14) xf86-video-vesa
    :: Repository extra
    15) xf86-video-ark 16) xf86-video-ast 17) xf86-video-ati 18) xf86-video-cirrus 19) xf86-video-dummy 20) xf86-video-glint 21) xf86-video-i128
    22) xf86-video-mach64 23) xf86-video-mga 24) xf86-video-modesetting 25) xf86-video-neomagic 26) xf86-video-nouveau 27) xf86-video-nv 28) xf86-video-openchrome
    29) xf86-video-r128 30) xf86-video-savage 31) xf86-video-siliconmotion 32) xf86-video-sis 33) xf86-video-tdfx 34) xf86-video-trident 35) xf86-video-vmware
    36) xf86-video-voodoo 37) xorg-bdftopcf 38) xorg-docs 39) xorg-font-util 40) xorg-fonts-100dpi 41) xorg-fonts-75dpi 42) xorg-fonts-encodings 43) xorg-iceauth
    44) xorg-luit 45) xorg-mkfontdir 46) xorg-mkfontscale 47) xorg-server 48) xorg-sessreg 49) xorg-setxkbmap 50) xorg-smproxy 51) xorg-x11perf 52) xorg-xauth
    53) xorg-xbacklight 54) xorg-xcmsdb 55) xorg-xcursorgen 56) xorg-xdpyinfo 57) xorg-xdriinfo 58) xorg-xev 59) xorg-xgamma 60) xorg-xhost 61) xorg-xinput
    62) xorg-xkbcomp 63) xorg-xkbevd 64) xorg-xkbutils 65) xorg-xkill 66) xorg-xlsatoms 67) xorg-xlsclients 68) xorg-xmodmap 69) xorg-xpr 70) xorg-xprop
    71) xorg-xrandr 72) xorg-xrdb 73) xorg-xrefresh 74) xorg-xset 75) xorg-xsetroot 76) xorg-xvinfo 77) xorg-xwd 78) xorg-xwininfo 79) xorg-xwud
    Enter a selection (default=all):
    warning: downgrading package xf86-input-evdev (2.9.1-1 => 2.7.3-1)
    warning: downgrading package xf86-input-joystick (1.6.2-5 => 1.6.1-1)
    warning: downgrading package xf86-input-keyboard (1.8.0-3 => 1.6.2-1)
    warning: downgrading package xf86-input-mouse (1.9.1-1 => 1.8.1-1)
    warning: downgrading package xf86-input-synaptics (1.8.1-1 => 1.6.2-1)
    warning: downgrading package xf86-input-vmmouse (13.0.0-5 => 12.9.0-1)
    warning: downgrading package xf86-input-void (1.4.0-7 => 1.4.0-3)
    warning: downgrading package xf86-video-fbdev (0.4.4-3 => 0.4.3-1)
    warning: downgrading package xf86-video-intel (2.99.917-1 => 2.20.2-2)
    warning: downgrading package xf86-video-v4l (0.2.0-14 => 0.2.0-10)
    warning: downgrading package xf86-video-vesa (2.3.2-5 => 2.3.2-1)
    warning: xf86-video-ark-0.7.5-5 is up to date -- reinstalling
    warning: xf86-video-ast-0.97.0-5 is up to date -- reinstalling
    warning: xf86-video-ati-1:7.5.0-1 is up to date -- reinstalling
    warning: xf86-video-cirrus-1.5.2-4 is up to date -- reinstalling
    warning: xf86-video-dummy-0.3.7-3 is up to date -- reinstalling
    warning: xf86-video-glint-1.2.8-5 is up to date -- reinstalling
    warning: xf86-video-i128-1.3.6-5 is up to date -- reinstalling
    warning: xf86-video-mach64-6.9.4-4 is up to date -- reinstalling
    warning: xf86-video-mga-1.6.3-3 is up to date -- reinstalling
    warning: xf86-video-modesetting-0.9.0-2 is up to date -- reinstalling
    warning: xf86-video-neomagic-1.2.8-3 is up to date -- reinstalling
    warning: xf86-video-nouveau-1.0.11-2 is up to date -- reinstalling
    warning: xf86-video-nv-2.1.20-5 is up to date -- reinstalling
    warning: xf86-video-openchrome-0.3.3-4 is up to date -- reinstalling
    warning: xf86-video-r128-6.9.2-3 is up to date -- reinstalling
    warning: xf86-video-savage-2.3.7-3 is up to date -- reinstalling
    warning: xf86-video-siliconmotion-1.7.7-5 is up to date -- reinstalling
    warning: xf86-video-sis-0.10.7-6 is up to date -- reinstalling
    warning: xf86-video-tdfx-1.4.5-5 is up to date -- reinstalling
    warning: xf86-video-trident-1.3.6-6 is up to date -- reinstalling
    warning: xf86-video-vmware-13.0.2-2 is up to date -- reinstalling
    warning: xf86-video-voodoo-1.2.5-5 is up to date -- reinstalling
    warning: xorg-bdftopcf-1.0.5-1 is up to date -- reinstalling
    warning: xorg-docs-1.7-2 is up to date -- reinstalling
    warning: xorg-font-util-1.3.0-2 is up to date -- reinstalling
    warning: xorg-fonts-100dpi-1.0.3-2 is up to date -- reinstalling
    warning: xorg-fonts-75dpi-1.0.3-2 is up to date -- reinstalling
    warning: xorg-fonts-encodings-1.0.4-4 is up to date -- reinstalling
    warning: xorg-iceauth-1.0.6-1 is up to date -- reinstalling
    warning: xorg-luit-1.1.1-2 is up to date -- reinstalling
    warning: xorg-mkfontdir-1.0.7-2 is up to date -- reinstalling
    warning: xorg-mkfontscale-1.1.1-1 is up to date -- reinstalling
    warning: xorg-server-1.16.3-2 is up to date -- reinstalling
    warning: xorg-sessreg-1.0.8-2 is up to date -- reinstalling
    warning: xorg-setxkbmap-1.3.0-2 is up to date -- reinstalling
    warning: xorg-smproxy-1.0.5-2 is up to date -- reinstalling
    warning: xorg-x11perf-1.5.4-2 is up to date -- reinstalling
    warning: xorg-xauth-1.0.9-1 is up to date -- reinstalling
    warning: xorg-xbacklight-1.2.1-1 is up to date -- reinstalling
    warning: xorg-xcmsdb-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xcursorgen-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xdpyinfo-1.3.1-1 is up to date -- reinstalling
    warning: xorg-xdriinfo-1.0.4-4 is up to date -- reinstalling
    warning: xorg-xev-1.2.1-2 is up to date -- reinstalling
    warning: xorg-xgamma-1.0.5-2 is up to date -- reinstalling
    warning: xorg-xhost-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xinput-1.6.1-1 is up to date -- reinstalling
    warning: xorg-xkbcomp-1.3.0-1 is up to date -- reinstalling
    warning: xorg-xkbevd-1.1.3-2 is up to date -- reinstalling
    warning: xorg-xkbutils-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xkill-1.0.4-1 is up to date -- reinstalling
    warning: xorg-xlsatoms-1.1.1-2 is up to date -- reinstalling
    warning: xorg-xlsclients-1.1.3-1 is up to date -- reinstalling
    warning: xorg-xmodmap-1.0.8-1 is up to date -- reinstalling
    warning: xorg-xpr-1.0.4-2 is up to date -- reinstalling
    warning: xorg-xprop-1.2.2-1 is up to date -- reinstalling
    warning: xorg-xrandr-1.4.3-1 is up to date -- reinstalling
    warning: xorg-xrdb-1.1.0-1 is up to date -- reinstalling
    warning: xorg-xrefresh-1.0.5-1 is up to date -- reinstalling
    warning: xorg-xset-1.2.3-1 is up to date -- reinstalling
    warning: xorg-xsetroot-1.1.1-2 is up to date -- reinstalling
    warning: xorg-xvinfo-1.1.2-2 is up to date -- reinstalling
    warning: xorg-xwd-1.0.6-1 is up to date -- reinstalling
    warning: xorg-xwininfo-1.1.3-1 is up to date -- reinstalling
    warning: xorg-xwud-1.0.4-2 is up to date -- reinstalling
    resolving dependencies...
    looking for conflicting packages...
    Packages (79) xf86-input-acecad-1.5.0-3 xf86-input-aiptek-1.4.1-3 xf86-input-evdev-2.7.3-1 xf86-input-joystick-1.6.1-1 xf86-input-keyboard-1.6.2-1
    xf86-input-mouse-1.8.1-1 xf86-input-synaptics-1.6.2-1 xf86-input-vmmouse-12.9.0-1 xf86-input-void-1.4.0-3 xf86-video-apm-1.2.5-1
    xf86-video-ark-0.7.5-5 xf86-video-ast-0.97.0-5 xf86-video-ati-1:7.5.0-1 xf86-video-cirrus-1.5.2-4 xf86-video-dummy-0.3.7-3 xf86-video-fbdev-0.4.3-1
    xf86-video-glint-1.2.8-5 xf86-video-i128-1.3.6-5 xf86-video-intel-2.20.2-2 xf86-video-mach64-6.9.4-4 xf86-video-mga-1.6.3-3
    xf86-video-modesetting-0.9.0-2 xf86-video-neomagic-1.2.8-3 xf86-video-nouveau-1.0.11-2 xf86-video-nv-2.1.20-5 xf86-video-openchrome-0.3.3-4
    xf86-video-r128-6.9.2-3 xf86-video-savage-2.3.7-3 xf86-video-siliconmotion-1.7.7-5 xf86-video-sis-0.10.7-6 xf86-video-tdfx-1.4.5-5
    xf86-video-trident-1.3.6-6 xf86-video-v4l-0.2.0-10 xf86-video-vesa-2.3.2-1 xf86-video-vmware-13.0.2-2 xf86-video-voodoo-1.2.5-5
    xorg-bdftopcf-1.0.5-1 xorg-docs-1.7-2 xorg-font-util-1.3.0-2 xorg-fonts-100dpi-1.0.3-2 xorg-fonts-75dpi-1.0.3-2 xorg-fonts-encodings-1.0.4-4
    xorg-iceauth-1.0.6-1 xorg-luit-1.1.1-2 xorg-mkfontdir-1.0.7-2 xorg-mkfontscale-1.1.1-1 xorg-server-1.16.3-2 xorg-sessreg-1.0.8-2
    xorg-setxkbmap-1.3.0-2 xorg-smproxy-1.0.5-2 xorg-x11perf-1.5.4-2 xorg-xauth-1.0.9-1 xorg-xbacklight-1.2.1-1 xorg-xcmsdb-1.0.4-2
    xorg-xcursorgen-1.0.6-1 xorg-xdpyinfo-1.3.1-1 xorg-xdriinfo-1.0.4-4 xorg-xev-1.2.1-2 xorg-xgamma-1.0.5-2 xorg-xhost-1.0.6-1 xorg-xinput-1.6.1-1
    xorg-xkbcomp-1.3.0-1 xorg-xkbevd-1.1.3-2 xorg-xkbutils-1.0.4-2 xorg-xkill-1.0.4-1 xorg-xlsatoms-1.1.1-2 xorg-xlsclients-1.1.3-1
    xorg-xmodmap-1.0.8-1 xorg-xpr-1.0.4-2 xorg-xprop-1.2.2-1 xorg-xrandr-1.4.3-1 xorg-xrdb-1.1.0-1 xorg-xrefresh-1.0.5-1 xorg-xset-1.2.3-1
    xorg-xsetroot-1.1.1-2 xorg-xvinfo-1.1.2-2 xorg-xwd-1.0.6-1 xorg-xwininfo-1.1.3-1 xorg-xwud-1.0.4-2
    Total Installed Size: 36.11 MiB
    Net Upgrade Size: -0.52 MiB
    :: Proceed with installation? [Y/n] Y
    (79/79) checking keys in keyring [############################################################] 100%
    (79/79) checking package integrity [############################################################] 100%
    (79/79) loading package files [############################################################] 100%
    (79/79) checking for file conflicts [############################################################] 100%
    (79/79) checking available disk space [############################################################] 100%
    ( 1/79) installing xf86-input-acecad [############################################################] 100%
    ( 2/79) installing xf86-input-aiptek [############################################################] 100%
    ( 3/79) downgrading xf86-input-evdev [############################################################] 100%
    ( 4/79) downgrading xf86-input-joystick [############################################################] 100%
    ( 5/79) downgrading xf86-input-keyboard [############################################################] 100%
    ( 6/79) downgrading xf86-input-mouse [############################################################] 100%
    ( 7/79) downgrading xf86-input-synaptics [############################################################] 100%
    ( 8/79) downgrading xf86-input-vmmouse [############################################################] 100%
    ( 9/79) downgrading xf86-input-void [############################################################] 100%
    (10/79) installing xf86-video-apm [############################################################] 100%
    (11/79) downgrading xf86-video-fbdev [############################################################] 100%
    (12/79) downgrading xf86-video-intel [############################################################] 100%
    (13/79) downgrading xf86-video-v4l [############################################################] 100%
    (14/79) downgrading xf86-video-vesa [############################################################] 100%
    (15/79) reinstalling xf86-video-ark [############################################################] 100%
    (16/79) reinstalling xf86-video-ast [############################################################] 100%
    (17/79) reinstalling xf86-video-ati [############################################################] 100%
    (18/79) reinstalling xf86-video-cirrus [############################################################] 100%
    (19/79) reinstalling xf86-video-dummy [############################################################] 100%
    (20/79) reinstalling xf86-video-glint [############################################################] 100%
    (21/79) reinstalling xf86-video-i128 [############################################################] 100%
    (22/79) reinstalling xf86-video-mach64 [############################################################] 100%
    (23/79) reinstalling xf86-video-mga [############################################################] 100%
    (24/79) reinstalling xf86-video-modesetting [############################################################] 100%
    (25/79) reinstalling xf86-video-neomagic [############################################################] 100%
    (26/79) reinstalling xf86-video-nouveau [############################################################] 100%
    (27/79) reinstalling xf86-video-nv [############################################################] 100%
    (28/79) reinstalling xf86-video-openchrome [############################################################] 100%
    (29/79) reinstalling xf86-video-r128 [############################################################] 100%
    (30/79) reinstalling xf86-video-savage [############################################################] 100%
    (31/79) reinstalling xf86-video-siliconmotion [############################################################] 100%
    (32/79) reinstalling xf86-video-sis [############################################################] 100%
    (33/79) reinstalling xf86-video-tdfx [############################################################] 100%
    (34/79) reinstalling xf86-video-trident [############################################################] 100%
    (35/79) reinstalling xf86-video-vmware [############################################################] 100%
    (36/79) reinstalling xf86-video-voodoo [############################################################] 100%
    (37/79) reinstalling xorg-bdftopcf [############################################################] 100%
    (38/79) reinstalling xorg-docs [############################################################] 100%
    (39/79) reinstalling xorg-font-util [############################################################] 100%
    (40/79) reinstalling xorg-fonts-encodings [############################################################] 100%
    (41/79) reinstalling xorg-mkfontscale [############################################################] 100%
    (42/79) reinstalling xorg-mkfontdir [############################################################] 100%
    (43/79) reinstalling xorg-fonts-100dpi [############################################################] 100%
    Updating font cache... done.
    (44/79) reinstalling xorg-fonts-75dpi [############################################################] 100%
    Updating font cache... done.
    (45/79) reinstalling xorg-iceauth [############################################################] 100%
    (46/79) reinstalling xorg-luit [############################################################] 100%
    (47/79) reinstalling xorg-setxkbmap [############################################################] 100%
    (48/79) reinstalling xorg-xkbcomp [############################################################] 100%
    (49/79) reinstalling xorg-server [############################################################] 100%
    (50/79) reinstalling xorg-sessreg [############################################################] 100%
    (51/79) reinstalling xorg-smproxy [############################################################] 100%
    (52/79) reinstalling xorg-x11perf [############################################################] 100%
    (53/79) reinstalling xorg-xauth [############################################################] 100%
    (54/79) reinstalling xorg-xbacklight [############################################################] 100%
    (55/79) reinstalling xorg-xcmsdb [############################################################] 100%
    (56/79) reinstalling xorg-xcursorgen [############################################################] 100%
    (57/79) reinstalling xorg-xdpyinfo [############################################################] 100%
    (58/79) reinstalling xorg-xdriinfo [############################################################] 100%
    (59/79) reinstalling xorg-xev [############################################################] 100%
    (60/79) reinstalling xorg-xgamma [############################################################] 100%
    (61/79) reinstalling xorg-xhost [############################################################] 100%
    (62/79) reinstalling xorg-xrandr [############################################################] 100%
    (63/79) reinstalling xorg-xinput [############################################################] 100%
    (64/79) reinstalling xorg-xkbevd [############################################################] 100%
    (65/79) reinstalling xorg-xkbutils [############################################################] 100%
    (66/79) reinstalling xorg-xkill [############################################################] 100%
    (67/79) reinstalling xorg-xlsatoms [############################################################] 100%
    (68/79) reinstalling xorg-xlsclients [############################################################] 100%
    (69/79) reinstalling xorg-xmodmap [############################################################] 100%
    (70/79) reinstalling xorg-xpr [############################################################] 100%
    (71/79) reinstalling xorg-xprop [############################################################] 100%
    (72/79) reinstalling xorg-xrdb [############################################################] 100%
    (73/79) reinstalling xorg-xrefresh [############################################################] 100%
    (74/79) reinstalling xorg-xset [############################################################] 100%
    (75/79) reinstalling xorg-xsetroot [############################################################] 100%
    (76/79) reinstalling xorg-xvinfo [############################################################] 100%
    (77/79) reinstalling xorg-xwd [############################################################] 100%
    (78/79) reinstalling xorg-xwininfo [############################################################] 100%
    (79/79) reinstalling xorg-xwud [############################################################] 100%
    - Then I use yaourt (for convenience) to install catalyst-total-hd234k, same happens with catalyst packages when I use catalyst-hd234k repository
    $ yaourt -S catalyst-total-hd234k
    ==> Downloading catalyst-total-hd234k PKGBUILD from AUR...
    x .SRCINFO
    x catalyst-total-hd234k.install
    x fglrx_gpl_symbol.patch
    x cold-fglrx-3.14-current_euid.patch
    x arch_3.13_kernel_acpi_node.patch
    x lano1106_kcl_agp_13_4.patch
    x lano1106_fglrx_intel_iommu.patch
    x foutrelis_3.10_fix_for_legacy.patch
    x gentoo_linux-3.10-proc.diff
    x arch-fglrx-3.8.patch
    x arch-fglrx-3.7.patch
    x 3.5-do_mmap.patch
    x catalyst-hook.service
    x makefile_compat.patch
    x ati_make.sh
    x hook-fglrx
    x arch-fglrx-authatieventsd_new.patch
    x catalyst.conf
    x atieventsd.service
    x atieventsd.sh
    x catalyst.sh
    x lib32-catalyst.sh
    x catalyst_build_module
    x PKGBUILD
    Comment by Vi0L0 (2014-10-09 18:40)
    let me paste form the grill:
    I'm pretty sure that you didn't update catalyst-total-hd234k to version 13.1-28, because there I fixed conflict with ati-dri.
    Comment by doblerone (2014-12-17 19:15)
    During the last update, apparently there are some conflicts between catalyst-libgl and catalyst-total-hd234k. The suggestion is to remove catalyst-total-hd234k.
    Comment by Vi0L0 (2014-12-18 08:14)
    You are probably using libva-xvba-drivers which from yesterday depend on catalyst-libgl, i will add it to provides array after getting back home
    Comment by Vi0L0 (2014-12-18 21:50)
    13.1-29:
    - added catalyst-libgl, opencl-catalyst, lib32-catalyst-libgl and lib32-opencl-catalyst into provides array to satisfy libva-xvba-driver (and maybe other that will come in the future) deps;
    - added linux 3.18 support (i cannot test it actually, i can see it compiles fine though)
    Comment by K3pler (2015-01-05 12:43)
    Planning to replace my ultra outdated x1950pro for a less outdated hd3870 lol.
    And using this driver i probably need to downgrade xorg-server from 1.16 to 1.12 from the aur, right???
    Thanks for your work VioLO
    catalyst-total-hd234k 13.1-29 (mar jun 12 10:59:12 CST 2012)
    ( Unsupported package: Potentially dangerous ! )
    ==> Edit PKGBUILD ? [Y/n] ("A" to abort)
    ==> ------------------------------------
    ==> n
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> catalyst-total-hd234k dependencies:
    - linux>=3.0 (already installed)
    - linux<3.19 (already installed)
    - linux-headers (already installed)
    - xorg-server>=1.7.0 (already installed)
    - netkit-bsd-finger (already installed)
    - libxrandr (already installed)
    - libsm (already installed)
    - fontconfig (already installed)
    - libxcursor (already installed)
    - libxi (already installed)
    - gcc-libs (already installed)
    - gcc>4.0.0 (already installed)
    - make (already installed)
    - patch (already installed)
    - libxinerama (already installed)
    - mesa>=10.1.0-4 (already installed)
    - lib32-libxext (already installed)
    - lib32-libdrm (already installed)
    - lib32-libxinerama (already installed)
    - lib32-mesa>=10.1.0-4 (already installed)
    - xorg-server<1.13.0 (package found)
    ==> Edit catalyst-total-hd234k.install ? [Y/n] ("A" to abort)
    ==> ---------------------------------------------------------
    ==> n
    ==> Continue building catalyst-total-hd234k ? [Y/n]
    ==> -----------------------------------------------
    ==>
    ==> Building and installing package
    ==> Install or build missing dependencies for catalyst-total-hd234k:
    warning: downgrading package xorg-server (1.16.3-2 => 1.12.4-3)
    resolving dependencies...
    looking for conflicting packages...
    :: xorg-server and xf86-video-ark are in conflict. Remove xf86-video-ark? [y/N] Y
    :: xorg-server and xf86-video-ast are in conflict. Remove xf86-video-ast? [y/N] y
    :: xorg-server and xf86-video-ati are in conflict. Remove xf86-video-ati? [y/N] y
    :: xorg-server and xf86-video-cirrus are in conflict. Remove xf86-video-cirrus? [y/N] y
    :: xorg-server and xf86-video-dummy are in conflict. Remove xf86-video-dummy? [y/N] y
    :: xorg-server and xf86-video-glint are in conflict. Remove xf86-video-glint? [y/N] y
    :: xorg-server and xf86-video-i128 are in conflict. Remove xf86-video-i128? [y/N] y
    :: xorg-server and xf86-video-mach64 are in conflict. Remove xf86-video-mach64? [y/N] y
    :: xorg-server and xf86-video-mga are in conflict. Remove xf86-video-mga? [y/N] y
    :: xorg-server and xf86-video-modesetting are in conflict. Remove xf86-video-modesetting? [y/N] y
    :: xorg-server and xf86-video-neomagic are in conflict. Remove xf86-video-neomagic? [y/N] y
    :: xorg-server and xf86-video-nouveau are in conflict. Remove xf86-video-nouveau? [y/N] y
    :: xorg-server and xf86-video-nv are in conflict. Remove xf86-video-nv? [y/N] y
    :: xorg-server and xf86-video-openchrome are in conflict. Remove xf86-video-openchrome? [y/N] y
    :: xorg-server and xf86-video-r128 are in conflict. Remove xf86-video-r128? [y/N] y
    :: xorg-server and xf86-video-savage are in conflict. Remove xf86-video-savage? [y/N] y
    :: xorg-server and xf86-video-siliconmotion are in conflict. Remove xf86-video-siliconmotion? [y/N] y
    :: xorg-server and xf86-video-sis are in conflict. Remove xf86-video-sis? [y/N] y
    :: xorg-server and xf86-video-tdfx are in conflict. Remove xf86-video-tdfx? [y/N] y
    :: xorg-server and xf86-video-trident are in conflict. Remove xf86-video-trident? [y/N] y
    :: xorg-server and xf86-video-vmware are in conflict. Remove xf86-video-vmware? [y/N] y
    :: xorg-server and xf86-video-voodoo are in conflict. Remove xf86-video-voodoo? [y/N] y
    Packages (23) xf86-video-ark-0.7.5-5 [removal] xf86-video-ast-0.97.0-5 [removal] xf86-video-ati-1:7.5.0-1 [removal] xf86-video-cirrus-1.5.2-4 [removal]
    xf86-video-dummy-0.3.7-3 [removal] xf86-video-glint-1.2.8-5 [removal] xf86-video-i128-1.3.6-5 [removal] xf86-video-mach64-6.9.4-4 [removal]
    xf86-video-mga-1.6.3-3 [removal] xf86-video-modesetting-0.9.0-2 [removal] xf86-video-neomagic-1.2.8-3 [removal] xf86-video-nouveau-1.0.11-2 [removal]
    xf86-video-nv-2.1.20-5 [removal] xf86-video-openchrome-0.3.3-4 [removal] xf86-video-r128-6.9.2-3 [removal] xf86-video-savage-2.3.7-3 [removal]
    xf86-video-siliconmotion-1.7.7-5 [removal] xf86-video-sis-0.10.7-6 [removal] xf86-video-tdfx-1.4.5-5 [removal] xf86-video-trident-1.3.6-6 [removal]
    xf86-video-vmware-13.0.2-2 [removal] xf86-video-voodoo-1.2.5-5 [removal] xorg-server-1.12.4-3
    Total Installed Size: 3.73 MiB
    Net Upgrade Size: -3.31 MiB
    :: Proceed with installation? [Y/n] Y
    (1/1) checking keys in keyring [############################################################] 100%
    (1/1) checking package integrity [############################################################] 100%
    (1/1) loading package files [############################################################] 100%
    (1/1) checking for file conflicts [############################################################] 100%
    (23/23) checking available disk space [############################################################] 100%
    ( 1/22) removing xf86-video-voodoo [############################################################] 100%
    ( 2/22) removing xf86-video-vmware [############################################################] 100%
    ( 3/22) removing xf86-video-trident [############################################################] 100%
    ( 4/22) removing xf86-video-tdfx [############################################################] 100%
    ( 5/22) removing xf86-video-sis [############################################################] 100%
    ( 6/22) removing xf86-video-siliconmotion [############################################################] 100%
    ( 7/22) removing xf86-video-savage [############################################################] 100%
    ( 8/22) removing xf86-video-r128 [############################################################] 100%
    ( 9/22) removing xf86-video-openchrome [############################################################] 100%
    (10/22) removing xf86-video-nv [############################################################] 100%
    (11/22) removing xf86-video-nouveau [############################################################] 100%
    (12/22) removing xf86-video-neomagic [############################################################] 100%
    (13/22) removing xf86-video-modesetting [############################################################] 100%
    (14/22) removing xf86-video-mga [############################################################] 100%
    (15/22) removing xf86-video-mach64 [############################################################] 100%
    (16/22) removing xf86-video-i128 [############################################################] 100%
    (17/22) removing xf86-video-glint [############################################################] 100%
    (18/22) removing xf86-video-dummy [############################################################] 100%
    (19/22) removing xf86-video-cirrus [############################################################] 100%
    (20/22) removing xf86-video-ati [############################################################] 100%
    (21/22) removing xf86-video-ast [############################################################] 100%
    (22/22) removing xf86-video-ark [############################################################] 100%
    (1/1) downgrading xorg-server [############################################################] 100%
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> Making package: catalyst-total-hd234k 13.1-29 (mié ene 7 22:22:26 CST 2015)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving sources...
    -> Downloading amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    100 101M 100 101M 0 0 103k 0 0:16:44 0:16:44 --:--:-- 105k
    -> Found catalyst_build_module
    -> Found lib32-catalyst.sh
    -> Found catalyst.sh
    -> Found atieventsd.sh
    -> Found atieventsd.service
    -> Found catalyst.conf
    -> Found arch-fglrx-authatieventsd_new.patch
    -> Found hook-fglrx
    -> Found ati_make.sh
    -> Found makefile_compat.patch
    -> Found catalyst-hook.service
    -> Found 3.5-do_mmap.patch
    -> Found arch-fglrx-3.7.patch
    -> Found arch-fglrx-3.8.patch
    -> Found gentoo_linux-3.10-proc.diff
    -> Found foutrelis_3.10_fix_for_legacy.patch
    -> Found lano1106_fglrx_intel_iommu.patch
    -> Found lano1106_kcl_agp_13_4.patch
    -> Found arch_3.13_kernel_acpi_node.patch
    -> Found cold-fglrx-3.14-current_euid.patch
    -> Found fglrx_gpl_symbol.patch
    ==> Validating source files with md5sums...
    amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip ... Passed
    catalyst_build_module ... Passed
    lib32-catalyst.sh ... Passed
    catalyst.sh ... Passed
    atieventsd.sh ... Passed
    atieventsd.service ... Passed
    catalyst.conf ... Passed
    arch-fglrx-authatieventsd_new.patch ... Passed
    hook-fglrx ... Passed
    ati_make.sh ... Passed
    makefile_compat.patch ... Passed
    catalyst-hook.service ... Passed
    3.5-do_mmap.patch ... Passed
    arch-fglrx-3.7.patch ... Passed
    arch-fglrx-3.8.patch ... Passed
    gentoo_linux-3.10-proc.diff ... Passed
    foutrelis_3.10_fix_for_legacy.patch ... Passed
    lano1106_fglrx_intel_iommu.patch ... Passed
    lano1106_kcl_agp_13_4.patch ... Passed
    arch_3.13_kernel_acpi_node.patch ... Passed
    cold-fglrx-3.14-current_euid.patch ... Passed
    fglrx_gpl_symbol.patch ... Passed
    ==> Extracting sources...
    -> Extracting amd-driver-installer-catalyst-13.1-legacy-linux-x86.x86_64.zip with bsdtar
    ==> Starting build()...
    Creating directory archive_files
    Verifying archive integrity... All good.
    Uncompressing AMD Catalyst(TM) Proprietary Driver-8.97.100.7....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
    ==> Entering fakeroot environment...
    ==> WARNING: x86_64 system detected
    ==> WARNING: [multilib] repository must be uncommented in /etc/pacman.conf to add lib32-catalyst-utils into the package
    ==> WARNING: OK, lib32-catalyst-utils will be added to the package
    ==> Starting package()...
    patching file etc/ati/authatieventsd.sh
    patching file common/lib/modules/fglrx/build_mod/2.6.x/Makefile
    Hunk #1 succeeded at 68 (offset 2 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 2136 (offset 30 lines).
    Hunk #2 succeeded at 2153 (offset 30 lines).
    Hunk #3 succeeded at 2170 (offset 30 lines).
    Hunk #4 succeeded at 2183 (offset 30 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 3710 (offset -182 lines).
    Hunk #2 succeeded at 3744 (offset -182 lines).
    Hunk #3 succeeded at 3767 (offset -182 lines).
    Hunk #4 succeeded at 3780 (offset -182 lines).
    Hunk #5 succeeded at 3826 (offset -182 lines).
    Hunk #6 succeeded at 3865 (offset -182 lines).
    Hunk #7 succeeded at 3883 (offset -182 lines).
    Hunk #8 succeeded at 3908 (offset -182 lines).
    patching file common/lib/modules/fglrx/build_mod/kcl_acpi.c
    patching file common/lib/modules/fglrx/build_mod/drmP.h
    patching file common/lib/modules/fglrx/build_mod/drm_proc.h
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 571 (offset -12 lines).
    Hunk #2 succeeded at 861 (offset -12 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    patch unexpectedly ends in middle of line
    Hunk #1 succeeded at 34 with fuzz 1.
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 97 with fuzz 2 (offset 4 lines).
    patching file common/lib/modules/fglrx/build_mod/kcl_agp.c
    patching file common/lib/modules/fglrx/build_mod/kcl_acpi.c
    Hunk #1 succeeded at 775 (offset -3 lines).
    patching file common/lib/modules/fglrx/build_mod/firegl_public.c
    Hunk #1 succeeded at 1756 with fuzz 2 (offset -5 lines).
    ==> Tidying install...
    -> Purging unwanted files...
    -> Compressing man and info pages...
    ==> Creating package "catalyst-total-hd234k"...
    -> Generating .PKGINFO file...
    -> Adding install file...
    -> Generating .MTREE file...
    -> Compressing package...
    ==> Leaving fakeroot environment.
    ==> Finished making: catalyst-total-hd234k 13.1-29 (mié ene 7 22:44:01 CST 2015)
    ==> Continue installing catalyst-total-hd234k ? [Y/n]
    ==> [v]iew package contents [c]heck package with namcap
    ==> ---------------------------------------------------
    ==> Y
    [sudo] password for mario:
    [sudo] password for mario:
    loading packages...
    resolving dependencies...
    looking for conflicting packages...
    :: catalyst-total-hd234k and mesa-libgl are in conflict (libgl). Remove mesa-libgl? [y/N] Y
    :: catalyst-total-hd234k and libcl are in conflict. Remove libcl? [y/N] Y
    :: catalyst-total-hd234k and lib32-mesa-libgl are in conflict (lib32-libgl). Remove lib32-mesa-libgl? [y/N] Y
    :: catalyst-total-hd234k and lib32-libcl are in conflict. Remove lib32-libcl? [y/N] Y
    Packages (5) lib32-libcl-1.1-1 [removal] lib32-mesa-libgl-10.4.1-1 [removal] libcl-1.1-4 [removal] mesa-libgl-10.4.1-1 [removal] catalyst-total-hd234k-13.1-29
    Total Installed Size: 222.80 MiB
    Net Upgrade Size: 222.68 MiB
    :: Proceed with installation? [Y/n] Y
    (1/1) checking keys in keyring [############################################################] 100%
    (1/1) checking package integrity [############################################################] 100%
    (1/1) loading package files [############################################################] 100%
    (1/1) checking for file conflicts [############################################################] 100%
    (5/5) checking available disk space [############################################################] 100%
    (1/4) removing lib32-libcl [############################################################] 100%
    (2/4) removing lib32-mesa-libgl [############################################################] 100%
    (3/4) removing libcl [############################################################] 100%
    (4/4) removing mesa-libgl [############################################################] 100%
    (1/1) installing catalyst-total-hd234k [############################################################] 100%
    Building fglrx module for 3.17.6-1-ARCH kernel ...
    Ok.
    Add nomodeset to your kernel line in /boot/grub/menu.lst , ie.:
    kernel /boot/vmlinuz-linux root=/dev/sda1 ro nomodeset
    You can use the tool 'aticonfig' to generate an xorg.conf file.
    --------------------- ^^^^^^^^^ --------------------------------
    fglrx was added into /etc/modules-load.d/catalyst.conf
    atieventsd (needs acpid pkg) on systemd:
    systemctl enable atieventsd
    systemctl start atieventsd
    For more info and troubleshooting visit:
    http://wiki.archlinux.org/index.php/ATI_Catalyst
    ATTENTION!
    To enable 'automatic re-compilation while system shutdown/reboot'
    testing feature run these commands as root:
    systemctl enable catalyst-hook
    systemctl start catalyst-hook
    More info here:
    https://bbs.archlinux.org/viewtopic.php?pid=1255575#p1255575
    Optional dependencies for catalyst-total-hd234k
    qt4: to run ATi Catalyst Control Center (amdcccle) [installed]
    libxxf86vm: to run ATi Catalyst Control Center (amdcccle) [installed]
    opencl-headers: headers necessary for OpenCL development
    acpid: acpi event support / atieventsd [installed]
    linux-lts-headers: to build the fglrx module for the linux-lts kernel
    ==> Checking vote status for catalyst-total-hd234k
    You have already voted for catalyst-total-hd234k
    ==> Packages no longer required by any installed package:
    libepoxy
    - Then, I re-enable catalyst-hook (and optionally atieventsd) to be able to build modules at end and start of pc
    $ sudo systemctl disable catalyst-hook
    Removed symlink /etc/systemd/system/multi-user.target.wants/catalyst-hook.service.
    $ sudo systemctl disable atieventsd
    Removed symlink /etc/systemd/system/multi-user.target.wants/atieventsd.service.
    $ sudo systemctl enable catalyst-hook
    Created symlink from /etc/systemd/system/multi-user.target.wants/catalyst-hook.service to /usr/lib/systemd/system/catalyst-hook.service.
    $ sudo systemctl enable atieventsd
    Created symlink from /etc/systemd/system/multi-user.target.wants/atieventsd.service to /usr/lib/systemd/system/atieventsd.service.
    - Afterwards, I blacklist the radeon module for it not to interfere with fglrx:
    Added "blacklist radeon" on the nano prompt below
    $ sudo nano /etc/modprobe.d/modprobe.conf
    - Then I generate the xorg.conf file, and get the output below with '# aticonfig --initial'
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "Accel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "ColorTiling" # [<bool>]
    #Option "ColorTiling2D" # [<bool>]
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "AccelMethod" # <str>
    #Option "EXAVSync" # [<bool>]
    #Option "EXAPixmaps" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "EnablePageFlip" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    BusID "PCI:1:5:0"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:1:5:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    - Finally I rebuild grub boot to do nomodeset in the kernel
    $ sudo nano /etc/default/grub && sudo grub-mkconfig -o /boot/grub/grub.cfg
    Generating grub configuration file ...
    Found background: /home/mario/Pictures/Wallpapers/974-arch-linux-1366x768-computer-wallpaper.png
    Found linux image: /boot/vmlinuz-linux
    Found initrd image: /boot/initramfs-linux.img
    Found fallback initramfs image: /boot/initramfs-linux-fallback.img
    done
    Then I reboot, only to get to a black screen after the initial dmesg outputs around 10 seconds on boot.
    $ journalctl -xe
    -- Logs begin at lun 2014-12-15 04:28:08 CST, end at mié 2015-01-07 23:07:22 CST. --
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0: [mem 0x100000000-0x13fffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: On node 0 totalpages: 981392
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 64 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 21 pages reserved
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA zone: 3998 pages, LIFO batch:0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA32 zone: 11176 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: DMA32 zone: 715250 pages, LIFO batch:31
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Normal zone: 4096 pages used for memmap
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Normal zone: 262144 pages, LIFO batch:31
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: PM-Timer IO Port: 0x408
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IRQ0 used by override.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: IRQ9 used by override.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Using ACPI (MADT) for SMP configuration information
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: HPET id: 0x43538301 base: 0xfed00000
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: Allowing 4 CPUs, 3 hotplug CPUs
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xaf9f1000-0xafacefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafacf000-0xafbcefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafbcf000-0xafbfefff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafc00000-0xdfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfedfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: e820: [mem 0xafc00000-0xdfffffff] available for PCI devices
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Booting paravirtualized kernel on bare hardware
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82752 r8192 d23744 u524288
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pcpu-alloc: s82752 r8192 d23744 u524288 alloc=1*2097152
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pcpu-alloc: [0] 0 1 2 3
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 966035
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Policy zone: Normal
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet nomodeset
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Checking aperture...
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: No AGP bridge found
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Node 0: aperture [bus addr 0xa4000000-0xa5ffffff] (32MB)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Aperture pointing to e820 RAM. Ignoring.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Your BIOS doesn't leave a aperture memory hole
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Please enable the IOMMU option in the BIOS setup
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: This costs you 64MB of RAM
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Memory: 3717040K/3925568K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 208528K reserved)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Preemptible hierarchical RCU implementation.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU dyntick-idle grace-period acceleration is enabled.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Dump stacks of tasks blocking RCU-preempt GP.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NR_IRQS:8448 nr_irqs:456 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: spurious 8259A interrupt: IRQ7.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Console: colour dummy device 80x25
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: console [tty0] enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: allocated 15728640 bytes of page_cgroup
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: hpet clockevent registered
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: tsc: Fast TSC calibration using PIT
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: tsc: Detected 2394.161 MHz processor
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4790.83 BogoMIPS (lpj=7980536)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pid_max: default: 32768 minimum: 301
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Core revision 20140724
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: All ACPI Tables successfully acquired
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Security Framework initialized
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Yama: becoming mindful.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys memory
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys devices
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys freezer
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys net_cls
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Initializing cgroup subsys blkio
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: mce: CPU supports 6 MCE banks
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: LVT offset 0 assigned for vector 0xf9
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: using AMD E400 aware idle routine
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ftrace: allocating 20687 entries in 81 pages
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: CPU0: AMD V160 Processor (fam: 10, model: 06, stepping: 03)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Performance Events: AMD PMU driver.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... version: 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... bit width: 48
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... generic registers: 4
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... value mask: 0000ffffffffffff
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... max period: 00007fffffffffff
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... fixed-purpose events: 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ... event mask: 000000000000000f
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: System has AMD C1E enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: process: Switch to broadcast mode on CPU0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: x86: Booted up 1 node, 1 CPUs
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: smpboot: Total of 1 processors activated (4790.83 BogoMIPS)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: devtmpfs: initialized
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PM: Registering ACPI NVS region [mem 0xafacf000-0xafbcefff] (1048576 bytes)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: pinctrl core: initialized pinctrl subsystem
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: RTC time: 5:05:23, date: 01/08/15
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: NET: Registered protocol family 16
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: cpuidle: using governor ladder
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: cpuidle: using governor menu
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: io port [0, ffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: TOM: 00000000c0000000 aka 3072M
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [c0000000, cfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d0000000, d41fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4200000, d43fffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4400000, dfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e0000000, e0ffffff] ==> none
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e1000000, febfffff] ==> [f0000000, febfffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [fec00000, fffeffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [ffff0000, ffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: [bus 00-1f] on node 0 link 0
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [io 0x0000-0xffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xf0000000-0xffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: bus: 00 [mem 0x140000000-0xfcffffffff]
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: bus type PCI registered
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: PCI: Using configuration type 1 for base access
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Module Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: No handler for Region [ECRM] (ffff88013b42ca68) [EmbeddedControl] (20140724/evregion-163)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Region EmbeddedControl (ID=3) has no handler (20140724/exfldio-299)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/psparse-536)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Error: Method execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/uteval-103)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Interpreter enabled
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: (supports S0 S3 S4 S5)
    ene 07 23:05:30 HP425-Desktop-A-PC kernel: ACPI: Using IOAPIC for interrupt ro

    (EDIT: The outputs are incorrect. First post has them.)
    The output of Xorg last time I booted up with fglrx:
    $ cat /var/log/Xorg.0.log.old
    [ 18.657]
    X.Org X Server 1.16.3
    Release Date: 2014-12-20
    [ 18.657] X Protocol Version 11, Revision 0
    [ 18.657] Build Operating System: Linux 3.18.1-1-ARCH x86_64
    [ 18.657] Current Operating System: Linux HP425-Desktop-A-PC 3.17.6-1-ARCH #1 SMP PREEMPT Sun Dec 7 23:43:32 UTC 2014 x86_64
    [ 18.657] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet
    [ 18.657] Build Date: 29 December 2014 01:09:58PM
    [ 18.657]
    [ 18.657] Current version of pixman: 0.32.6
    [ 18.657] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 18.657] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.657] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jan 6 17:29:00 2015
    [ 18.657] (==) Using config file: "/etc/X11/xorg.conf"
    [ 18.657] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 18.657] (==) ServerLayout "X.org Configured"
    [ 18.657] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 18.657] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 18.657] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 18.657] (**) |-->Input Device "Mouse0"
    [ 18.657] (**) |-->Input Device "Keyboard0"
    [ 18.657] (==) Automatically adding devices
    [ 18.657] (==) Automatically enabling devices
    [ 18.657] (==) Automatically adding GPU devices
    [ 18.657] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 18.657] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.657] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 18.657] (WW) Disabling Mouse0
    [ 18.657] (WW) Disabling Keyboard0
    [ 18.657] (II) Loader magic: 0x818d80
    [ 18.657] (II) Module ABI versions:
    [ 18.657] X.Org ANSI C Emulation: 0.4
    [ 18.657] X.Org Video Driver: 18.0
    [ 18.657] X.Org XInput driver : 21.0
    [ 18.657] X.Org Server Extension : 8.0
    [ 18.659] (EE) systemd-logind: failed to get session: PID 407 does not belong to any known session
    [ 18.659] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 18.660] (--) PCI:*(0:1:5:0) 1002:9712:103c:1475 rev 0, Mem @ 0xc0000000/268435456, 0xd4300000/65536, 0xd4200000/1048576, I/O @ 0x00005000/256
    [ 18.660] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 18.661] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 18.661] (II) LoadModule: "glx"
    [ 18.661] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 18.662] (II) Module glx: vendor="X.Org Foundation"
    [ 18.662] compiled for 1.16.3, module version = 1.0.0
    [ 18.662] ABI class: X.Org Server Extension, version 8.0
    [ 18.662] (==) AIGLX enabled
    [ 18.662] (II) LoadModule: "fglrx"
    [ 18.662] (WW) Warning, couldn't open module fglrx
    [ 18.662] (II) UnloadModule: "fglrx"
    [ 18.662] (II) Unloading fglrx
    [ 18.663] (EE) Failed to load module "fglrx" (module does not exist, 0)
    [ 18.663] (EE) No drivers available.
    [ 18.663] (EE)
    Fatal server error:
    [ 18.663] (EE) no screens found(EE)
    [ 18.663] (EE)
    Please consult the The X.Org Foundation support
    at [url]http://wiki.x.org[/url]
    for help.
    [ 18.663] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 18.663] (EE)
    The output itself of journalctl -xe
    $ journalctl -xe
    -- Logs begin at Mon 2014-12-15 04:28:08 CST, end at Tue 2015-01-06 17:16:16 CST. --
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 3 base 000100000000 mask FFFFC0000000 write-back
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 4 base 0000FFE00000 mask FFFFFFE00000 write-protect
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 5 base 0000FFF40000 mask FFFFFFFF0000 write-protect
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 6 disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: 7 disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: last_pfn = 0xafc00 max_arch_pfn = 0x400000000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning 1 areas for low memory corruption
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Base memory trampoline at [ffff880000099000] 99000 size 24576
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Using GB pages for direct mapping
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00000000-0x000fffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2b000, 0x01b2bfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2c000, 0x01b2cfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2d000, 0x01b2dfff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x13fe00000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x13fe00000-0x13fffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x13c000000-0x13fdfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x13c000000-0x13fdfffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x100000000-0x13bffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x100000000-0x13bffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0x00100000-0xaf9f0fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00100000-0x001fffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x00200000-0x3fffffff] page 2M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x40000000-0x7fffffff] page 1G
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0x80000000-0xaf7fffff] page 2M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0xaf800000-0xaf9f0fff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: init_memory_mapping: [mem 0xafbff000-0xafbfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [mem 0xafbff000-0xafbfffff] page 4k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: BRK [0x01b2e000, 0x01b2efff] PGTABLE
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RAMDISK: [mem 0x379a0000-0x37cc7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Early table checksum verification disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: RSDP 0x00000000000F2A70 000014 (v00 HPQOEM)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: RSDT 0x00000000AFBFE038 00003C (v01 HPQOEM SLIC-MPC 00000003 01000013)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: FACP 0x00000000AFBFD000 000074 (v01 HPQOEM 307E 00000003 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: DSDT 0x00000000AFBDE000 01B85D (v01 HPQOEM SB700 00000001 INTL 20060912)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: FACS 0x00000000AFB8F000 000040
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: APIC 0x00000000AFBFC000 000084 (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: MCFG 0x00000000AFBFB000 00003C (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: SLIC 0x00000000AFBFA000 000176 (v01 HPQOEM SLIC-MPC 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: HPET 0x00000000AFBDB000 000038 (v01 HPQOEM 307E 00000001 HP 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: SSDT 0x00000000AFBDA000 0001B7 (v01 AMD POWERNOW 00000001 AMD 00000001)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning NUMA topology in Northbridge 24
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: No NUMA configuration found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Faking a node at [mem 0x0000000000000000-0x000000013fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initmem setup node 0 [mem 0x00000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NODE_DATA [mem 0x13fffa000-0x13fffdfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ba00000-ffff88013f5fffff] on node 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Zone ranges:
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA [mem 0x00001000-0x00ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 [mem 0x01000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal [mem 0x100000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Movable zone start for each node
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Early memory node ranges
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x00001000-0x0009efff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x00100000-0xaf9f0fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0xafbff000-0xafbfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0: [mem 0x100000000-0x13fffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: On node 0 totalpages: 981392
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 64 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 21 pages reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA zone: 3998 pages, LIFO batch:0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 zone: 11176 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: DMA32 zone: 715250 pages, LIFO batch:31
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal zone: 4096 pages used for memmap
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Normal zone: 262144 pages, LIFO batch:31
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PM-Timer IO Port: 0x408
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Local APIC address 0xfee00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: IOAPIC[0]: apic_id 4, version 33, address 0xfec00000, GSI 0-23
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IRQ0 used by override.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: IRQ9 used by override.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Using ACPI (MADT) for SMP configuration information
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: HPET id: 0x43538301 base: 0xfed00000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: Allowing 4 CPUs, 3 hotplug CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xaf9f1000-0xafacefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafacf000-0xafbcefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafbcf000-0xafbfefff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xafc00000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfec0ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfedfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffdfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: [mem 0xafc00000-0xdfffffff] available for PCI devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Booting paravirtualized kernel on bare hardware
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PERCPU: Embedded 28 pages/cpu @ffff88013fc00000 s82752 r8192 d23744 u524288
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcpu-alloc: s82752 r8192 d23744 u524288 alloc=1*2097152
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcpu-alloc: [0] 0 1 2 3
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Built 1 zonelists in Node order, mobility grouping on. Total pages: 966035
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Policy zone: Normal
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=8290542b-0457-4fdd-b087-6096554bdcad rw quiet nomodeset
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Checking aperture...
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: No AGP bridge found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Node 0: aperture [bus addr 0x5728000000-0x5729ffffff] (32MB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Aperture beyond 4GB. Ignoring.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Your BIOS doesn't leave a aperture memory hole
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Please enable the IOMMU option in the BIOS setup
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: This costs you 64MB of RAM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Memory: 3717040K/3925568K available (5386K kernel code, 897K rwdata, 1712K rodata, 1136K init, 1176K bss, 208528K reserved)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Preemptible hierarchical RCU implementation.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NR_IRQS:8448 nr_irqs:456 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: spurious 8259A interrupt: IRQ7.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Console: colour dummy device 80x25
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: console [tty0] enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: allocated 15728640 bytes of page_cgroup
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet clockevent registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Fast TSC calibration using PIT
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Detected 2393.931 MHz processor
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.35 BogoMIPS (lpj=7979770)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pid_max: default: 32768 minimum: 301
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Core revision 20140724
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: All ACPI Tables successfully acquired
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Security Framework initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Yama: becoming mindful.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys memory
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys freezer
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys net_cls
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initializing cgroup subsys blkio
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: mce: CPU supports 6 MCE banks
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: LVT offset 0 assigned for vector 0xf9
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: using AMD E400 aware idle routine
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
    Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ftrace: allocating 20687 entries in 81 pages
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: CPU0: AMD V160 Processor (fam: 10, model: 06, stepping: 03)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Performance Events: AMD PMU driver.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... version: 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... bit width: 48
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... generic registers: 4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... value mask: 0000ffffffffffff
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... max period: 00007fffffffffff
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... fixed-purpose events: 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ... event mask: 000000000000000f
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: System has AMD C1E enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: process: Switch to broadcast mode on CPU0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: x86: Booted up 1 node, 1 CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: smpboot: Total of 1 processors activated (4789.35 BogoMIPS)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: devtmpfs: initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Registering ACPI NVS region [mem 0xafacf000-0xafbcefff] (1048576 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pinctrl core: initialized pinctrl subsystem
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: RTC time: 23:15:36, date: 01/06/15
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 16
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cpuidle: using governor ladder
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cpuidle: using governor menu
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: io port [0, ffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM: 00000000c0000000 aka 3072M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Fam 10h mmconf [mem 0xe0000000-0xefffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [c0000000, cfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d0000000, d41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4200000, d43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [d4400000, dfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e0000000, e0ffffff] ==> none
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [e1000000, febfffff] ==> [f0000000, febfffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [fec00000, fffeffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: node 0 link 0: mmio [ffff0000, ffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TOM2: 0000000140000000 aka 5120M
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: [bus 00-1f] on node 0 link 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [io 0x0000-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: bus: 00 [mem 0x140000000-0xfcffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: bus type PCI registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using configuration type 1 for base access
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Module Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: No handler for Region [ECRM] (ffff88013b42ca68) [EmbeddedControl] (20140724/evregion-163)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Region EmbeddedControl (ID=3) has no handler (20140724/exfldio-299)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Method parse/execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/psparse-536)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Error: Method execution failed [\_SB_.PCI0.PB9_.NCRD._STA] (Node ffff88013b42b460), AE_NOT_EXIST (20140724/uteval-103)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Interpreter enabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: (supports S0 S3 S4 S5)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Using IOAPIC for interrupt routing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [APPR] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN0] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN1] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN2] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN3] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Power Resource [PFN4] (off)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: host bridge window expanded to [mem 0xf0000000-0xffffffff]; [mem 0xf0000000-0xfffdffff] ignored
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpi PNP0A03:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000cedff])
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI host bridge to bus 0000:00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:00.0: [1022:9601] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: [103c:9602] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: [1022:9604] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: [1022:9607] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: [1022:9608] type 01 class 0x060400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: [1002:4390] type 00 class 0x01018f
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x10: [io 0x6018-0x601f]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x14: [io 0x6024-0x6027]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x18: [io 0x6010-0x6017]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x1c: [io 0x6020-0x6023]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x20: [io 0x6000-0x600f]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: reg 0x24: [mem 0xd440b000-0xd440b3ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:11.0: set SATA to AHCI mode
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: reg 0x10: [mem 0xd440a000-0xd440afff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: reg 0x10: [mem 0xd4409000-0xd44090ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:12.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: reg 0x10: [mem 0xd4408000-0xd4408fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: reg 0x10: [mem 0xd4407000-0xd44070ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:13.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.0: [1002:4385] type 00 class 0x0c0500
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: [1002:4383] type 00 class 0x040300
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: reg 0x10: [mem 0xd4400000-0xd4403fff 64bit]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.2: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.3: [1002:439d] type 00 class 0x060100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: [1002:4384] type 01 class 0x060401
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.5: [1002:4399] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.5: reg 0x10: [mem 0xd4406000-0xd4406fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.0: [1002:4397] type 00 class 0x0c0310
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.0: reg 0x10: [mem 0xd4405000-0xd4405fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: [1002:4396] type 00 class 0x0c0320
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: reg 0x10: [mem 0xd4404000-0xd44040ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:16.2: PME# supported from D0 D1 D2 D3hot
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: [1002:9712] type 00 class 0x030000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x10: [mem 0xc0000000-0xcfffffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x14: [io 0x5000-0x50ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x18: [mem 0xd4300000-0xd430ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: reg 0x24: [mem 0xd4200000-0xd42fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: [1002:970f] type 00 class 0x040300
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: reg 0x10: [mem 0xd4310000-0xd4313fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.1: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: [10ec:8136] type 00 class 0x020000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x18: [mem 0xd0010000-0xd0010fff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x20: [mem 0xd0000000-0xd000ffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: reg 0x30: [mem 0xfffe0000-0xffffffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: System wakeup disabled by ACPI
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: acpiphp: Slot [1] registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PCI bridge to [bus 03-05]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: [14e4:4727] type 00 class 0x028000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: reg 0x10: [mem 0xd2100000-0xd2103fff 64bit]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:06:00.0: supports D1 D2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PCI bridge to [bus 06]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: bridge window [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: PCI bridge to [bus 07] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c0000-0x000c3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c4000-0x000c7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000c8000-0x000cbfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000dc000-0x000dffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e0000-0x000e3fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e4000-0x000e7fff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000e8000-0x000ebfff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0x000ec000-0x000effff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [mem 0xf0000000-0xffffffff] (subtractive decode)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: on NUMA node 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 11 12 14 15) *0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Enabled 5 GPEs in block 00 to 1F
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI : EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: setting as boot device: PCI:0000:01:05.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vgaarb: bridge control possible 0000:01:05.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: Using ACPI for IRQ routing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: pci_cache_line_size set to 64 bytes
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0xaf9f1000-0xafffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: e820: reserve RAM buffer [mem 0xafc00000-0xafffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: Initializing
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: domain hash size = 128
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NetLabel: unlabeled traffic allowed by default
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Switched to clocksource hpet
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp: PnP ACPI init
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0400-0x04cf] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x04d0-0x04d1] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x04d6] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0680-0x06ff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x077a] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c00-0x0c01] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c14] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c50-0x0c52] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c6c] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0c6f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0cd0-0x0cdb] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0220-0x0227] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0260-0x0273] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0800] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0804] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x087f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0cdc-0x0cdf] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0b00-0x0b0f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0b20-0x0b3f] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: [io 0x0200-0x027f] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x00000000-0x0009ffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x000ec000-0x000fffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0x00100000-0xbfffffff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfeb00000-0xfeb00fff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfec00000-0xfec00fff] could not be reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xfee00000-0xfee00fff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: [mem 0xffe00000-0xffffffff] has been reserved
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c01 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp 00:04: Plug and Play ACPI device, IDs SYN0177 SYN0100 SYN0002 PNP0f13 (active)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pnp: PnP ACPI: found 5 devices
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: can't claim BAR 6 [mem 0xfffe0000-0xffffffff pref]: no compatible bridge window
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:02:00.0: BAR 6: assigned [mem 0xd3200000-0xd321ffff pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: PCI bridge to [bus 02]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:04.0: bridge window [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: PCI bridge to [bus 03-05]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:07.0: bridge window [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: PCI bridge to [bus 06]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:09.0: bridge window [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: PCI bridge to [bus 07]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:14.4: bridge window [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 18 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:00: resource 19 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 0 [io 0x5000-0x5fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 1 [mem 0xd4200000-0xd43fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 0 [io 0x3000-0x4fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 1 [mem 0xd3200000-0xd41fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:02: resource 2 [mem 0xd0000000-0xd10fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 1 [mem 0xd2200000-0xd31fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:03: resource 2 [mem 0xd1100000-0xd20fffff 64bit pref]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:06: resource 1 [mem 0xd2100000-0xd21fffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 0 [io 0x1000-0x1fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 5 [io 0x0d00-0xffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 7 [mem 0x000c0000-0x000c3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 8 [mem 0x000c4000-0x000c7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 9 [mem 0x000c8000-0x000cbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 10 [mem 0x000d0000-0x000d3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 11 [mem 0x000d4000-0x000d7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 12 [mem 0x000d8000-0x000dbfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 13 [mem 0x000dc000-0x000dffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 14 [mem 0x000e0000-0x000e3fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 15 [mem 0x000e4000-0x000e7fff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 16 [mem 0x000e8000-0x000ebfff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 17 [mem 0x000ec000-0x000effff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 18 [mem 0xc0000000-0xdfffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_bus 0000:07: resource 19 [mem 0xf0000000-0xffffffff]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: Hash tables configured (established 32768 bind 32768)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: reno registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI: CLS mismatch (64 != 32), using 64 bytes
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci 0000:01:05.0: Video device with shadowed ROM
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Unpacking initramfs...
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing initrd memory: 3232K (ffff8800379a0000 - ffff880037cc8000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: Disabling AGP.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: aperture base @ a4000000 size 65536 KB
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: using GART IOMMU.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: microcode: CPU0: patch_level=0x010000c8
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: LVT offset 1 assigned for vector 0x400
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: IBS: LVT offset 1 assigned
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: perf: AMD IBS detected (0x0000001f)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Scanning for low memory corruption every 60 seconds
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Initialise system trusted keyring
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: zpool: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: zbud: loaded
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: VFS: Disk quotas dquot_6.5.2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: msgmni has been set to 7394
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Key type big_key registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler noop registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler deadline registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: io scheduler cfq registered (default)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:04.0: irq 24 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:07.0: irq 25 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pcieport 0000:00:09.0: irq 26 for MSI/MSI-X
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: mode is 1366x768x32, linelength=5504, pages=0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: scrolling: redraw
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010780000, using 4160k, total 4160k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Console: switching to colour frame buffer device 170x48
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: fb0: VESA VGA frame buffer device
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: GHES: HEST is not enabled!
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hpet_acpi_add: no address or irqs in _CRS
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Linux agpgart interface v0.103
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: RTC can wake from S4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: alarms up to one day, 114 bytes nvram, hpet irqs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ledtrig-cpu: registered to indicate activity on CPUs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: TCP: cubic registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 10
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: NET: Registered protocol family 17
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Loading compiled-in X.509 certificates
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: registered taskstats version 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Magic number: 15:578:301
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tty tty30: hash matches
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: rtc_cmos 00:02: setting system clock to 2015-01-06 23:15:37 UTC (1420586137)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: PM: Hibernation image not present or could not be loaded.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 1136K (ffffffff818e2000 - ffffffff819fe000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Write protecting the kernel read-only data: 8192k
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 748K (ffff880001545000 - ffff880001600000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Freeing unused kernel memory: 336K (ffff8800017ac000 - ffff880001800000)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: random: systemd-tmpfile urandom read with 4 bits of entropy available
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: i8042: Detected active multiplexing controller, rev 1.1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX0 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX1 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX2 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: serio: i8042 AUX3 port at 0x60,0x64 irq 12
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: bus type USB registered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new interface driver usbfs
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new interface driver hub
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: SCSI subsystem initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usbcore: registered new device driver usb
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci: OHCI PCI platform driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: QUIRK: Enable AMD PLL fix
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:12.0: irq 18, io mem 0xd440a000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci: EHCI PCI platform driver
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: libata version 3.00 loaded.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: new USB bus registered, assigned bus number 2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: irq 17, io mem 0xd4409000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:12.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 2-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 2-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 1-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: version 3.0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi host0: ahci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi host1: ahci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1: SATA max UDMA/133 abar m1024@0xd440b000 port 0xd440b100 irq 19
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2: SATA max UDMA/133 abar m1024@0xd440b000 port 0xd440b180 irq 19
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 3
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:13.0: irq 18, io mem 0xd4408000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 4
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: irq 17, io mem 0xd4407000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 4-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 4-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 3-0:1.0: 5 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: EHCI Host Controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: debug port 1
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: irq 17, io mem 0xd4404000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 5-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 5-0:1.0: 4 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 6
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:14.5: irq 18, io mem 0xd4406000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 6-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 6-0:1.0: 2 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: OHCI PCI host controller
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 7
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ohci-pci 0000:00:16.0: irq 18, io mem 0xd4405000
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 7-0:1.0: USB hub found
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: hub 7-0:1.0: 4 ports detected
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usb 2-5: new high-speed USB device number 2 using ehci-pci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: tsc: Refined TSC clocksource calibration: 2394.005 MHz
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: ATA-8: Hitachi HTS545032B9A300, PB3OCA1G, max UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata1.00: configured for UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54503 CA1G PQ: 0 ANSI: 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2.00: ATAPI: hp DVDRAM GT30L, mP06, max UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ata2.00: configured for UDMA/100
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: scsi 1:0:0:0: CD-ROM hp DVDRAM GT30L mP06 PQ: 0 ANSI: 5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 62x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Write Protect is off
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sda: sda1 sda2
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: usb 3-4: new full-speed USB device number 2 using ohci-pci
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: Switched to clocksource tsc
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: random: nonblocking pool is initialized
    Jan 06 17:15:42 HP425-Desktop-A-PC systemd[1]: Cannot add dependency job for unit atieventsd.service, ignoring: Unit acpid.socket failed to load: No such file or directory.
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: EXT4-fs (sda1): re-mounted. Opts: data=ordered
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Sleep Button [SLPB]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input6
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: ACPI: Lid Switch [LID]
    Jan 06 17:15:42 HP425-Desktop-A-PC kernel: input:

  • Printint XML string using  XSLT mapping

    Hi,
    I'm trying to build a outgoing SOAP message with in XI, my backedn legacy application expect the soap message to be in certain format. It expect the xml request passed in the body of the message as whole xml string. I need to pring the xml something like this, I would appreciate if anyone had implemented something like this before. if you look at the below message I'm enclosing the whole xml string in the data element.
    <data xsi:type="xsd:string"><?xml version="1.0" encoding="UTF-8"?> <crm:schedule_call_request session_id="mid://07060623130210031519@elnk_crm.com" target_system_id="csi_ivr" xmlns:crm="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd" xmlns:xcommon="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd"> <crm:call_parameter global_rules_version_id="" manual_request="true" originating_skillset="TS (DU/BB)|ADSL RETAIL" parameter_version_id="1" transfer_skillset="TSBBDSL...WinELNK"> <crm:call_id>10031519</crm:call_id> <crm:department_name>TS</crm:department_name> <crm:object_type>CASE</crm:object_type> <crm:object_id>73079085</crm:object_id> <crm:call_time>2007-06-07T12:30:01.000-08:00</crm:call_time> <crm:customer_phone_number>6263452656</crm:customer_phone_number> <crm:override_attempts>false</crm:override_attempts> <crm:retry_count>3</crm:retry_count> <crm:call_trigger>3000</crm:call_trigger> <crm:call_time_padding>10</crm:call_time_padding> <crm:override_local_customer_call_hours>false</crm:override_local_customer_call_hours> </crm:call_parameter> </crm:schedule_call_request></data>

    Hi
    thanks for responding. here is the input SOAP message that I was building in the XLT mapping. I was stuck at putting the xml in the data element.
    soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    - <soapenv:Header>
    - <wsa:EndpointReference soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing">
      <wsa:Address xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">https://xmlc-qe.corp.earthlink.net/ws_xmlc/s_router</wsa:Address>
      <wsa:ServiceName wsa:PortName="XMLCollectivePort" xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">wsa:ServiceName</wsa:ServiceName>
      </wsa:EndpointReference>
      <wsa:To soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xsi:type="soapenc:string" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">https://xmlc-qe.corp.earthlink.net/ws_xmlc/queues/csi_queue</wsa:To>
      <wsa:Action soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xsi:type="soapenc:string" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">https://xmlc-qe.corp.earthlink.net/ws_xmlc/action//messaging/put_single</wsa:Action>
      <wsa:MessageID soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xsi:type="soapenc:string" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">07060623130210031519</wsa:MessageID>
    - <wsse:Security soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/07/secext">
    - <wsse:UsernameToken>
      <wsse:Username xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">elnk_crm</wsse:Username>
      <wsse:Password wsse:Type="wsse:PasswordDigest" xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">20UioFa77hI6MLhlc+KPDF95Hx0=</wsse:Password>
      <wsse:Nonce xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">VlX1Jpoq+vkQCQ8af2SaCDP1u9c=</wsse:Nonce>
      <wsu:Created xsi:type="soapenc:string" xmlns:wsu="http://schemas.xmlsoap.org/ws/2002/07/utility" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">2007-06-06T23:13:12Z</wsu:Created>
      </wsse:UsernameToken>
      </wsse:Security>
      </soapenv:Header>
    - <soapenv:Body>
    - <ns1:SubmitRequest soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="SubmitRequest">
      <data xsi:type="xsd:string"><?xml version="1.0" encoding="UTF-8"?> <crm:schedule_call_request session_id="mid://07060623130210031519@elnk_crm.com" target_system_id="csi_ivr" xmlns:crm="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd" xmlns:xcommon="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_crm.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd https://signup.earthlink.net/ws_xmlc/schema/crm/271005/xmlc_common.xsd"> <crm:call_parameter global_rules_version_id="" manual_request="true" originating_skillset="TS (DU/BB)|ADSL RETAIL" parameter_version_id="1" transfer_skillset="TSBBDSL...WinELNK"> <crm:call_id>10031519</crm:call_id> <crm:department_name>TS</crm:department_name> <crm:object_type>CASE</crm:object_type> <crm:object_id>73079085</crm:object_id> <crm:call_time>2007-06-07T12:30:01.000-08:00</crm:call_time> <crm:customer_phone_number>6263452656</crm:customer_phone_number> <crm:override_attempts>false</crm:override_attempts> <crm:retry_count>3</crm:retry_count> <crm:call_trigger>3000</crm:call_trigger> <crm:call_time_padding>10</crm:call_time_padding> <crm:override_local_customer_call_hours>false</crm:override_local_customer_call_hours> </crm:call_parameter> </crm:schedule_call_request></data>
      </ns1:SubmitRequest>
      </soapenv:Body>
      </soapenv:Envelope>

  • JPA One-To-Many Parent-Child Mapping Problem

    I am trying to map an existing legacy Oracle schema that involves a base class table and two subclass tables that are related by a one-to-many relationship which is of a parent-child nature.
    The following exception is generated. Can anybody provide a suggestion to fix the problem?
    Exception [EclipseLink-45] (Eclipse Persistence Services - 2.0.0.v20091127-r5931): org.eclipse.persistence.exceptions.DescriptorException
    Exception Description: Missing mapping for field [BASE_OBJECT.SAMPLE_ID].
    Descriptor: RelationalDescriptor(domain.example.entity.Sample --> [DatabaseTable(BASE_OBJECT), DatabaseTable(SAMPLE)])
    The schema is as follows:
    CREATE TABLE BASE_OBJECT(
    "BASE_OBJECT_ID" INTEGER PRIMARY KEY NOT NULL,
    "NAME" VARCHAR2(128) NOT NULL,
    "DESCRIPTION" CLOB NOT NULL,
    "BASE_OBJECT_KIND" NUMBER(5,0) NOT NULL );
    CREATE TABLE SAMPLE(
    "SAMPLE_ID" INTEGER PRIMARY KEY NOT NULL,
    "SAMPLE_TEXT" VARCHAR2(128) NOT NULL )
    CREATE TABLE SAMPLE_ITEM(
    "SAMPLE_ITEM_ID" INTEGER PRIMARY KEY NOT NULL,
    "SAMPLE_ID" INTEGER NOT NULL,
    "QUANTITY" INTEGER NOT NULL )
    The entities are related as follows:
    SAMPLE.SAMPLE_ID -> BASE_OBJECT.BASE_OBJECT_ID - The PKs that are used to join the sample to the base class
    SAMPLE_ITEM.SAMPLE_ITEM_ID -> BASE_OBJECT.BASE_OBJECT_ID - The PKs that are used to join the sample item to the base class
    SAMPLE_ITEM.SAMPLE_ID -> SAMPLE.SAMPLE_ID - The FK that is used to join the sample item to the sample class as a child of the parent.
    SAMPLE is one to many SAMPLE_ITEM
    The entity classes are as follows:
    @Entity
    @Table( name = "BASE_OBJECT" )
    @Inheritance( strategy = InheritanceType.JOINED )
    @DiscriminatorColumn( name = "BASE_KIND", discriminatorType = DiscriminatorType.INTEGER )
    @DiscriminatorValue( "1" )
    public class BaseObject
    extends SoaEntity
    @Id
    @GeneratedValue( strategy = GenerationType.SEQUENCE, generator = "BaseObjectIdSeqGen" )
    @SequenceGenerator( name = "BaseObjectIdSeqGen", sequenceName = "BASE_OBJECT_PK_SEQ", allocationSize = 1 )
    @Column( name = "BASE_ID" )
    private long baseObjectId = 0;
    @Entity
    @Table( name = "SAMPLE" )
    @PrimaryKeyJoinColumn( name = "SAMPLE_ID" )
    @AttributeOverride(name="baseObjectId", column=@Column(name="SAMPLE_ID"))
    @DiscriminatorValue( "2" )
    public class Sample
    extends BaseObject
    @OneToMany( cascade = CascadeType.ALL )
    @JoinColumn(name="SAMPLE_ID",referencedColumnName="SAMPLE_ID")
    private List<SampleItem> sampleItem = new LinkedList<SampleItem>();
    @Entity
    @Table( name = "SAMPLE_ITEM" )
    @PrimaryKeyJoinColumn( name = "SAMPLE_ITEM_ID" )
    @AttributeOverride(name="baseObjectId", column=@Column(name="SAMPLE_ITEM_ID"))
    @DiscriminatorValue( "3" )
    public class SampleItem
    extends BaseObject
    @Basic( optional = false )
    @Column( name = "SAMPLE_ID" )
    private long sampleId = 0;
    Edited by: Chris-R on Mar 2, 2010 4:45 PM

    Thanks for the thoroughness. There was a mistake in moving the code over for the forum. The field names are correct throughout the original source code.
    BASE_OBJECT_ID is used throughout.
    I suspect the problem lies in the one-to-many sampleItem(s) relationship that is based upon the subclassed item class. (The relationship is actually "sampleItems" in the real code and somehow got changed in the move over.)
    The problem may lie in the mapping of the attribute override in the child class to the referencing of the item class from the parent side of the relationship in the Sample class.
    I further suspect this may be specific to Eclipselink based upon other postings I've seen on the web that have similar problems...
    Any thoughts?
    Edited by: Chris-R on Mar 3, 2010 9:56 AM

  • Key Mapping - Automation

    Hi , I have a following scenario that I want to automate within MDM :
    Vendor data coming from 3 remote systems ( say p-Carrd , Legacy Supply management and Invoice system) .
    1. Have loaded vendor data from all the systems in MDM using import manager .
    2. Have applied rules for match and then merge for likely identical records
    3. Now  I want to see the key mappings for the merged record to determine say what are the source records have been merged into a single record so one way is I could add the id of source systems for this MDM record but that is manual .
    Is there any way to automate this i.e. whenever I merge records and clieck on view key mapping I should have all the source system ids and remote systems appearing .? Key mapping is enabled for main table i.e. Vendor master
    Regards,
    Amit

    Hi Amit,
    first before importing any records, you should add your different source systems to your repository in MDM Console. You can do this in the Admin section. Having done this you can already import your source files for your source system. This step will automatically create a key mapping entry that can be seen in MDM Data Manager. Make sure that you map the actual key field of your record to the destination Remote Key field in your import map. If you now merge records from different source systems in MDM Data Manager, the merge will automatically append the remote keys of the  different systems to your merged record.
    Best regards
    Michael

Maybe you are looking for

  • Purchase order exception message

    Does anyone know what table the exception messages generated via MD04 /MD06 are stored. Thank you

  • XI Installation requires ABAP Engine???

    Hi, We have a big landscape in our organisation.We are planning to install XI (NW 2004s SR2) machine also. Our long term purpose with this installation is to replace the middlewares like Business connector,MQ etc. I want to know that at present,wheth

  • What should be stored in the DB when a special char is saved into the db?

    Hello, We have a 9.2.0.6 DB with charset as UTF8. We are putting the special character 'अ' into the database through a j2ee application. The application stores and displays the special character properly. My question 1) When the special character is

  • Delay - job created by the RAISE EVENT

    It's possible to change the scheduling of a job created by a RAISE EVENT, and instead of executing immediately, to schedule it as +1 minute delay? Thanks! PS: i have to wayt because, after the event, some tables are updated in my program and i have t

  • Previewer size in Reports 2.5

    I have this "beautiful" report completed that when run via R25RUN.EXE userid=user/pass@myinstance parmaform=yes module=myreport.rep ... is displayed in an oddly shaped Previewer (too small). I searched all through the reference book and can find no w