Removing GSF after upgrade to 11.1.1.8

Hi,
We are currently running WebCenter Sites 11.1.1.6 with GSF in our environments. We wish to upgrade to 11.1.1.8.
WCS 11.1.1.8.0 includes vanity URL support. So we want to remove the GSF during this upgrade.
I have following questions -
·         What are the differences between the GST framework and the new web-friendly URL attribute?
·         What are some of the things we need to consider (high level steps) to get this done to eliminate the GST references in our environment?
·         Are there any known risks/issues while removing GSF?
Thanks a ton!

Hi,
PFB answers to your question
GSF has a lot of features, one of them is Vanity URL support. In our implementation, we removed GSF Vanity URL and used OOTB Vanity URL Support and went live 2 months back.
Q1. Differences between GST-Framework and New Friendly URL attribute
Pros of New OOTB Friendly URL
1. GST Framework uses a URLAssembler to implement Friendly URLs, with the new Version it is Productized and does not require any URL Assemblers
2. GST Stores all URLs of the Site in GSTURLRegistry Table, which gets populated using a AssetListener
  OOTB VanityURL does nto need any of these listeners and gets populated into WebReferences Table
3. GST uses the "path" field metadata tab to populate User Defined Vanity URL
   OOTB Vanity URL provides a separate tab called URL on the screen, which allows you user to define a Custom Vanity URL
4. GST limits the number of URLs for an Asset to be 1
   OOTB Vanity URL allows you to create multiple URL for an Asset with different templates
5. GST does not support 301 and 302 redirects
   OOTB Vanity URL supports 301 and 302 redirects
6. Automation of URL generation was not supported by GSF
   OOTB Vanity URL supports Auto Generation of Vanity URLs with predefined functions thta can be applied to asset attributes
Cons of New OOTB Friendly URL
1. GSF has a Custom Servlet Filter that allows users to generate a 404 page from a CSElement which could use an Asset for authorign the page and can be handled by Publishers (This sets a 404 response )
   OOTB Vanity URL returns a blank 404 Page, it does nto sendError and just setsSatusCode to 404, thereby Custom Servlet Filters may be needed to support a Custom 404 Page, but not too difficult to handle
2. GSF honours Asset Start Date and End Date and will throw a 404 until the desired date and time
   OOTB Vanity URL does not support startdate and end date
Q2 What are some of the things we need to consider (high level steps) to get this done to eliminate the GST references in our environment?
1. Note we continued to use Data Access of GSF even after Upgrade, so we did not remove the JAR file from Server, btu if you are not using gsf tld or API then remove the following JAR
( Usually Upgrade would have taken care of this, but good to check and add this JAR if you continue to use Asset API)
Remove gst-*jar from WEB-INF/lib/
2. Delete GST entries from AssetListener_reg table & flush the table
There are three rows in the assetlistener_reg table that need to be deleted.  Use the following command to delete all three.
Delete from assetlistener_reg where listener like 'com.fatwire.gst.foundation%';
Do the following steps to clear the result set cache for the assetlistener_reg table in WCS:
Log into the WCS Admin application
Click the Admin tab
Expand the "System Tools -> Cache Management -> Resultset Cache -> Summary" tree section
Check the checkbox next to the entry "wcs_dbAssetListener_reg" (Note this could change based on schema and db naming conventions but AssetListener_reg table cache needs to be flushed )
Click the "Clear" button near the top of the page.
3. Update futuretense_xcel.ini xcelerate.pageref ( Usually Upgrade would have taken care of this, but good to check )
Previous value: xcelerate.pageref=com.fatwire.gst.foundation.url.WraPageReference
New Value: xcelerate.pageref=com.openmarket.xcelerate.publish.PageRef
4. Remove any References to GSF URL Assembler in ServletRequest.properties ( Usually Upgrade would have taken care of this, but good to check )
5. Change Webserver Rewrites from GSF to Vanity URL
Refer to docs below for full steps
(http://docs.oracle.com/cd/E29542_01/doc.1111/e29636/config_vanity_url.htm#i1093062)
Decide your strategy for Vanity URL and use below Config for Rewrites
Webserver Rewrite
To use Vanity URL with the Web Server a URL, rewrite rule has to be set in the Web Server. The rewrite rule should split the incoming URL into two parts lookuppage and lookuphost. These two parts should be sent to Web Center Sites as shown below
/<contextpath/Sites? lookuppage=<lookuppage>&lookuphost=<lookuphost>
This can be done in one of the two following ways
1) In this case lookuphost matches the Root URL defined in the Web Root. Lookuppage is the remaining part of the incoming URL.
Examples:
(a) Root URL – www.sitedomain.com
Incoming URL - http://www.sitedomain.com/us/custom/products.html
Rewritten URL - “/sites/Sites?lookuppage=/us/custom/products.html&lookuphost=http://www.sitedomain.com”.
mod_rewrite - “RewriteRule ^(.*)$ /sites/Sites?lookuppage=($1)&lookuphost=http://www.sitedomain.com [L]”
(b) Root URL – http://www.sitedomain.com/us/
Incoming URL - http://www.sitedomain.com/us/custom/products.html
Rewritten URL - “/sites/Sites?lookuppage=/custom/products.html&lookuphost=http://www.sitedomain.com/us/”.
mod_rewrite - “RewriteRule ^us(.*)$ /sites/Sites?lookuppage=($1)&lookuphost=http://www.sitedomain.com/us/ [L]”
2) This is simplest of the two. The rewrite rule does not change based on the WebRoot definition. In this case lookuphost is just the domain part of the Root URL defined in the WebRoot. Lookuppage is the remaining part of the incoming URL.
Examples:
(a) Root URL – http://www.sitedomain.com/ . Incoming URL - http://www.sitedomain.com/us/custom/products.html
(b) Root URL – http://www.sitedomain.com/us/ . Incoming URL - http://www.sitedomain.com/us/custom/products.html
For both the scenarios the Rewritten URL and mod-rewrite rule remains the same.
Rewritten URL - “/sites/Sites?lookuppage=/us/custom/products.html&lookuphost=http://www.sitedomain.com/”.
mod_rewrite - “RewriteRule ^(.*)$ /sites/Sites?lookuppage=($1)&lookuphost=http://www.sitedomain.com/ [L]”
Recommendation
We always have our root URL to be  just the domain,as it will be scalable when we start serving multi lingual pages within Sites.
http://www.sitedomain.com
http://m.sitedomain.com
Q3. Any risk with the change
a. We did not hit anything major apart from 404 support
b. You also need to take care of migrating the URL from existing GSFURLRegistry to WebReferences and flush the cache and restart the servers.
Analysing table schema for GSFURLRegistry and WebReferences and map them for each column
other option is setup a urlpattern
${path!=null?path.substring(1):""} and edit and save all assets that have an entry in gSTURLRegistry. This will increase a version on the asset and may err out if an asset is checkedout by publisher.
Post doing EditSave, you need to run the below query for every assettype you did the above operation and flsuh table cache and restart server once done
update webreferences set patternid=0 where patternid!=0 and assettype='<assetype>'
Reach out to me on this thread if you run into issues
Cheers!!

Similar Messages

  • How to remove CS3 after upgrade to CS4

    What is the best way to remove all my CS3 suite after I upgraded to CS4 Suite? Thanks.

    As I no longer require CS3 on my Mac after upgrading to CS4 and waiting for the required plugins to be available I have successfully uninstalled CS3 using the Adobe CS3 Creative Suite uninstaller.
    NOTE: please make a copy of the 'Adobe Unit Types.osax' found Macintosh HD/Library/ScriptingAdditions/Adobe Unit Types.osax
    At home did this without making a backup of the 'Adobe Unit Types.osax', so when I launched Photoshop CS4 it suffered from the "Error: "One or more files in the Adobe Application Support folder.."
    At work I did this with making a copy of 'Adobe Unit Types.osax', place it back after the uninstall of CS3... and presto so far so good.
    for the 'Error: "One or more files in the Adobe Application Support folder... are missing' when you start Photoshop CS4 (Mac OS)" read here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb407726
    sorry if this has already been posted, I could not see this anywhere.

  • How to remove app after upgrade to os 6 on iphone 4s

    I cannot get the apps to show the removal x to get rid of an app after upgradeing to the new os 6 on my iphone 4s

    DELETING APPS
    Touch the app and hold your finger down until all the apps start to jiggle. You will see a circled "x" in the upper left corner. Tap it to delete an app. When done press the Home button.
    You cannot delete any pre-installed iOS app.
    If there is No 'X' on any apps you have Downloaded... then check in Restrictions... Settings > General > Restrictions > Deleting Apps  =  Off / On
    If the app is in iTunes, then you delete the app in iTunes (Select the App and Press Delete on your Keyboard). If you then sync with your iDevice, the app will also be deleted from your iDevice.

  • Remove software after upgrade.

    can I safely remove the original CS5 and LR3 software after the upgrades CS6 and LR4 with I purchased and installed now ?

    Yes, You can remove the CS5 and LR3 and install the CS6 and LR4 , you have keep the serial number handy for CS5 and LR3 while installing the CS6 and LR4.

  • Write-behind cache not removing entries after upgrade to 3.2

    We recently upgraded tangosol.jar and coherence.jar from version 3.0 to version 3.2. After the upgrade, our write-behind caches began consuming all available memory and crashing the JVMs because the entries were not being removed from the cache after being written to the database. We rolled back to the 3.0 jars without making any other modifications and the caches behave as expected. We'd really like to move to 3.2 for the improved network fault tolerance, but we need to resolve this issue first.
    What changes were made in 3.2 with respect to write-behind caches that might cause this issue? I've reviewed our configuration and our code and can't find anything unusual, but I'm not sure what I should be looking for.
    Any ideas?

    I've opened an SR, but I haven't heard back. In the meantime, I've continued digging and I've noticed something strange - in the store() method of our backing map implementation, we take the entry that we just persisted and remove it from the backing map.
    In my small-scale local tests, the size of the map is 1 when we enter store() and is 0 when we leave, as expected. If we process another entry using the 3.0 jars, it's again 1 and then 0. However, it gets more interesting with the 3.2 jars - the size of the map is 1 when we enter store() the first time and 0 when we leave, but if we process another entry, the size is 2 when we enter and 1 when we leave. This pattern continues such that both values increase by 1 every time we process an entry.
    This would imply that we're either removing the entries incorrectly, or they're somehow being reinserted into the map.
    Any ideas?
    Here's the body of our method (with a bunch of sysouts added to the normal logging because this app won't run correctly under a debugger):
            * Store the specified value under the specific key in the underlying
            * store, then remove the specific key from the internal map and hence
            * the cache itself. This method is intended to support both key/value
            * creation and value update for a specific key.
            * @param oKey   key to store the value under
            * @param oValue value to be stored
            * @throws UnsupportedOperationException if this implementation or the
            *                                       underlying store is read-only
            public void store(Object oKey, Object oValue)
                RemoveOnStoreRWBackingMap mapBacking = RemoveOnStoreRWBackingMap.this;
                System.out.println("map storing  " + oKey);
                System.out.println("Size before = " + mapBacking.entrySet().size());
                Iterator entries = mapBacking.entrySet().iterator();
                while (entries.hasNext()) {
                    System.out.println("entry = " + entries.next());   
                String storeClassName = getCacheStore().getClass().getName();
                Logger log = Logger.getLogger(storeClassName);
                log.debug(storeClassName + ": In store method.  Storing " + oKey);
                long cFailuresBefore = getStoreFailures();
                log.debug(storeClassName + ": failures before=" + cFailuresBefore);
                super.store(oKey, oValue);
                long cFailuresAfter = getStoreFailures();
                log.debug(storeClassName + ": failures afer=" + cFailuresAfter);
                if (cFailuresBefore == cFailuresAfter)  {
                    log.debug(storeClassName + ": About to remove");
                    mapBacking = RemoveOnStoreRWBackingMap.this;
                    Converter converter = mapBacking.getContext().getKeyToInternalConverter();
                    System.out.println("removed " + mapBacking.remove(converter.convert(oKey)));
    //                System.out.println("removed " + mapBacking.getInternalCache().remove(converter.convert(oKey)));
                    log.debug(storeClassName + ": Removed");
                Converter converter = RemoveOnStoreRWBackingMap.this.getContext().getKeyFromInternalConverter();
                System.out.println("Size after = " + mapBacking.entrySet().size());
            }

  • After upgrading to 10.7.5 some of my AU plugins can not be validated in Logic pro. (I got error message "Remove property listener". I can not work anymore. What should I do?

    After upgrading to 10.7.5 some of my AU plugins can not be validated in Logic pro. (I got error message "Remove property listener". I can not work anymore. What should I do?
    VIBAC

    I downloaded and installed
    OS X Lion 10.7.5 Supplemental Update
    and that solved my problem completely. (368 AU plugins now works!)

  • Cannot sync iphoto folders after upgrading to mavericks.  syncing caused removal of all photo folders from iPhone

    After upgrading 17" macbook pro/late 2009 to mavericks - runs slow and having syncing issues.  syncs freeze then quit.  folders were removed from devices without my setting that up.  will not add.  all devices are NOT on OS7.  Is this why??

    You and me both! I thought my error (Unknown error (-50) popped up when I thought I'd try out MobileMe, (which, as an aside screwed a LOT of things up). Now I have no idea. I started getting duplicate bookmarks in Safari, and email from all over, and then my photos will no longer sync from iPhoto. I've never had this problem, had my MacBook Pro for three years, my iMac almost a year, iPhone for 2+. APPLE!!! ARE YOU LISTENING??????

  • After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.

  • Removing NFS mounts after upgrade

    In Tiger, I had set up a number of static NFS mounts to a Linux server using NetInfo. After upgrading to Leopard, these static links are no longer working, but the newly created automounts using Directory Utility work fine. I've been trying to remove the old entries using dscl without success. I have a number of entries in /Local/Default/Mounts, eg:
    $ dscl localhost -read /Local/Default/Mounts/doobage:\/home\/michael
    dsAttrTypeNative:type: nfs
    AppleMetaNodeLocation: /Local/Default
    GeneratedUID: B719E4FA-33F7-449A-AD63-0452515F0FF2
    RecordName: doobage:/home/michael
    RecordType: dsRecTypeStandard:Mounts
    VFSLinkDir: /server/michael
    I've tried deleting these using the dscl -delete command, eg:
    $ sudo dscl localhost -delete /Local/Default/Mounts/doobage:\/home\/michael
    Password:
    delete: Invalid Path
    <dscl_cmd> DS Error: -14009 (eDSUnknownNodeName)
    I suspect that I'm simply using the wrong key name, however, there aren't any examples of deletion in the dscl man page. Can someone please point out where I'm going wrong?
    Thanks,
    -Michael

    Try to escape the Slash with a double backslash.
    Message was edited by: sica187

  • How do I remove MobileMe from iPhone Mailboxes after upgrading to iCloud.

    How do I remove MobileMe from iPhone Mailboxes after upgrading to iCloud. I now have both a MobileMe and iCloud mailbox in Mail in iOS5, but in Mail,Contacts, Calendars there is no MobileMe account to delete!

    check this https://discussions.apple.com/message/16371039#16371039

  • Remove Windows partition before or after upgrading to Leopord

    Hi,
    I have been using boot camp beta for some time. A short time ago, the Windows partition became unusable because the partition was too small. It appears the least risky approach would be to restore the disk to a OS X only system then re-install Windows on a larger partition. I have the Leopard upgrade disk. I have also read article 306805 which involves rolling back the computer clock.
    My question is would it be safer to remove the Windows partition before or after upgrading to Leopard?

    Backup and reformat your drive with Leopard. Then install both. You can use Migration Assistant to restore your files and settings.

  • Fix for iPhoto after upgrading to Yosemite

    After upgrading to Yosemite I was unable to open iPhoto. I moved it to Trash (do NOT empty trash after moving it here!!!) - then go to App Store and download iPhoto. You'll want to make sure you then go to your Finder and click on the iPhoto download app in order to complete the download. When you open iPhoto it may say you need to upgrade - go ahead and do so then your photos will appear again with a new icon in your dock (remove the old one since it won't work now - the new icon will look different if you had an older version of iPhoto).
    Hope this helps!

    Ok so here's what you gonna do. (had this problem myself today, and after some fiddling figured out what to do.)
    Find your old iPhoto with a cross through it, right-click it and select 'show package contents'. A folder will open. In that folder go to Contents>MacOS and there will be three little things there. Click on the one called 'iPhoto' and terminal will open. Leave terminal open and wait four seconds and VOILA! iPhoto opens. Leave terminal open until you are finished with iPhoto, because if you close terminal, iPhoto will close with it. THX! ENJOY! Hope it works.
    P.S.
    You can close terminal once you close iPhoto. I also suggest backing up your iPhoto library while you can.

  • MacBook Pro drops Wi-Fi connection after upgrading to 10.6.5. Fixed!

    MacBook Pro drops Wi-Fi connection after upgrading to 10.6.5. Airport says no IP is detected then suddenly reconnects?
    This has been a problem I’ve been troubleshooting for the last month. I’m new to the Mac family and have loved my experience up until this point. I was under the impression that mac’s are supposed to be so user friendly that even your grandmother could use one with out having any technical knowledge. I mean I shouldn’t have to be deleting drivers or reformat my mac because of an OS update glitch? (That’s what the guy at the Genius Bar told me to do.) What I refused to succumb to was that I’m really good with computers. I get at least a phone call every other week from someone asking me for tech support. So I’d like to think that nothing I’ve done to the system would have caused this anomaly.
    After numerous attempts of troubleshooting and researching forms I believe I’ve discovered a solutions that seems to be working for me.
    Here are the steps I took to create a consistent connection to my Wi-Fi. I believe it was a combination of all these steps to create success.
    1.) Changed my router to use G Wireless Only. (I’m assuming this removed any unnecessary frequencies to allow G to broadcast stronger?)
    2.) Did a scan on the other networks in my area to find out what channel everyone else was broadcasting on. Copy and past the text below into a terminal window.
    sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resourc es/airport /usr/sbin/airport
    This will allow you to simply type “airport” in the terminal window to execute the command.
    Type airport –s
    This will display all the networks in your area and what channel they are broadcasting on.
    3.) Changed my router to use a channel that no one in my area was using. (This helped to make my network stronger and free of interference.)
    The last steps will help your home network improve but these next steps I believe helped fix any install errors caused maybe by the 10.6.5 update on my mac.
    4.) Boot your Mac into safe mode by holding down the shift key while booting.
    5.) Open System Preferences and Click on Network.
    6.) Click the drop down menu from Locations at the top of the screen. Click edit locations..
    7.) Create a new location by clicking the + and give it a new name.
    8.) Delete the old location by clicking on the old locations name and click the – to remove.
    9.) Reboot
    10.) Open System Preference and click on Network.
    11.) Click on the settings sprocket next to the + and – and click on Set Service Order…
    12.) Drag Airport to the top of the list of devices then click Ok.
    Now this last step is what seemed to eliminate the issue. I hardcoded my IP address to my network. This way my computer will always use the same IP and not have to search.
    13.) Click on Advanced under Network.
    14.) Click on TCP/IP. Click on the drop down for Configure IPv4 and change it to Manually.
    15.) Fill out the fields with your IPv4 Address: 192.168.1.1xx (x=whatever number) Subnet Mask: 255.255.255.0 Router: 192.168.1.1 (All of these settings are pretty standard for most home networks.)
    16.) Click on the drop down for Configure IPv6 and change it to Off.
    17.) Next click on the DNS tab at the top.
    18.) Click the + to add a DNS Record.
    To find your DNS Server open a Terminal window by launching Applications --> Utilities --> Terminal
    Then Type cat /etc/resolv.conf
    (There is a space between cat and /. Without it you’ll get no such file or directory.)
    This should return two addresses. Your ISP’s DNS Servers.
    19.) Add both records to the DNS and click Ok.
    20.) Click Ok then under Network Click Ok.
    21.) Reboot router then Mac
    22.) Fixed my connection issue
    The symptoms I experienced eluded me to believe that something with the DHCP is going into an idle then disconnecting. Before when DHCP was set to automatically assign the network signal would time out then searchers for a new IP resulting in Airport displaying No IP is detected. By setting my IP to a fixed address I still notice a slight drop in bandwidth at moments but because of the assigned IP I never loose connection. I can now stream video, play games, chat all without getting disconnected.
    I believe this fix will work for my home network but I also noticed this issue at work so for each location that I connect for the time being I’ll create each there own location and hardcode the IP address to that network. I’ve been reading that 10.6.6 is coming soon so maybe this will be resolved for good in the next update.
    Let me know if this helps or if you have any questions.
    Best of luck.
    Message was edited by: erockdabass
    Message was edited by: erockdabass

    I have been having the same issue for the last two weeks. No real indication as to why it ever began other than I had turned off my router and Airport Extreme Base Station off for a weekend while I was away from my place.
    iPad, iPhone, iPod Touch, all have no issues at all with my Airport Extreme Base Station. Can stay connected throughout my living room, bathroom, bedroom, no issues whatsoever.
    My 5 month old MacBook Pro 2.66 GHz Core i7 Airport is sometimes perfect, able to connect, DHCP, and browse without issue. Then, for no reason, I won't be able to join my wireless network, or when I can join, I can't pick up an IP address. And then it will connect, pick up and IP, and then it won't browse. No real rhyme or reason to when this will happen, or when it works.
    I thought that it was an issue with my MacBook Pro, but then my sister visited with her brand new MacBook Pro 2.26 Intel Core 2 Duo, and while a month ago she was able to connect, DHCP, and browse without issue, this weekend she had all of the same issues I was having.
    My XBOX 360 and MacBook Pro have absolutely no issues with the wired connection. Only my WAN seems to have this issue.
    Did you ever find anything more to this?

  • [SOLVED] Key characters wrong after upgrade

    Using Sony Vaio Pro after upgrade to 3.11.1-1-ARCH I can only type some keys while holding down "Fn" key. Seems my keymap is incorrect.
    e.g when i type the 'p' key i get '*'. I have to hold 'Fn' key to get the 'p'. But 'd' wont display anything at all when 'Fn' is pressed. Very hard to type
    However:
    arch# localectl status
    System Locale: LANG=en_US.UTF-8
    VC Keymap: us
    X11 Layout: n/a
    It happens at login and also in X. I boot to console (tty1), login then I use
    startx
    to run Fluxbox.
    vconsole.conf
    arch# cat vconsole.conf
    KEYMAP=us
    FONT=Lat2-Terminus16
    Also
    arch# xmodmap -pke
    keycode 8 =
    keycode 9 = Escape NoSymbol Escape
    keycode 10 = 1 exclam 1 exclam
    keycode 11 = 2 at 2 at
    keycode 12 = 3 numbersign 3 numbersign
    keycode 13 = 4 dollar 4 dollar
    keycode 14 = 5 percent 5 percent
    keycode 15 = 6 asciicircum 6 asciicircum
    keycode 16 = 7 ampersand 7 ampersand
    keycode 17 = 8 asterisk 8 asterisk
    keycode 18 = 9 parenleft 9 parenleft
    keycode 19 = 0 parenright 0 parenright
    keycode 20 = minus underscore minus underscore
    keycode 21 = equal plus equal plus
    keycode 22 = BackSpace BackSpace BackSpace BackSpace
    keycode 23 = Tab ISO_Left_Tab Tab ISO_Left_Tab
    keycode 24 = q Q q Q
    keycode 25 = w W w W
    keycode 26 = e E e E
    keycode 27 = r R r R
    keycode 28 = t T t T
    keycode 29 = y Y y Y
    keycode 30 = u U u U
    keycode 31 = i I i I
    keycode 32 = o O o O
    keycode 33 = p P p P
    keycode 34 = bracketleft braceleft bracketleft braceleft
    keycode 35 = bracketright braceright bracketright braceright
    keycode 36 = Return NoSymbol Return
    keycode 37 = Control_L NoSymbol Control_L
    keycode 38 = a A a A
    keycode 39 = s S s S
    keycode 40 = d D d D
    keycode 41 = f F f F
    keycode 42 = g G g G
    keycode 43 = h H h H
    keycode 44 = j J j J
    keycode 45 = k K k K
    keycode 46 = l L l L
    keycode 47 = semicolon colon semicolon colon
    keycode 48 = apostrophe quotedbl apostrophe quotedbl
    keycode 49 = grave asciitilde grave asciitilde
    keycode 50 = Shift_L NoSymbol Shift_L
    keycode 51 = backslash bar backslash bar
    keycode 52 = z Z z Z
    keycode 53 = x X x X
    keycode 54 = c C c C
    keycode 55 = v V v V
    keycode 56 = b B b B
    keycode 57 = n N n N
    keycode 58 = m M m M
    keycode 59 = comma less comma less
    keycode 60 = period greater period greater
    keycode 61 = slash question slash question
    keycode 62 = Shift_R NoSymbol Shift_R
    keycode 63 = KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply KP_Multiply XF86ClearGrab
    keycode 64 = Alt_L Meta_L Alt_L Meta_L
    keycode 65 = space NoSymbol space
    keycode 66 = Caps_Lock NoSymbol Caps_Lock
    keycode 67 = F1 F1 F1 F1 F1 F1 XF86Switch_VT_1
    keycode 68 = F2 F2 F2 F2 F2 F2 XF86Switch_VT_2
    keycode 69 = F3 F3 F3 F3 F3 F3 XF86Switch_VT_3
    keycode 70 = F4 F4 F4 F4 F4 F4 XF86Switch_VT_4
    keycode 71 = F5 F5 F5 F5 F5 F5 XF86Switch_VT_5
    keycode 72 = F6 F6 F6 F6 F6 F6 XF86Switch_VT_6
    keycode 73 = F7 F7 F7 F7 F7 F7 XF86Switch_VT_7
    keycode 74 = F8 F8 F8 F8 F8 F8 XF86Switch_VT_8
    keycode 75 = F9 F9 F9 F9 F9 F9 XF86Switch_VT_9
    keycode 76 = F10 F10 F10 F10 F10 F10 XF86Switch_VT_10
    keycode 77 = Num_Lock NoSymbol Num_Lock
    keycode 78 = Scroll_Lock NoSymbol Scroll_Lock
    keycode 79 = KP_Home KP_7 KP_Home KP_7
    keycode 80 = KP_Up KP_8 KP_Up KP_8
    keycode 81 = KP_Prior KP_9 KP_Prior KP_9
    keycode 82 = KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract KP_Subtract XF86Prev_VMode
    keycode 83 = KP_Left KP_4 KP_Left KP_4
    keycode 84 = KP_Begin KP_5 KP_Begin KP_5
    keycode 85 = KP_Right KP_6 KP_Right KP_6
    keycode 86 = KP_Add KP_Add KP_Add KP_Add KP_Add KP_Add XF86Next_VMode
    keycode 87 = KP_End KP_1 KP_End KP_1
    keycode 88 = KP_Down KP_2 KP_Down KP_2
    keycode 89 = KP_Next KP_3 KP_Next KP_3
    keycode 90 = KP_Insert KP_0 KP_Insert KP_0
    keycode 91 = KP_Delete KP_Decimal KP_Delete KP_Decimal
    keycode 92 = ISO_Level3_Shift NoSymbol ISO_Level3_Shift
    keycode 93 =
    keycode 94 = less greater less greater bar brokenbar bar
    keycode 95 = F11 F11 F11 F11 F11 F11 XF86Switch_VT_11
    keycode 96 = F12 F12 F12 F12 F12 F12 XF86Switch_VT_12
    keycode 97 =
    keycode 98 = Katakana NoSymbol Katakana
    keycode 99 = Hiragana NoSymbol Hiragana
    keycode 100 = Henkan_Mode NoSymbol Henkan_Mode
    keycode 101 = Hiragana_Katakana NoSymbol Hiragana_Katakana
    keycode 102 = Muhenkan NoSymbol Muhenkan
    keycode 103 =
    keycode 104 = KP_Enter NoSymbol KP_Enter
    keycode 105 = Control_R NoSymbol Control_R
    keycode 106 = KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide KP_Divide XF86Ungrab
    keycode 107 = Print Sys_Req Print Sys_Req
    keycode 108 = Alt_R Meta_R Alt_R Meta_R
    keycode 109 = Linefeed NoSymbol Linefeed
    keycode 110 = Home NoSymbol Home
    keycode 111 = Up NoSymbol Up
    keycode 112 = Prior NoSymbol Prior
    keycode 113 = Left NoSymbol Left
    keycode 114 = Right NoSymbol Right
    keycode 115 = End NoSymbol End
    keycode 116 = Down NoSymbol Down
    keycode 117 = Next NoSymbol Next
    keycode 118 = Insert NoSymbol Insert
    keycode 119 = Delete NoSymbol Delete
    keycode 120 =
    keycode 121 = XF86AudioMute NoSymbol XF86AudioMute
    keycode 122 = XF86AudioLowerVolume NoSymbol XF86AudioLowerVolume
    keycode 123 = XF86AudioRaiseVolume NoSymbol XF86AudioRaiseVolume
    keycode 124 = XF86PowerOff NoSymbol XF86PowerOff
    keycode 125 = KP_Equal NoSymbol KP_Equal
    keycode 126 = plusminus NoSymbol plusminus
    keycode 127 = Pause Break Pause Break
    keycode 128 = XF86LaunchA NoSymbol XF86LaunchA
    keycode 129 = KP_Decimal KP_Decimal KP_Decimal KP_Decimal
    keycode 130 = Hangul NoSymbol Hangul
    keycode 131 = Hangul_Hanja NoSymbol Hangul_Hanja
    keycode 132 =
    keycode 133 = Super_L NoSymbol Super_L
    keycode 134 = Super_R NoSymbol Super_R
    keycode 135 = Menu NoSymbol Menu
    keycode 136 = Cancel NoSymbol Cancel
    keycode 137 = Redo NoSymbol Redo
    keycode 138 = SunProps NoSymbol SunProps
    keycode 139 = Undo NoSymbol Undo
    keycode 140 = SunFront NoSymbol SunFront
    keycode 141 = XF86Copy NoSymbol XF86Copy
    keycode 142 = XF86Open NoSymbol XF86Open
    keycode 143 = XF86Paste NoSymbol XF86Paste
    keycode 144 = Find NoSymbol Find
    keycode 145 = XF86Cut NoSymbol XF86Cut
    keycode 146 = Help NoSymbol Help
    keycode 147 = XF86MenuKB NoSymbol XF86MenuKB
    keycode 148 = XF86Calculator NoSymbol XF86Calculator
    keycode 149 =
    keycode 150 = XF86Sleep NoSymbol XF86Sleep
    keycode 151 = XF86WakeUp NoSymbol XF86WakeUp
    keycode 152 = XF86Explorer NoSymbol XF86Explorer
    keycode 153 = XF86Send NoSymbol XF86Send
    keycode 154 =
    keycode 155 = XF86Xfer NoSymbol XF86Xfer
    keycode 156 = XF86Launch1 NoSymbol XF86Launch1
    keycode 157 = XF86Launch2 NoSymbol XF86Launch2
    keycode 158 = XF86WWW NoSymbol XF86WWW
    keycode 159 = XF86DOS NoSymbol XF86DOS
    keycode 160 = XF86ScreenSaver NoSymbol XF86ScreenSaver
    keycode 161 =
    keycode 162 = XF86RotateWindows NoSymbol XF86RotateWindows
    keycode 163 = XF86Mail NoSymbol XF86Mail
    keycode 164 = XF86Favorites NoSymbol XF86Favorites
    keycode 165 = XF86MyComputer NoSymbol XF86MyComputer
    keycode 166 = XF86Back NoSymbol XF86Back
    keycode 167 = XF86Forward NoSymbol XF86Forward
    keycode 168 =
    keycode 169 = XF86Eject NoSymbol XF86Eject
    keycode 170 = XF86Eject XF86Eject XF86Eject XF86Eject
    keycode 171 = XF86AudioNext NoSymbol XF86AudioNext
    keycode 172 = XF86AudioPlay XF86AudioPause XF86AudioPlay XF86AudioPause
    keycode 173 = XF86AudioPrev NoSymbol XF86AudioPrev
    keycode 174 = XF86AudioStop XF86Eject XF86AudioStop XF86Eject
    keycode 175 = XF86AudioRecord NoSymbol XF86AudioRecord
    keycode 176 = XF86AudioRewind NoSymbol XF86AudioRewind
    keycode 177 = XF86Phone NoSymbol XF86Phone
    keycode 178 =
    keycode 179 = XF86Tools NoSymbol XF86Tools
    keycode 180 = XF86HomePage NoSymbol XF86HomePage
    keycode 181 = XF86Reload NoSymbol XF86Reload
    keycode 182 = XF86Close NoSymbol XF86Close
    keycode 183 =
    keycode 184 =
    keycode 185 = XF86ScrollUp NoSymbol XF86ScrollUp
    keycode 186 = XF86ScrollDown NoSymbol XF86ScrollDown
    keycode 187 = parenleft NoSymbol parenleft
    keycode 188 = parenright NoSymbol parenright
    keycode 189 = XF86New NoSymbol XF86New
    keycode 190 = Redo NoSymbol Redo
    keycode 191 = XF86Tools NoSymbol XF86Tools
    keycode 192 = XF86Launch5 NoSymbol XF86Launch5
    keycode 193 = XF86Launch6 NoSymbol XF86Launch6
    keycode 194 = XF86Launch7 NoSymbol XF86Launch7
    keycode 195 = XF86Launch8 NoSymbol XF86Launch8
    keycode 196 = XF86Launch9 NoSymbol XF86Launch9
    keycode 197 =
    keycode 198 = XF86AudioMicMute NoSymbol XF86AudioMicMute
    keycode 199 = XF86TouchpadToggle NoSymbol XF86TouchpadToggle
    keycode 200 = XF86TouchpadOn NoSymbol XF86TouchpadOn
    keycode 201 = XF86TouchpadOff NoSymbol XF86TouchpadOff
    keycode 202 =
    keycode 203 = Mode_switch NoSymbol Mode_switch
    keycode 204 = NoSymbol Alt_L NoSymbol Alt_L
    keycode 205 = NoSymbol Meta_L NoSymbol Meta_L
    keycode 206 = NoSymbol Super_L NoSymbol Super_L
    keycode 207 = NoSymbol Hyper_L NoSymbol Hyper_L
    keycode 208 = XF86AudioPlay NoSymbol XF86AudioPlay
    keycode 209 = XF86AudioPause NoSymbol XF86AudioPause
    keycode 210 = XF86Launch3 NoSymbol XF86Launch3
    keycode 211 = XF86Launch4 NoSymbol XF86Launch4
    keycode 212 = XF86LaunchB NoSymbol XF86LaunchB
    keycode 213 = XF86Suspend NoSymbol XF86Suspend
    keycode 214 = XF86Close NoSymbol XF86Close
    keycode 215 = XF86AudioPlay NoSymbol XF86AudioPlay
    keycode 216 = XF86AudioForward NoSymbol XF86AudioForward
    keycode 217 =
    keycode 218 = Print NoSymbol Print
    keycode 219 =
    keycode 220 = XF86WebCam NoSymbol XF86WebCam
    keycode 221 =
    keycode 222 =
    keycode 223 = XF86Mail NoSymbol XF86Mail
    keycode 224 = XF86Messenger NoSymbol XF86Messenger
    keycode 225 = XF86Search NoSymbol XF86Search
    keycode 226 = XF86Go NoSymbol XF86Go
    keycode 227 = XF86Finance NoSymbol XF86Finance
    keycode 228 = XF86Game NoSymbol XF86Game
    keycode 229 = XF86Shop NoSymbol XF86Shop
    keycode 230 =
    keycode 231 = Cancel NoSymbol Cancel
    keycode 232 = XF86MonBrightnessDown NoSymbol XF86MonBrightnessDown
    keycode 233 = XF86MonBrightnessUp NoSymbol XF86MonBrightnessUp
    keycode 234 = XF86AudioMedia NoSymbol XF86AudioMedia
    keycode 235 = XF86Display NoSymbol XF86Display
    keycode 236 = XF86KbdLightOnOff NoSymbol XF86KbdLightOnOff
    keycode 237 = XF86KbdBrightnessDown NoSymbol XF86KbdBrightnessDown
    keycode 238 = XF86KbdBrightnessUp NoSymbol XF86KbdBrightnessUp
    keycode 239 = XF86Send NoSymbol XF86Send
    keycode 240 = XF86Reply NoSymbol XF86Reply
    keycode 241 = XF86MailForward NoSymbol XF86MailForward
    keycode 242 = XF86Save NoSymbol XF86Save
    keycode 243 = XF86Documents NoSymbol XF86Documents
    keycode 244 = XF86Battery NoSymbol XF86Battery
    keycode 245 = XF86Bluetooth NoSymbol XF86Bluetooth
    keycode 246 = XF86WLAN NoSymbol XF86WLAN
    keycode 247 =
    keycode 248 =
    keycode 249 =
    keycode 250 =
    keycode 251 =
    keycode 252 =
    keycode 253 =
    keycode 254 =
    keycode 255 =
    and...
    arch# localectl list-keymaps
    ANSI-dvorak
    amiga-de
    amiga-us
    applkey
    atari-de
    atari-se
    atari-uk-falcon
    atari-us
    azerty
    backspace
    bashkir
    be-latin1
    bg-cp1251
    bg-cp855
    bg_bds-cp1251
    bg_bds-utf8
    bg_pho-cp1251
    bg_pho-utf8
    br-abnt
    br-abnt2
    br-latin1-abnt2
    br-latin1-us
    by
    by-cp1251
    bywin-cp1251
    cf
    colemak
    croat
    ctrl
    cz
    cz-cp1250
    cz-lat2
    cz-lat2-prog
    cz-qwertz
    cz-us-qwertz
    de
    de-latin1
    de-latin1-nodeadkeys
    de-mobii
    de_CH-latin1
    de_alt_UTF-8
    defkeymap
    defkeymap_V1.0
    dk
    dk-latin1
    dvorak
    dvorak-ca-fr
    dvorak-es
    dvorak-fr
    dvorak-fr-bepo
    dvorak-fr-bepo-utf8
    dvorak-l
    Entire dmesg as i wasnt sure what to look for:
    arch# dmesg
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Initializing cgroup subsys cpuacct
    [ 0.000000] Linux version 3.11.1-1-ARCH (tobias@T-POWA-LX) (gcc version 4.8.1 20130725 (prerelease) (GCC) ) #1 SMP PREEMPT Sat Sep 14 19:30:21 CEST 2013
    [ 0.000000] Command line: initrd=\initramfs-linux.img root=/dev/sda2 rw libata.force=noncq
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ca4bcfff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca4bd000-0x00000000ca4c3fff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000ca4c4000-0x00000000ca8e5fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000ca8e6000-0x00000000cac36fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000cac37000-0x00000000da898fff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000da899000-0x00000000dab40fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dab41000-0x00000000dab55fff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000dab56000-0x00000000dbaaafff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000dbaab000-0x00000000dbffefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000dbfff000-0x00000000dbffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000dd000000-0x00000000df1fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] efi: EFI v2.31 by American Megatrends
    [ 0.000000] efi: ACPI=0xdab45000 ACPI 2.0=0xdab45000 SMBIOS=0xdbf50498
    [ 0.000000] efi: mem00: type=7, attr=0xf, range=[0x0000000000000000-0x0000000000058000) (0MB)
    [ 0.000000] efi: mem01: type=0, attr=0xf, range=[0x0000000000058000-0x0000000000059000) (0MB)
    [ 0.000000] efi: mem02: type=2, attr=0xf, range=[0x0000000000059000-0x0000000000060000) (0MB)
    [ 0.000000] efi: mem03: type=7, attr=0xf, range=[0x0000000000060000-0x000000000009e000) (0MB)
    [ 0.000000] efi: mem04: type=0, attr=0xf, range=[0x000000000009e000-0x00000000000a0000) (0MB)
    [ 0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
    [ 0.000000] efi: mem06: type=2, attr=0xf, range=[0x0000000001000000-0x0000000001f4f000) (15MB)
    [ 0.000000] efi: mem07: type=7, attr=0xf, range=[0x0000000001f4f000-0x000000007fd1b000) (2013MB)
    [ 0.000000] efi: mem08: type=2, attr=0xf, range=[0x000000007fd1b000-0x0000000080000000) (2MB)
    [ 0.000000] efi: mem09: type=7, attr=0xf, range=[0x0000000080000000-0x00000000c7c54000) (1148MB)
    [ 0.000000] efi: mem10: type=2, attr=0xf, range=[0x00000000c7c54000-0x00000000c7d54000) (1MB)
    [ 0.000000] efi: mem11: type=7, attr=0xf, range=[0x00000000c7d54000-0x00000000ca0fb000) (35MB)
    [ 0.000000] efi: mem12: type=1, attr=0xf, range=[0x00000000ca0fb000-0x00000000ca4bd000) (3MB)
    [ 0.000000] efi: mem13: type=10, attr=0xf, range=[0x00000000ca4bd000-0x00000000ca4c4000) (0MB)
    [ 0.000000] efi: mem14: type=4, attr=0xf, range=[0x00000000ca4c4000-0x00000000ca610000) (1MB)
    [ 0.000000] efi: mem15: type=3, attr=0xf, range=[0x00000000ca610000-0x00000000ca8a8000) (2MB)
    [ 0.000000] efi: mem16: type=4, attr=0xf, range=[0x00000000ca8a8000-0x00000000ca8c4000) (0MB)
    [ 0.000000] efi: mem17: type=3, attr=0xf, range=[0x00000000ca8c4000-0x00000000ca8de000) (0MB)
    [ 0.000000] efi: mem18: type=4, attr=0xf, range=[0x00000000ca8de000-0x00000000ca8e6000) (0MB)
    [ 0.000000] efi: mem19: type=6, attr=0x800000000000000f, range=[0x00000000ca8e6000-0x00000000cabbe000) (2MB)
    [ 0.000000] efi: mem20: type=0, attr=0xf, range=[0x00000000cabbe000-0x00000000cac37000) (0MB)
    [ 0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000cac37000-0x00000000cac44000) (0MB)
    [ 0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000cac44000-0x00000000cac4e000) (0MB)
    [ 0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000cac4e000-0x00000000cac4f000) (0MB)
    [ 0.000000] efi: mem24: type=7, attr=0xf, range=[0x00000000cac4f000-0x00000000cac50000) (0MB)
    [ 0.000000] efi: mem25: type=2, attr=0xf, range=[0x00000000cac50000-0x00000000cac51000) (0MB)
    [ 0.000000] efi: mem26: type=7, attr=0xf, range=[0x00000000cac51000-0x00000000cac52000) (0MB)
    [ 0.000000] efi: mem27: type=2, attr=0xf, range=[0x00000000cac52000-0x00000000cac53000) (0MB)
    [ 0.000000] efi: mem28: type=7, attr=0xf, range=[0x00000000cac53000-0x00000000d8a97000) (222MB)
    [ 0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000d8a97000-0x00000000d8ab8000) (0MB)
    [ 0.000000] efi: mem30: type=7, attr=0xf, range=[0x00000000d8ab8000-0x00000000d8ac9000) (0MB)
    [ 0.000000] efi: mem31: type=4, attr=0xf, range=[0x00000000d8ac9000-0x00000000d8ad8000) (0MB)
    [ 0.000000] efi: mem32: type=7, attr=0xf, range=[0x00000000d8ad8000-0x00000000d8adf000) (0MB)
    [ 0.000000] efi: mem33: type=4, attr=0xf, range=[0x00000000d8adf000-0x00000000d9bf6000) (17MB)
    [ 0.000000] efi: mem34: type=7, attr=0xf, range=[0x00000000d9bf6000-0x00000000da656000) (10MB)
    [ 0.000000] efi: mem35: type=3, attr=0xf, range=[0x00000000da656000-0x00000000da899000) (2MB)
    [ 0.000000] efi: mem36: type=0, attr=0xf, range=[0x00000000da899000-0x00000000da9ab000) (1MB)
    [ 0.000000] efi: mem37: type=0, attr=0xf, range=[0x00000000da9ab000-0x00000000dab41000) (1MB)
    [ 0.000000] efi: mem38: type=9, attr=0xf, range=[0x00000000dab41000-0x00000000dab45000) (0MB)
    [ 0.000000] efi: mem39: type=9, attr=0xf, range=[0x00000000dab45000-0x00000000dab56000) (0MB)
    [ 0.000000] efi: mem40: type=10, attr=0xf, range=[0x00000000dab56000-0x00000000db20f000) (6MB)
    [ 0.000000] efi: mem41: type=10, attr=0xf, range=[0x00000000db20f000-0x00000000dbaab000) (8MB)
    [ 0.000000] efi: mem42: type=6, attr=0x800000000000000f, range=[0x00000000dbaab000-0x00000000dbe81000) (3MB)
    [ 0.000000] efi: mem43: type=6, attr=0x800000000000000f, range=[0x00000000dbe81000-0x00000000dbf52000) (0MB)
    [ 0.000000] efi: mem44: type=5, attr=0x800000000000000f, range=[0x00000000dbf52000-0x00000000dbf96000) (0MB)
    [ 0.000000] efi: mem45: type=5, attr=0x800000000000000f, range=[0x00000000dbf96000-0x00000000dbfff000) (0MB)
    [ 0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000dbfff000-0x00000000dc000000) (0MB)
    [ 0.000000] efi: mem47: type=7, attr=0xf, range=[0x0000000100000000-0x000000011fe00000) (510MB)
    [ 0.000000] efi: mem48: type=0, attr=0x0, range=[0x00000000dd000000-0x00000000df200000) (34MB)
    [ 0.000000] efi: mem49: type=11, attr=0x8000000000000001, range=[0x00000000f8000000-0x00000000fc000000) (64MB)
    [ 0.000000] efi: mem50: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
    [ 0.000000] efi: mem51: type=11, attr=0x8000000000000001, range=[0x00000000fed00000-0x00000000fed04000) (0MB)
    [ 0.000000] efi: mem52: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
    [ 0.000000] efi: mem53: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
    [ 0.000000] efi: mem54: type=11, attr=0x8000000000000001, range=[0x00000000ff000000-0x0000000100000000) (16MB)
    [ 0.000000] SMBIOS 2.7 present.
    [ 0.000000] DMI: Sony Corporation SVP13213CGB/VAIO, BIOS R0270V7 05/17/2013
    [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-DFFFF uncachable
    [ 0.000000] E0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 0000000000 mask 7F00000000 write-back
    [ 0.000000] 1 base 0100000000 mask 7FE0000000 write-back
    [ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
    [ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable
    [ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable
    [ 0.000000] 5 base 011FE00000 mask 7FFFE00000 uncachable
    [ 0.000000] 6 disabled
    [ 0.000000] 7 disabled
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
    [ 0.000000] e820: last_pfn = 0xdc000 max_arch_pfn = 0x400000000
    [ 0.000000] Scanning 1 areas for low memory corruption
    [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576
    [ 0.000000] Using GB pages for direct mapping
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
    [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
    [ 0.000000] BRK [0x02b2d000, 0x02b2dfff] PGTABLE
    [ 0.000000] BRK [0x02b2e000, 0x02b2efff] PGTABLE
    [ 0.000000] BRK [0x02b2f000, 0x02b2ffff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
    [ 0.000000] [mem 0x11fc00000-0x11fdfffff] page 2M
    [ 0.000000] BRK [0x02b30000, 0x02b30fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fbfffff]
    [ 0.000000] [mem 0x11c000000-0x11fbfffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
    [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
    [ 0.000000] init_memory_mapping: [mem 0x00100000-0xca4bcfff]
    [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
    [ 0.000000] [mem 0x00200000-0x3fffffff] page 2M
    [ 0.000000] [mem 0x40000000-0xbfffffff] page 1G
    [ 0.000000] [mem 0xc0000000-0xca3fffff] page 2M
    [ 0.000000] [mem 0xca400000-0xca4bcfff] page 4k
    [ 0.000000] init_memory_mapping: [mem 0xca4c4000-0xca8e5fff]
    [ 0.000000] [mem 0xca4c4000-0xca5fffff] page 4k
    [ 0.000000] [mem 0xca600000-0xca7fffff] page 2M
    [ 0.000000] [mem 0xca800000-0xca8e5fff] page 4k
    [ 0.000000] BRK [0x02b31000, 0x02b31fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xcac37000-0xda898fff]
    [ 0.000000] [mem 0xcac37000-0xcadfffff] page 4k
    [ 0.000000] [mem 0xcae00000-0xda7fffff] page 2M
    [ 0.000000] [mem 0xda800000-0xda898fff] page 4k
    [ 0.000000] BRK [0x02b32000, 0x02b32fff] PGTABLE
    [ 0.000000] init_memory_mapping: [mem 0xdbfff000-0xdbffffff]
    [ 0.000000] [mem 0xdbfff000-0xdbffffff] page 4k
    [ 0.000000] RAMDISK: [mem 0x7fd1b000-0x7fffffff]
    [ 0.000000] ACPI: RSDP 00000000dab45000 00024 (v02 Sony)
    [ 0.000000] ACPI: XSDT 00000000dab45098 000AC (v01 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: FACP 00000000dab4fa20 0010C (v05 Sony VAIO 20130517 MSFT 00010013)
    [ 0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20130517/tbfadt-202)
    [ 0.000000] ACPI: DSDT 00000000dab451d0 0A84F (v02 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: FACS 00000000dbaa9080 00040
    [ 0.000000] ACPI: APIC 00000000dab4fb30 00072 (v03 Sony VAIO 20130517 MSFT 00010013)
    [ 0.000000] ACPI: FPDT 00000000dab4fba8 00044 (v01 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: MSDM 00000000dab4fbf0 00055 (v03 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: MCFG 00000000dab4fc48 0003C (v01 Sony VAIO 20130517 MSFT 00000097)
    [ 0.000000] ACPI: HPET 00000000dab4fc88 00038 (v01 Sony VAIO 20130517 MSFT 00000005)
    [ 0.000000] ACPI: SSDT 00000000dab4fcc0 00269 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: SSDT 00000000dab4ff30 00379 (v01 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: PCCT 00000000dab502b0 0006E (v05 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000dab50320 00AC4 (v01 Sony VAIO 20130517 INTL 20120711)
    [ 0.000000] ACPI: SSDT 00000000dab50de8 00473 (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab51260 00AD8 (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab51d38 004FC (v01 Sony VAIO 20130517 INTL 20051117)
    [ 0.000000] ACPI: SSDT 00000000dab52238 03019 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: ECDT 00000000dab55258 000C1 (v01 Sony VAIO 20130517 MSFT 00000005)
    [ 0.000000] ACPI: BGRT 00000000dab55320 00038 (v00 Sony VAIO 20130517 AMI 00010013)
    [ 0.000000] ACPI: SSDT 00000000dab55358 006F8 (v01 Sony VAIO 20130517 INTL 20091112)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x11fdfffff]
    [ 0.000000] NODE_DATA [mem 0x11fdf7000-0x11fdfbfff]
    [ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b400000-ffff88011f3fffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x11fdfffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00001000-0x00057fff]
    [ 0.000000] node 0: [mem 0x00059000-0x0009dfff]
    [ 0.000000] node 0: [mem 0x00100000-0xca4bcfff]
    [ 0.000000] node 0: [mem 0xca4c4000-0xca8e5fff]
    [ 0.000000] node 0: [mem 0xcac37000-0xda898fff]
    [ 0.000000] node 0: [mem 0xdbfff000-0xdbffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x11fdfffff]
    [ 0.000000] On node 0 totalpages: 1024734
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 22 pages reserved
    [ 0.000000] DMA zone: 3996 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 13910 pages used for memmap
    [ 0.000000] DMA32 zone: 890178 pages, LIFO batch:31
    [ 0.000000] Normal zone: 2040 pages used for memmap
    [ 0.000000] Normal zone: 130560 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
    [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 56
    [ 0.000000] PM: Registered nosave memory: [mem 0x00058000-0x00058fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca4bd000-0xca4c3fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xca8e6000-0xcac36fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xda899000-0xdab40fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdab41000-0xdab55fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdab56000-0xdbaaafff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdbaab000-0xdbffefff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdc000000-0xdcffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdd000000-0xdf1fffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xdf200000-0xf7ffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
    [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
    [ 0.000000] e820: [mem 0xdf200000-0xf7ffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 29 pages/cpu @ffff88011fa00000 s86528 r8192 d24064 u524288
    [ 0.000000] pcpu-alloc: s86528 r8192 d24064 u524288 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1008698
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: initrd=\initramfs-linux.img root=/dev/sda2 rw libata.force=noncq
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3927780K/4098936K available (5045K kernel code, 795K rwdata, 1696K rodata, 1140K init, 1284K bss, 171156K reserved)
    [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
    [ 0.000000] NR_IRQS:4352 nr_irqs:984 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] tsc: Fast TSC calibration using PIT
    [ 0.003333] tsc: Detected 2294.585 MHz processor
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4591.38 BogoMIPS (lpj=7648616)
    [ 0.000005] pid_max: default: 32768 minimum: 301
    [ 0.000017] init_memory_mapping: [mem 0xca8e6000-0xcabbdfff]
    [ 0.000018] [mem 0xca8e6000-0xcabbdfff] page 4k
    [ 0.000037] init_memory_mapping: [mem 0xdbaab000-0xdbf51fff]
    [ 0.000038] [mem 0xdbaab000-0xdbbfffff] page 4k
    [ 0.000039] [mem 0xdbc00000-0xdbdfffff] page 2M
    [ 0.000040] [mem 0xdbe00000-0xdbf51fff] page 4k
    [ 0.000060] init_memory_mapping: [mem 0xdbf52000-0xdbffefff]
    [ 0.000061] [mem 0xdbf52000-0xdbffefff] page 4k
    [ 0.008960] Security Framework initialized
    [ 0.008966] AppArmor: AppArmor disabled by boot time parameter
    [ 0.008967] Yama: becoming mindful.
    [ 0.009198] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.010017] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.010342] Mount-cache hash table entries: 256
    [ 0.010498] Initializing cgroup subsys memory
    [ 0.010505] Initializing cgroup subsys devices
    [ 0.010507] Initializing cgroup subsys freezer
    [ 0.010508] Initializing cgroup subsys net_cls
    [ 0.010510] Initializing cgroup subsys blkio
    [ 0.010529] CPU: Physical Processor ID: 0
    [ 0.010530] CPU: Processor Core ID: 0
    [ 0.010534] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.011505] mce: CPU supports 7 MCE banks
    [ 0.011517] CPU0: Thermal monitoring enabled (TM1)
    [ 0.011527] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
    Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
    tlb_flushall_shift: 6
    [ 0.011639] Freeing SMP alternatives memory: 20K (ffffffff819e5000 - ffffffff819ea000)
    [ 0.012421] ACPI: Core revision 20130517
    [ 0.021168] ACPI: All ACPI Tables successfully acquired
    [ 0.023936] ftrace: allocating 20088 entries in 79 pages
    [ 0.032450] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.065435] smpboot: CPU0: Intel(R) Core(TM) i5-4200U CPU @ 1.60GHz (fam: 06, model: 45, stepping: 01)
    [ 0.065443] TSC deadline timer enabled
    [ 0.065450] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
    [ 0.065456] ... version: 3
    [ 0.065456] ... bit width: 48
    [ 0.065457] ... generic registers: 4
    [ 0.065458] ... value mask: 0000ffffffffffff
    [ 0.065459] ... max period: 0000ffffffffffff
    [ 0.065460] ... fixed-purpose events: 3
    [ 0.065461] ... event mask: 000000070000000f
    [ 0.103163] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.088893] smpboot: Booting Node 0, Processors #1 #2 #3 OK
    [ 0.145014] Brought up 4 CPUs
    [ 0.145018] smpboot: Total of 4 processors activated (18364.54 BogoMIPS)
    [ 0.148570] devtmpfs: initialized
    [ 0.149427] PM: Registering ACPI NVS region [mem 0xca4bd000-0xca4c3fff] (28672 bytes)
    [ 0.149429] PM: Registering ACPI NVS region [mem 0xdab56000-0xdbaaafff] (16076800 bytes)
    [ 0.150252] RTC time: 14:05:45, date: 09/22/13
    [ 0.150284] NET: Registered protocol family 16
    [ 0.150387] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.150389] ACPI: bus type PCI registered
    [ 0.150390] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
    [ 0.150433] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.150435] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    [ 0.156968] PCI: Using configuration type 1 for base access
    [ 0.157481] bio: create slab <bio-0> at 0
    [ 0.157569] ACPI: Added _OSI(Module Device)
    [ 0.157571] ACPI: Added _OSI(Processor Device)
    [ 0.157572] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.157573] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.159194] ACPI: EC: EC description table is found, configuring boot EC
    [ 0.199540] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.201585] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.202115] ACPI: SSDT 00000000dab35c18 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.202519] ACPI: Dynamic OEM Table Load:
    [ 0.202521] ACPI: SSDT (null) 003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
    [ 0.212083] ACPI: SSDT 00000000dab35618 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.212759] ACPI: Dynamic OEM Table Load:
    [ 0.212761] ACPI: SSDT (null) 005AA (v01 PmRef ApIst 00003000 INTL 20051117)
    [ 0.225212] ACPI: SSDT 00000000dab34d98 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.225792] ACPI: Dynamic OEM Table Load:
    [ 0.225795] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20051117)
    [ 0.239138] ACPI: Interpreter enabled
    [ 0.239149] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130517/hwxface-571)
    [ 0.239156] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130517/hwxface-571)
    [ 0.239179] ACPI: (supports S0 S3 S4 S5)
    [ 0.239181] ACPI: Using IOAPIC for interrupt routing
    [ 0.239214] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.239341] ACPI: No dock devices found.
    [ 0.286805] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.287437] PCI host bridge to bus 0000:00
    [ 0.287441] pci_bus 0000:00: root bus resource [bus 00-3e]
    [ 0.287442] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.287444] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.287445] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.287447] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff]
    [ 0.287448] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff]
    [ 0.287449] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff]
    [ 0.287450] pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff]
    [ 0.287452] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff]
    [ 0.287453] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff]
    [ 0.287454] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff]
    [ 0.287456] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff]
    [ 0.287457] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff]
    [ 0.287464] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
    [ 0.287647] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
    [ 0.287658] pci 0000:00:02.0: reg 0x10: [mem 0xf6400000-0xf67fffff 64bit]
    [ 0.287665] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.287669] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
    [ 0.287842] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
    [ 0.287849] pci 0000:00:03.0: reg 0x10: [mem 0xf7d14000-0xf7d17fff 64bit]
    [ 0.288043] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
    [ 0.288059] pci 0000:00:14.0: reg 0x10: [mem 0xf7d00000-0xf7d0ffff 64bit]
    [ 0.288112] pci 0000:00:14.0: PME# supported from D3hot D3cold
    [ 0.288246] pci 0000:00:14.0: System wakeup disabled by ACPI
    [ 0.288278] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
    [ 0.288297] pci 0000:00:16.0: reg 0x10: [mem 0xf7d1c000-0xf7d1c01f 64bit]
    [ 0.288360] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [ 0.288534] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
    [ 0.288547] pci 0000:00:1b.0: reg 0x10: [mem 0xf7d10000-0xf7d13fff 64bit]
    [ 0.288602] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.288738] pci 0000:00:1b.0: System wakeup disabled by ACPI
    [ 0.288773] pci 0000:00:1c.0: [8086:9c14] type 01 class 0x060400
    [ 0.288841] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.288980] pci 0000:00:1c.0: System wakeup disabled by ACPI
    [ 0.289018] pci 0000:00:1c.3: [8086:9c16] type 01 class 0x060400
    [ 0.289085] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [ 0.289224] pci 0000:00:1c.3: System wakeup disabled by ACPI
    [ 0.289260] pci 0000:00:1c.4: [8086:9c1a] type 01 class 0x060400
    [ 0.289327] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.289466] pci 0000:00:1c.4: System wakeup disabled by ACPI
    [ 0.289502] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
    [ 0.289521] pci 0000:00:1d.0: reg 0x10: [mem 0xf7d1a000-0xf7d1a3ff]
    [ 0.289604] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [ 0.289752] pci 0000:00:1d.0: System wakeup disabled by ACPI
    [ 0.289785] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
    [ 0.290041] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
    [ 0.290053] pci 0000:00:1f.3: reg 0x10: [mem 0xf7d19000-0xf7d190ff 64bit]
    [ 0.290071] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
    [ 0.290331] pci 0000:01:00.0: [8086:08b1] type 00 class 0x028000
    [ 0.290364] pci 0000:01:00.0: reg 0x10: [mem 0xf7c00000-0xf7c01fff 64bit]
    [ 0.290527] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
    [ 0.290564] pci 0000:01:00.0: System wakeup disabled by ACPI
    [ 0.297561] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.297568] pci 0000:00:1c.0: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.297646] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.297650] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
    [ 0.297654] pci 0000:00:1c.3: bridge window [mem 0xf7200000-0xf7bfffff]
    [ 0.297660] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.297794] pci 0000:03:00.0: [144d:a800] type 00 class 0x010601
    [ 0.297864] pci 0000:03:00.0: reg 0x24: [mem 0xf6810000-0xf6811fff]
    [ 0.297880] pci 0000:03:00.0: reg 0x30: [mem 0xf6800000-0xf680ffff pref]
    [ 0.297943] pci 0000:03:00.0: PME# supported from D3hot D3cold
    [ 0.297977] pci 0000:03:00.0: System wakeup disabled by ACPI
    [ 0.304218] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.304222] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.304226] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.304232] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.304349] acpi PNP0A08:00: Requesting ACPI _OSC control (0x1d)
    [ 0.304595] acpi PNP0A08:00: ACPI _OSC control (0x18) granted
    [ 0.318222] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318282] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318340] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318397] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318458] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318514] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318570] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.318625] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.319091] ACPI: Enabled 3 GPEs in block 00 to 7F
    [ 0.319098] ACPI: \_SB_.PCI0: notify handler is installed
    [ 0.319171] Found 1 acpi root devices
    [ 0.319350] ACPI: EC: GPE = 0x7, I/O: command/status = 0x66, data = 0x62
    [ 0.319440] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.319443] vgaarb: loaded
    [ 0.319444] vgaarb: bridge control possible 0000:00:02.0
    [ 0.319481] PCI: Using ACPI for IRQ routing
    [ 0.320737] PCI: pci_cache_line_size set to 64 bytes
    [ 0.320770] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
    [ 0.320772] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
    [ 0.320773] e820: reserve RAM buffer [mem 0xca4bd000-0xcbffffff]
    [ 0.320774] e820: reserve RAM buffer [mem 0xca8e6000-0xcbffffff]
    [ 0.320775] e820: reserve RAM buffer [mem 0xda899000-0xdbffffff]
    [ 0.320777] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
    [ 0.320843] NetLabel: Initializing
    [ 0.320844] NetLabel: domain hash size = 128
    [ 0.320845] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.320858] NetLabel: unlabeled traffic allowed by default
    [ 0.320872] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.320877] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.322892] Switched to clocksource hpet
    [ 0.326442] pnp: PnP ACPI init
    [ 0.326454] ACPI: bus type PNP registered
    [ 0.326556] pnp 00:00: [dma 4]
    [ 0.326576] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.326592] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.326667] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.326759] system 00:03: [io 0x0680-0x069f] has been reserved
    [ 0.326762] system 00:03: [io 0x2008-0x200b] has been reserved
    [ 0.326763] system 00:03: [io 0xffff] has been reserved
    [ 0.326765] system 00:03: [io 0xffff] has been reserved
    [ 0.326766] system 00:03: [io 0x1c00-0x1cfe] has been reserved
    [ 0.326768] system 00:03: [io 0x1d00-0x1dfe] has been reserved
    [ 0.326769] system 00:03: [io 0x1e00-0x1efe] has been reserved
    [ 0.326771] system 00:03: [io 0x1f00-0x1ffe] has been reserved
    [ 0.326772] system 00:03: [io 0x1800-0x18fe] could not be reserved
    [ 0.326774] system 00:03: [io 0x164e-0x164f] has been reserved
    [ 0.326776] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.326799] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.326834] system 00:05: [io 0x1854-0x1857] has been reserved
    [ 0.326836] system 00:05: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.326868] system 00:06: [io 0x04d0-0x04d1] has been reserved
    [ 0.326870] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.326901] pnp 00:07: Plug and Play ACPI device, IDs SNYa009 PNP030b (active)
    [ 0.326934] pnp 00:08: Plug and Play ACPI device, IDs FOX0015 PNP0f13 (active)
    [ 0.340120] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.340123] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.340125] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.340128] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.340130] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.340132] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.340134] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.340137] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.340139] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
    [ 0.340141] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.340144] system 00:09: [mem 0xf7fef000-0xf7feffff] has been reserved
    [ 0.340148] system 00:09: [mem 0xf7ff0000-0xf7ff0fff] has been reserved
    [ 0.340151] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.340409] pnp: PnP ACPI: found 10 devices
    [ 0.340411] ACPI: bus type PNP unregistered
    [ 0.346802] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 01] add_size 1000
    [ 0.346805] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 01] add_size 200000
    [ 0.346818] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.346820] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.346824] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.346826] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.346828] pci 0000:00:1c.0: PCI bridge to [bus 01]
    [ 0.346831] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.346834] pci 0000:00:1c.0: bridge window [mem 0xf7c00000-0xf7cfffff]
    [ 0.346838] pci 0000:00:1c.0: bridge window [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.346842] pci 0000:00:1c.3: PCI bridge to [bus 02]
    [ 0.346844] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
    [ 0.346848] pci 0000:00:1c.3: bridge window [mem 0xf7200000-0xf7bfffff]
    [ 0.346851] pci 0000:00:1c.3: bridge window [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.346855] pci 0000:00:1c.4: PCI bridge to [bus 03]
    [ 0.346857] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
    [ 0.346861] pci 0000:00:1c.4: bridge window [mem 0xf6800000-0xf71fffff]
    [ 0.346864] pci 0000:00:1c.4: bridge window [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.347007] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.347009] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.347011] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.347012] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff]
    [ 0.347013] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff]
    [ 0.347015] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff]
    [ 0.347016] pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff]
    [ 0.347018] pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff]
    [ 0.347019] pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff]
    [ 0.347020] pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff]
    [ 0.347022] pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff]
    [ 0.347023] pci_bus 0000:00: resource 15 [mem 0xdf200000-0xfeafffff]
    [ 0.347025] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    [ 0.347026] pci_bus 0000:01: resource 1 [mem 0xf7c00000-0xf7cfffff]
    [ 0.347027] pci_bus 0000:01: resource 2 [mem 0xdf200000-0xdf3fffff 64bit pref]
    [ 0.347029] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
    [ 0.347030] pci_bus 0000:02: resource 1 [mem 0xf7200000-0xf7bfffff]
    [ 0.347032] pci_bus 0000:02: resource 2 [mem 0xf0a00000-0xf13fffff 64bit pref]
    [ 0.347033] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
    [ 0.347035] pci_bus 0000:03: resource 1 [mem 0xf6800000-0xf71fffff]
    [ 0.347036] pci_bus 0000:03: resource 2 [mem 0xf0000000-0xf09fffff 64bit pref]
    [ 0.347062] NET: Registered protocol family 2
    [ 0.347198] TCP established hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.347284] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
    [ 0.347380] TCP: Hash tables configured (established 32768 bind 32768)
    [ 0.347396] TCP: reno registered
    [ 0.347401] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.347415] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.347462] NET: Registered protocol family 1
    [ 0.347470] pci 0000:00:02.0: Boot video device
    [ 0.347696] PCI: CLS 64 bytes, default 64
    [ 0.347724] Unpacking initramfs...
    [ 0.398164] Freeing initrd memory: 2964K (ffff88007fd1b000 - ffff880080000000)
    [ 0.398168] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.398170] software IO TLB [mem 0xd4a97000-0xd8a97000] (64MB) mapped at [ffff8800d4a97000-ffff8800d8a96fff]
    [ 0.398309] Scanning for low memory corruption every 60 seconds
    [ 0.398505] audit: initializing netlink socket (disabled)
    [ 0.398517] type=2000 audit(1379858745.393:1): initialized
    [ 0.409641] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.410648] zbud: loaded
    [ 0.410763] VFS: Disk quotas dquot_6.5.2
    [ 0.410795] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.410923] msgmni has been set to 7724
    [ 0.411081] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.411107] io scheduler noop registered
    [ 0.411108] io scheduler deadline registered
    [ 0.411129] io scheduler cfq registered (default)
    [ 0.411271] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
    [ 0.411282] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
    [ 0.411352] efifb: probing for efifb
    [ 0.412251] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009900000, using 8100k, total 8100k
    [ 0.412253] efifb: mode is 1920x1080x32, linelength=7680, pages=1
    [ 0.412253] efifb: scrolling: redraw
    [ 0.412255] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.417131] Console: switching to colour frame buffer device 240x67
    [ 0.421936] fb0: EFI VGA frame buffer device
    [ 0.421941] intel_idle: MWAIT substates: 0x11142120
    [ 0.421942] intel_idle: v0.4 model 0x45
    [ 0.421943] intel_idle: lapic_timer_reliable_states 0xffffffff
    [ 0.421982] GHES: HEST is not enabled!
    [ 0.422024] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.422370] Linux agpgart interface v0.103
    [ 0.422422] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    [ 0.424318] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.424339] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.424409] mousedev: PS/2 mouse device common for all mice
    [ 0.424445] rtc_cmos 00:04: RTC can wake from S4
    [ 0.424564] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.424589] rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    [ 0.424699] cpuidle: using governor ladder
    [ 0.424844] cpuidle: using governor menu
    [ 0.424924] drop_monitor: Initializing network drop monitor service
    [ 0.424981] TCP: cubic registered
    [ 0.425053] NET: Registered protocol family 10
    [ 0.425179] NET: Registered protocol family 17
    [ 0.425185] Key type dns_resolver registered
    [ 0.425363] PM: Hibernation image not present or could not be loaded.
    [ 0.425371] registered taskstats version 1
    [ 0.425757] Magic number: 13:668:81
    [ 0.425818] rtc_cmos 00:04: setting system clock to 2013-09-22 14:05:46 UTC (1379858746)
    [ 0.426532] Freeing unused kernel memory: 1140K (ffffffff818c8000 - ffffffff819e5000)
    [ 0.426534] Write protecting the kernel read-only data: 8192k
    [ 0.428631] Freeing unused kernel memory: 1088K (ffff8800024f0000 - ffff880002600000)
    [ 0.429319] Freeing unused kernel memory: 352K (ffff8800027a8000 - ffff880002800000)
    [ 0.435624] systemd-udevd[56]: starting version 207
    [ 0.440408] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.454039] ACPI: bus type USB registered
    [ 0.454095] usbcore: registered new interface driver usbfs
    [ 0.454107] usbcore: registered new interface driver hub
    [ 0.454146] usbcore: registered new device driver usb
    [ 0.455012] SCSI subsystem initialized
    [ 0.455147] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.455323] xhci_hcd 0000:00:14.0: setting latency timer to 64
    [ 0.455328] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.455335] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
    [ 0.455421] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
    [ 0.455426] ehci-pci: EHCI PCI platform driver
    [ 0.455442] xhci_hcd 0000:00:14.0: irq 56 for MSI/MSI-X
    [ 0.455605] xHCI xhci_add_endpoint called for root hub
    [ 0.455607] xHCI xhci_check_bandwidth called for root hub
    [ 0.455643] hub 1-0:1.0: USB hub found
    [ 0.455652] hub 1-0:1.0: 9 ports detected
    [ 0.456254] ACPI: bus type ATA registered
    [ 0.456330] libata version 3.00 loaded.
    [ 0.456831] xhci_hcd 0000:00:14.0: xHCI Host Controller
    [ 0.456837] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
    [ 0.457045] ahci 0000:03:00.0: version 3.0
    [ 0.457057] xHCI xhci_add_endpoint called for root hub
    [ 0.457060] xHCI xhci_check_bandwidth called for root hub
    [ 0.457099] hub 2-0:1.0: USB hub found
    [ 0.457107] hub 2-0:1.0: 4 ports detected
    [ 0.457139] ahci 0000:03:00.0: irq 57 for MSI/MSI-X
    [ 0.469505] ahci 0000:03:00.0: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
    [ 0.469510] ahci 0000:03:00.0: flags: 64bit ncq led clo only pio ccc
    [ 0.469726] scsi0 : ahci
    [ 0.469805] ata1: SATA max UDMA/133 abar m8192@0xf6810000 port 0xf6810100 irq 57
    [ 0.473024] ehci-pci 0000:00:1d.0: setting latency timer to 64
    [ 0.473034] ehci-pci 0000:00:1d.0: EHCI Host Controller
    [ 0.473044] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
    [ 0.473059] ehci-pci 0000:00:1d.0: debug port 2
    [ 0.476969] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
    [ 0.476983] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7d1a000
    [ 0.486211] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [ 0.486436] hub 3-0:1.0: USB hub found
    [ 0.486441] hub 3-0:1.0: 2 ports detected
    [ 0.796062] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
    [ 0.796274] ata1.00: FORCE: horkage modified (noncq)
    [ 0.796343] ata1.00: ATA-9: SAMSUNG MZHPU128HCGM-00000, UXM6401Q, max UDMA/133
    [ 0.796346] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (not used)
    [ 0.801330] ata1.00: configured for UDMA/133
    [ 0.801557] scsi 0:0:0:0: Direct-Access ATA SAMSUNG MZHPU128 UXM6 PQ: 0 ANSI: 5
    [ 0.803137] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [ 0.803287] sd 0:0:0:0: [sda] Write Protect is off
    [ 0.803300] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 0.803399] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 0.805467] sda: sda1 sda2
    [ 0.806019] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 0.815971] usb 1-3: new full-speed USB device number 2 using xhci_hcd
    [ 0.831975] hidraw: raw HID events driver (C) Jiri Kosina
    [ 0.833319] usbcore: registered new interface driver usbhid
    [ 0.833321] usbhid: USB HID core driver
    [ 0.834261] input: eGalax Inc. eGalaxTouch EXC7910-1031-12.00.03 as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input1
    [ 0.834479] hid-multitouch 0003:0EEF:A108.0001: input,hiddev0,hidraw0: USB HID v2.10 Device [eGalax Inc. eGalaxTouch EXC7910-1031-12.00.03] on usb-0000:00:14.0-3/input0
    [ 0.882188] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 0.922934] systemd[1]: RTC configured in localtime, applying delta of 600 minutes to system time.
    [ 0.929364] systemd[1]: systemd 207 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 0.929946] systemd[1]: Set hostname to <arch>.
    [ 0.983808] systemd[1]: Cannot add dependency job for unit display-manager.service, ignoring: Unit display-manager.service failed to load: No such file or directory. See system logs and 'systemctl status display-manager.service' for details.
    [ 0.984035] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 0.984085] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 0.984100] systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device...
    [ 0.984205] systemd[1]: Starting Remote File Systems.
    [ 0.984284] systemd[1]: Reached target Remote File Systems.
    [ 0.984295] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 0.984400] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 0.984410] systemd[1]: Starting LVM2 metadata daemon socket.
    [ 0.984518] systemd[1]: Listening on LVM2 metadata daemon socket.
    [ 0.984527] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 0.984604] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 0.984612] systemd[1]: Starting Delayed Shutdown Socket.
    [ 0.984686] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 0.984711] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 0.984866] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 0.984879] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 0.984908] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 0.984916] systemd[1]: Starting Paths.
    [ 0.984974] systemd[1]: Reached target Paths.
    [ 0.984983] systemd[1]: Starting Encrypted Volumes.
    [ 0.985044] systemd[1]: Reached target Encrypted Volumes.
    [ 0.985054] systemd[1]: Starting udev Kernel Socket.
    [ 0.985125] systemd[1]: Listening on udev Kernel Socket.
    [ 0.985135] systemd[1]: Starting udev Control Socket.
    [ 0.985208] systemd[1]: Listening on udev Control Socket.
    [ 0.985217] systemd[1]: Starting Journal Socket.
    [ 0.985306] systemd[1]: Listening on Journal Socket.
    [ 0.985628] systemd[1]: Starting Apply Kernel Variables...
    [ 0.986092] systemd[1]: Starting udev Coldplug all Devices...
    [ 0.986404] systemd[1]: Mounting Huge Pages File System...
    [ 0.986753] systemd[1]: Mounting POSIX Message Queue File System...
    [ 0.987139] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [ 0.987572] systemd[1]: Mounting Debug File System...
    [ 0.989206] usb 1-5: new high-speed USB device number 3 using xhci_hcd
    [ 0.990670] systemd[1]: Started Set Up Additional Binary Formats.
    [ 0.990699] systemd[1]: Starting Setup Virtual Console...
    [ 0.992974] systemd[1]: Starting Load Kernel Modules...
    [ 0.993344] systemd[1]: Starting Journal Service...
    [ 0.993810] systemd[1]: Started Journal Service.
    [ 1.010288] EXT4-fs (sda2): re-mounted. Opts: data=ordered
    [ 1.013973] systemd-journald[117]: Vacuuming done, freed 0 bytes
    [ 1.026796] cfg80211: Calling CRDA to update world regulatory domain
    [ 1.032563] Intel(R) Wireless WiFi driver for Linux, in-tree:
    [ 1.032566] Copyright(c) 2003-2013 Intel Corporation
    [ 1.032596] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
    [ 1.032669] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
    [ 1.032718] iwlwifi 0000:01:00.0: irq 58 for MSI/MSI-X
    [ 1.038032] iwlwifi 0000:01:00.0: loaded firmware version 22.0.7.0 op_mode iwlmvm
    [ 1.057685] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless N 7260, REV=0x144
    [ 1.057741] iwlwifi 0000:01:00.0: L1 Disabled; Enabling L0S
    [ 1.057886] iwlwifi 0000:01:00.0: L1 Disabled; Enabling L0S
    [ 1.060756] systemd-udevd[149]: starting version 207
    [ 1.094633] input: PC Speaker as /devices/platform/pcspkr/input/input2
    [ 1.095037] ACPI: Requesting acpi_cpufreq
    [ 1.097389] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
    [ 1.100587] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \PMIO 1 (20130517/utaddress-251)
    [ 1.100595] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100599] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 1.100603] ACPI Warning: 0x0000000000001c30-0x0000000000001c3f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 1.100607] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100608] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPRL 1 (20130517/utaddress-251)
    [ 1.100611] ACPI Warning: 0x0000000000001c00-0x0000000000001c2f SystemIO conflicts with Region \GPR_ 2 (20130517/utaddress-251)
    [ 1.100615] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.100616] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 1.102294] ACPI: AC Adapter [ADP1] (on-line)
    [ 1.102298] ACPI Warning: 0x000000000000f040-0x000000000000f05f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130517/utaddress-251)
    [ 1.102305] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 1.105913] mei_me 0000:00:16.0: setting latency timer to 64
    [ 1.105951] mei_me 0000:00:16.0: irq 59 for MSI/MSI-X
    [ 1.112812] [drm] Initialized drm 1.1.0 20060810
    [ 1.115476] snd_hda_intel 0000:00:03.0: enabling device (0000 -> 0002)
    [ 1.115570] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
    [ 1.115697] snd_hda_intel 0000:00:1b.0: irq 60 for MSI/MSI-X
    [ 1.120414] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 1.120620] ACPI: Lid Switch [LID0]
    [ 1.120778] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input4
    [ 1.120784] ACPI: Power Button [PWRB]
    [ 1.121008] sony_laptop: Sony Notebook Control Driver v0.6
    [ 1.121078] input: Sony Vaio Keys as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input5
    [ 1.121108] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/SNY5001:00/input/input6
    [ 1.130280] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input7
    [ 1.130323] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input8
    [ 1.135059] [drm] Memory usable by graphics device = 2048M
    [ 1.135064] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
    [ 1.135066] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
    [ 1.135082] Console: switching to colour dummy device 80x25
    [ 1.136857] i915 0000:00:02.0: setting latency timer to 64
    [ 1.138311] sony_laptop: brightness ignored, must be controlled by ACPI video driver
    [ 1.143666] mei_me 0000:00:16.0: NFC MEI VERSION: IVN 0x1 Vendor ID 0x1 Type 0x1
    [ 1.148840] microcode: CPU0 sig=0x40651, pf=0x40, revision=0xa
    [ 1.171510] i915 0000:00:02.0: irq 61 for MSI/MSI-X
    [ 1.171520] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 1.171521] [drm] Driver supports precise vblank timestamp query.
    [ 1.171591] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 1.172449] usb 3-1: new high-speed USB device number 2 using ehci-pci
    [ 1.177055] iTCO_vendor_support: vendor-support=0
    [ 1.177695] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 1.177735] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
    [ 1.177882] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 1.178341] media: Linux media interface: v0.10
    [ 1.184727] Linux video capture interface: v2.00
    [ 1.186224] ACPI: Battery Slot [BAT0] (battery present)
    [ 1.196551] ACPI: Battery Slot [BAT1] (battery absent)
    [ 1.196702] uvcvideo: Found UVC 1.00 device USB Webcam (0bda:5727)
    [ 1.200296] thermal LNXTHERM:00: registered as thermal_zone0
    [ 1.200301] ACPI: Thermal Zone [TZ00] (47 C)
    [ 1.206849] microcode: CPU1 sig=0x40651, pf=0x40, revision=0xa
    [ 1.208042] input: USB Webcam as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input9
    [ 1.208252] usbcore: registered new interface driver uvcvideo
    [ 1.208255] USB Video Class driver (1.1.1)
    [ 1.208413] nfc: nfc_init: NFC Core ver 0.1
    [ 1.208433] NET: Registered protocol family 39
    [ 1.212998] microcode: CPU2 sig=0x40651, pf=0x40

    bump. Really need some help on this
    Since last post I found and read a number of posts relating to HOOKS. Mr Elendig got me thinking that it wasn't an X issue but a system issue.
    So....
    I put 'keyboard' and 'keymap' hook both before and after 'autodetect' in mkinitcpio.conf and ran
    # mkinitcpio -p linux
    That didn't work.
    I implemented an ~/.Xmodmap file and updated my ~/.Xinitrc according to the wiki.
    That didn't work in Fluxbox.
    I changed keyboard to 'fr' then back to 'us' both in console and in vconsole.conf.
    That didn't work
    BUT THEN.....I added
    FONT_MAP=8859_to_uni
    to my vconsole.conf 'rebooted' and everything worked!! Awesome, right? No.
    Because then I
    # poweroff
    and turned on again and came back to the tty login prompt and the keys were wrong again.
    I removed
    FONT_MAP=8859_to_uni
    from vconsole.conf, rebooted, then put it back in, rebooted and there was no change.
    I then added
    FONT_MAP=8859_to_uni
    to the boot prompt line before booting.
    That didn't work.
    I also read a post where someone created the LiveUSB on a different computer and this was thought to be the cause of some of their problems after they upgraded the 'linux' pacakge using 'pacman'. I created my LiveUSB on a Fedora 19 system. Not sure if that could be the problem.
    Last night I upgraded to Linux 3.11.3-1-ARCH in a hope against hope that would sort things out.
    It didn't
    I'm new to Linux and have learnt a lot through my Arch Linux install which has been great. I really would like to avoid a fresh install using an Arch Linux created LiveUSB but at the moment that's what I'm looking at unless someone can help me out.
    Thanks in advance.

  • Not booting from 10.4.8 volumes after upgrade from 10.4.7

    I'm sorry to report that my aged G4 450 MHz AGP with 4 internal Hard disk drives no longer boots from any of the 2 volumes upgraded to Mac OS X 10.4.8 as soon as it was started from another volume!
    All was working fine as long as 10.4.7 was installed on the 2 232 GB disks connected to the SIIG ATA133 controller. I could boot from any OS on any of the 4 disks, 5 partitions:
    internal ATA66 bus:
    18 GB disk, 2 partitions: 'IBM_18GB' with OS 9.2.2 and TechTool Pro's 'eDrive' with 10.4.7
    71 GB disk, 1 partition 'IBM_71GB' with OS 9.2.2
    PCI SIIG ATA133 controller:
    232 GB disk, one partition 'I1232GB' with 10.4.7, now upgraded to 10.4.8 and no longer bootable
    232 GB disk, one partition 'I2232GB' with 10.4.7, now upgraded to 10.4.8 and no longer bootable
    Now I can only boot from the Mac OS 9.2.2 or the eDrive 10.4.7 partitions.
    What I did so far: 'I2232GB' was my main OS X startup volume, 'I1232GB' contains a clone of it, plus additional folders like software base and backups.
    After upgrading 'I2232GB' to Mac OS X 10.4.8 through Software Update and repairing permissions all was OK as long as the Mac was just shut down or re-started: it always booted up in Mac OS X 10.4.8 from 'I2232GB' without any problems.
    The next day I booted from 'I1232GB' to do the same there.
    Afterwards I could no longer boot in Mac OS X 10.4.8 from 'I2232GB' nor in in Mac OS X 10.4.8 from 'I1232GB': it just gets to the grey screen with the Apple logo, but the round circle underneath indicating some progress never appears. I left it there for hours: it just hangs.
    With the Option key held at startup I could boot from the other partitions with Mac OS 9.2.2 or the eDrive with 10.4.7. None of their Startup Control Panels was able to get me back to 10.2.8!
    So I booted from the TechTool Pro 4.5.1 DVD to Optimize both volumes, 'I1232GB' & 'I2232GB', always Files only.
    Then I booted from the DiskWorrior 3.0.3 CD to rebuild the directories of both volumes, 'I1232GB' & 'I2232GB'.
    Still I can not boot from either 'I1232GB' or 'I2232GB' in Mac OS X 10.2.8!
    Downloaded the Mac OS X 10.2.8 Compo Update (for PPC) and installed it onto both 'I1232GB' & 'I2232GB' while booted from the eDrive which I keep on Mac OS X 10.4.7 - no luck either, still I can not boot from either 'I1232GB' or 'I2232GB' in Mac OS X 10.2.8!
    Then I backed up the users folder from 'I2232GB' onto 'I1232GB', booted from Mac OS 9.2.2 and used Intech's Hard Disk Speedtools 3.6 to format 'I2232GB', afterwards initialized it with Alsoft's Plus Maximizer Extension for a Block Size of 512 Bytes.
    Installed Mac OS X 10.4 from DVD, as well as iLive '06 and upgraded everything to the latest releases with Software Update. All was working fine with all the required reboots until another startup volume was chosen: afterwards again I can no longer boot back into Mac OS X 10.2.8 on the fresch installed 'I2232GB'!
    Any help would be appreciated.
    Here is some information found by System Profiler from Mac OS X 10.4.7, eDrive, let me know if you need more:
    Hardware Overview:
    Machine Name: Power Mac G4 (AGP graphics)
    Machine Model: PowerMac3,1
    CPU Type: PowerPC G4 (2.8)
    Number Of CPUs: 1
    CPU Speed: 450 MHz
    L2 Cache (per CPU): 1 MB
    Memory: 2 GB
    Bus Speed: 100 MHz
    Boot ROM Version: 4.2.8f1
    Serial Number: XA00715VHSF
    Sales Order Number: M7628LL/A
    ATA Bus:
    IBM-DPTA-372050:
    Capacity: 19.12 GB
    Model: IBM-DPTA-372050
    Volumes:
    IBM_18GB:
    Capacity: 13.12 GB
    Available: 6.96 GB
    eDrive:
    Capacity: 6 GB
    Available: 3.03 GB
    IBM-DTLA-307075:
    Capacity: 71.59 GB
    Model: IBM-DTLA-307075
    Volumes:
    IBM_71GB:
    Capacity: 71.59 GB
    Available: 39.65 GB
    ATA Bus:
    PIONEER DVD-RW DVR-107D:
    Model: PIONEER DVD-RW DVR-107D
    Firmware Revision: 1.21
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2000 KB
    IOMEGA ZIP 100 ATAPI:
    Model: IOMEGA ZIP 100 ATAPI
    ACARD,6880M:
    Name: ACARD,6880M
    Type: scsi
    Bus: PCI
    Slot: SLOT-C
    Vendor ID: 0x1191
    Device ID: 0x0009
    Subsystem Vendor ID: 0x1191
    Subsystem ID: 0x0009
    Revision ID: 0x0003
    SCSI Parallel Domain 65536:
    Initiator Identifier: 7
    ATA HDT722525DLAT80:
    Capacity: 232.89 GB
    Manufacturer: ATA
    Model: HDT722525DLAT80
    Revision:
    Removable Media: Yes
    BSD Name: disk2
    OS9 Drivers: Yes
    SCSI Target Identifier: 0
    SCSI Logical Unit Identifier: 0
    S.M.A.R.T. status: Not Supported
    Volumes:
    I1232GB:
    Capacity: 232.89 GB
    Available: 14.1 GB
    Writable: Yes
    File System: HFS+
    BSD Name: disk2s3
    Mount Point: /Volumes/I1232GB
    ATA HDT722525DLAT80:
    Capacity: 232.89 GB
    Manufacturer: ATA
    Model: HDT722525DLAT80
    Revision:
    Removable Media: Yes
    BSD Name: disk3
    OS9 Drivers: Yes
    SCSI Target Identifier: 2
    SCSI Logical Unit Identifier: 0
    S.M.A.R.T. status: Not Supported
    Volumes:
    I2232GB:
    Capacity: 232.89 GB
    Available: 180.11 GB
    Writable: Yes
    File System: Journaled HFS+
    BSD Name: disk3s3
    Mount Point: /Volumes/I2232GB
    The RAM consists of 4 identical modules and is about 1 year old:
    DIMM0/J21 to DIMM3/J24:
    Size: 512 MB
    Type: SDRAM
    Speed: PC133-333
    Status: OK
    Many thanks for your help!
    Josef
    Apple G4 AGP   Mac OS X (10.4.8)   4 internal hard disks, dual layer DVD-RW, 2GB RAM

    What I did so far: 'I2232GB' was my main OS X
    startup volume, 'I1232GB' contains a clone of it,
    plus additional folders like software base and
    backups.
    After upgrading 'I2232GB' to Mac OS X 10.4.8
    through Software Update and repairing permissions all
    was OK as long as the Mac was just shut down or
    re-started: it always booted up in Mac OS X 10.4.8
    from 'I2232GB' without any problems.
    The next day I booted from 'I1232GB' to do the same
    there.
    Afterwards I could no longer boot in Mac OS X 10.4.8
    from 'I2232GB' nor in in Mac OS X 10.4.8 from
    'I1232GB': it just gets to the grey screen with the
    Apple logo, but the round circle underneath
    indicating some progress never appears. I left it
    there for hours: it just hangs.
    With the Option key held at startup I could boot from
    the other partitions with Mac OS 9.2.2 or the eDrive
    with 10.4.7. None of their Startup Control Panels was
    able to get me back to 10.4.8!
    So I booted from the TechTool Pro 4.5.1 DVD to
    Optimize both volumes, 'I1232GB' & 'I2232GB',
    always Files only.
    Then I booted from the DiskWorrior 3.0.3 CD to
    rebuild the directories of both volumes, 'I1232GB'
    & 'I2232GB'.
    Still I can not boot from either 'I1232GB' or
    'I2232GB' in Mac OS X 10.4.8!
    Downloaded the Mac OS X 10.4.8 Compo Update (for PPC)
    and installed it onto both 'I1232GB' & 'I2232GB'
    while booted from the eDrive which I keep on Mac OS X
    10.4.7 - no luck either, still I can not boot from
    either 'I1232GB' or 'I2232GB' in Mac OS X
    10.4.8!
    Then I backed up the users folder from 'I2232GB'
    onto 'I1232GB', booted from Mac OS 9.2.2 and used
    Intech's Hard Disk Speedtools 3.6 to format
    'I2232GB', afterwards initialized it with Alsoft's
    Plus Maximizer Extension for a Block Size of 512
    Bytes.
    Installed Mac OS X 10.4 from DVD, as well as iLive
    '06 and upgraded everything to the latest releases
    with Software Update. All was working fine with all
    the required reboots until another startup volume was
    chosen: afterwards again I can no longer boot back
    into Mac OS X 10.4.8 on the fresch installed
    'I2232GB'!
    I found several typos in above post, wherever it was 10.2.8 it should have read 10.4.8 - I'm very sorry for confusing you, this would not have made sense, but I found no way to edit the existing text therefore I modified the quote of it here.
    I do not need Mac OS X 10.2.8 back, but it would be nice to boot back in Mac OS X 10.4.8 from another volume as the current one - which was working fine before with Mac OS X 10.4.7.
    Many thanks,
    Josef

Maybe you are looking for

  • Using tolerances in SAPF124 - GR/IR Clearing Program

    Hi, Could anyone tell me what all configuration we need to make to use the include tolerances functionality in program SAPF124. I need to know all the configurations I need to make for using this. I am aware that we need to define tolerances in below

  • Error in using IDOC create contract

    Hi experts,                I am using standard IDOC BLAORD03 to create contract,but comes across error 'Enter purchase group' as Purchase group is a mandatory filed,but in my IDOC i have value in EKGRP which is Purchase group,I look into FM IDOC_INPU

  • Problem launching iTunes 10.0... on Vista 64 bit machine

    I have been trying for 2 days to launch Itunes 10; have totally uninstalled all components in the order suggested, i.e itunes, quicktime, applesoftware update, applemobile device support, bonjour, and apple application support.I checked all folders t

  • Software update even though it's updated

    when I launch itunes it tells me to update my software every time even though it is updated and it won't download any of my m4a's to the player. what's going on?

  • Combine PDF Files created in Designer

    In Acro 7, you can combine PDF files into 1 file (Document-Insert). When the PDF is created in Designer, these choices are greyed out. Is there a work around?