How to upgrade a custom built kernel to the main arch linux package?

How do you upgrade from a custom built kernel from the abs to the current release kernel from a package ? I have tried to do pacman -S linux linux-headers linux-firmware but still keep getting the old kernel i built my self.
[root@HLA boot]# pacman -S linux linux-firmware linux-api-headers linux-headers
warning: linux-3.14.6-1 is up to date -- reinstalling
warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
warning: linux-headers-3.14.6-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...
Packages (4): linux-3.14.6-1  linux-api-headers-3.14.1-1
              linux-firmware-20140316.dec41bc-1  linux-headers-3.14.6-1

It says it is reinstalling them. Doesn't it say it ? or am I missing something ? (no I'm not trying to sound sarcastic, honestly)
warning: linux-3.14.6-1 is up to date -- reinstalling
warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
warning: linux-headers-3.14.6-1 is up to date -- reinstalling
Total Installed Size:   167.78 MiB
Net Upgrade Size:       0.00 MiB
[root@HLA boot]# pacman -S linux linux-firmware linux-api-headers linux-headers
warning: linux-3.14.6-1 is up to date -- reinstalling
warning: linux-firmware-20140316.dec41bc-1 is up to date -- reinstalling
warning: linux-api-headers-3.14.1-1 is up to date -- reinstalling
warning: linux-headers-3.14.6-1 is up to date -- reinstalling
resolving dependencies...
looking for inter-conflicts...
Packages (4): linux-3.14.6-1  linux-api-headers-3.14.1-1
              linux-firmware-20140316.dec41bc-1  linux-headers-3.14.6-1
Total Installed Size:   167.78 MiB
Net Upgrade Size:       0.00 MiB
Last edited by dslink (2014-06-22 03:30:28)

Similar Messages

  • How to create a custom function module with the records in SAP R/3?

    Hi All,
    How to create a custom function module with the records in SAP R/3? Using RFC Adapter I have to fetch the custom function module records.
    Regards
    Sara

    Hi
    goto se37...here u need to create a function group... then u need to create a function module. inside assign import/export parameters. assign tables/exceptions. activate the same. now write ur code within the function module
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm
    Look at the below SAP HELP links, These links will show you the way to create a Function Module
    http://help.sap.com/saphelp_nw04/helpdata/en/26/64f623fa8911d386e70000e82011b8/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm

  • Modifying the stock arch linux kernel and kernel timer frequency

    so if i understand correctly, if we want to modify the stock arch linux kernel, we have to pull it off of abs. ie "ABSROOT=. abs core/linux" then modify the pkgbuild, uncommenting out make menuconfig and setting the pkgbase name to something different than stock. ie, "linux-custom" then update the checksums followed by importing the gpg keys, ie "gpg --recv-keys 79BE3E4300411886 and gpg --recv-keys 38DBBDC86092693E" for the kernel and patches. then run makepkg -s.
    we can't just run make menuconfig on the current kernel that's installed?
    and if we pull the linux kernel from abs to customize, does it already come preconfigured with all the arch changes and settings? like its no different than the current one installed?
    i just ask because for the most part, i like the current arch kernel, there are just a few minor things i want to change but kept everything else the same as stock arch linux kernel.
    also, i herd arch uses 300hz for its timer. whats the benefits and disadvantage of using 300hz over 1000hz for a desktop system?

    orlfman wrote:we can't just run make menuconfig on the current kernel that's installed?
    No you can't, because the kernel then has to be compiled so the kernel will run with the different tick rate.
    orlfman wrote:
    and if we pull the linux kernel from abs to customize, does it already come preconfigured with all the arch changes and settings? like its no different than the current one installed?
    i just ask because for the most part, i like the current arch kernel, there are just a few minor things i want to change but kept everything else the same as stock arch linux kernel.
    As I understand it from the Wiki, the ABS pulls the PKGBUILD and other arch-specific sources from the ArchLinux script server. However, I don't use the ABS, but pull the files I need directly from the ArchLinux SVN and build using makepkg[1] after making the necessary changes.
    orlfman wrote:Also, I heard arch uses 300hz for its timer. whats the benefits and disadvantage of using 300hz over 1000hz for a desktop system?
    You're in for a technical discussion here. This has a reasonably friendly discussion on kernel tick rates.
    Basically, higher tick rates = a higher level of timing precision & higher processor load, lower tick rates = lower level of timing precision & lower processor load.
    [1] Technically, I use the clean chroot manager package, which is a wrapper for makechrootpkg (which in turn is a wrapper for running makepkg in a clean chroot if I'm not mistaken).

  • How to add a code TestIfElse(10) to the Main method of the Program.cs class?

    How to add a code  TestIfElse(10) to the Main method of the Program.cs class?
    Here is my code and I have copied from the Wiley book for Microsoft certification page 14,
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ifelse_Statement
        class Program
            static void Main(string[] args);
            TestIfElse(10);
            public static void TestIfElse(int n);
            if(n < 10)
                     Console.WriteLine("n is less than 10");
             else if(n < 20)
                    Console.WriteLine("n is less than 20");
             else if(n < 30)
                Console. WriteLine("n is greater than or equal to 30");
    Here is the error list I am getting,
    Error 1      Method must have a return type        C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\switch_Statement\Program.cs
    12 13
    switch_Statement
    Error 2
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\switch_Statement\Program.cs
    12 24
    switch_Statement
    Error 3
    Method must have a return type C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    12 9
    ifelse_Statement
    Error 4
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    12 20
    ifelse_Statement
    Error 5
    Invalid token 'if' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 9
    ifelse_Statement
    Error 6
    Invalid token '10' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 16
    ifelse_Statement
    Error 7
    Type expected C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    16 16
    ifelse_Statement
    Error 8
    Invalid token '(' in class, struct, or interface member declaration
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    18 35
    ifelse_Statement
    Error 9
    A namespace cannot directly contain members such as fields or methods
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    20 10
    ifelse_Statement
    Error 10
    Type or namespace definition, or end-of-file expected
    C:\Users\PVS\documents\visual studio 2013\Projects\Lesson01\ifelse_Statement\Program.cs
    30 1
    ifelse_Statement
    Error 11
    The type or namespace name 'n' could not be found (are you missing a using directive or an assembly reference?)
    c:\users\pvs\documents\visual studio 2013\projects\lesson01\ifelse_statement\program.cs
    16 12
    ifelse_Statement
    Error 12
    'System.Console.WriteLine(string, params object[])' is a 'method' but is used like a 'type'
    c:\users\pvs\documents\visual studio 2013\projects\lesson01\ifelse_statement\program.cs
    18 26
    ifelse_Statement

    static void Main(string[] args){
    TestIfElse(10);
    public static void TestIfElse(int n)
    if (n < 10)
    Console.WriteLine("n is less than 10");
    else if (n < 20)
    Console.WriteLine("n is less than 20");
    else if (n < 30)
    Console.WriteLine("n is greater than or equal to 30");
    Fouad Roumieh

  • How can i transfer a field value in the main report to its sub-report?

    <p><font face="Arial" size="2">How can i transfer a field value in the main report to its sub-report?</font></p><p><font face="Arial" size="2">Please eloberate with example if possible!</font></p><p><font face="Arial" size="2">Thanks...</font></p><p> </p>

    <p>You can do a couple of things - one would be to pass the information using the data linking expert.  Right click on the subreport, choose &#39;Change Subreport Links&#39; and select the field(s) you are wanting to pass to the subreport.  CRW will build parameters and a record selection formula for you in the subreport, and if that&#39;s what you want, then great.  But you can also remove the selection formula from the subreport and work with the parameter fields in the subreport however you would like.</p><p>Alternatively, you can look to passing Shared variables back and forth from the main and subreport.  this link talks about the method to do this: http://diamond.businessobjects.com/node/251</p><p> </p>

  • How do I get my tabs back into the main window?

    I've had a problem with an add-on displaying a small extra window every time I open a session for some months now: I know you're supposed to try disabling and re-enabling every add-on you've got to find out which one is responsible, but this is a work computer and with all the add-ons I have, it would take too long, so I've just closed the extra window every time and got on with my work. However, for some reason today my forty-odd tabs have all opened in the small extra window, which has no tab bar, navigation bar or menu button. How do I get my tabs back into the main window of Firefox, or alternatively get that window to behave like a normal Firefox window so I can use it?

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox Profile Folder.
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    *http://kb.mozillazine.org/Multiple_profile_files_created
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder

  • How do you call a java class from the main method in another class?

    Hi all,
    How do you call a java class from the main() method in another class? Assuming the two class are in the same package.
    Thanks
    SI
    Edited by: okun on May 16, 2010 8:40 PM
    Edited by: okun on May 16, 2010 8:41 PM
    Edited by: okun on May 16, 2010 8:47 PM

    georgemc wrote:
    To answer your impending question, either the method you're calling has to be static, or you need an instance of that other class to invoke it against. Prefer the latterAnd to your impending question after that: no, don't use the Singleton pattern.

  • How to get my custom controller updated with the global custom controller?

    Hi all,
    I'm new to CRM Web UI and need some advice from the expert. Currently I'm working on component ICCMP_BT_DATES and noticed something weird with this component. When this component is first launch it display the dates of a service ticket correctly. However when I navigate to another screen, save a new ticket and back, the dates are not reflected. When I went in and debug the component, I noticed that the context is still tied to the previous ticket. I think the custom controller is not updated with the latest from the global custom controller.
    My question is how do I get my custom controller updated with the latest.
    Regards,
    Ricky

    You have to bind your custom controllers context node to the event NEW_FOCUS of the collection wrapper on the global custom controller.
    Best place to do this might be the CONNECT_NODES of the context of your custom controller.
    Get the global CuCo with GET_CUSTOM_CONTROLLER() and then the appropriate context node. Now:
    SET HANDLER yourMethod for lr_global_cuco->typed_context->thecontextnode->collection_wrapper activation iv_activate.
    Of course you have to implement a method similar to ON_NEW_FOCUS as it is on many other nodes.
    cheers Carsten

  • How to execute a custom java code from the process

    Hi All,
    I'm writing a process to generate the PDF and it works fine. Now, at the end or in the middle of the process, i would like to execute/write a java code then it will be invoked when the process running. Assume not using web service, is there another way? samples how to write custom code?
    Thanks,

    The Execute Script service allows you to execute java code on a particular step.
    A more robust solution would be to create a custom component for your custom code.
    Jasmin

  • How to assign my customized smart style to the SO10 texts?

    Hi .
    In the standard text which we enter through SO10, I want some of the words to be coloured(blue) and some lines should be highlighted with yellow backgnd colour.
    For the first part at least, how can I change the SO10 text's style to my customized style?
    I can see the style list in text editor format menu->change style, but there, only some of the styles are able to select and I am not able to see my own customized style created through the tcode /NSMARTSTYLES.
    Please help.
    Rgds,
    Madhuri
    Edited by: madhuri sonawane on May 24, 2010 12:43 PM

    Hi Maduri,
    Check this link.....
    Using custom styles in SO10
    Hopet it is useful..
    Regards,
    Raj.

  • HT4623 How to upgrade a jail broken iPhone to the latest version?

    My phone is imported from Canada. It is jail broken. I cannot upgrade it to the new iOS versions. Any suggestions how to upgrade it?

    Sorry.  Jailbreaking forfeits all support from Apple, including the support of these forums. 

  • How do I use a newer kernel in the netinstall USB image

    Hi,
    trying to install Arch onto my laptop. My laptop is a Acer 1410 and it seems to have a new wireless card. dmesg | grep firmware shows something like iwlwifi-1000-2.ucode firmware file req failed: -2
    The problem is I can only find iwlwifi-1000-3.ucode on intel's website. So I assume a newer kernel will help. Replacing the kernel on the live USB with vmlinuz-2.6.31-17-generic copied from by ubuntu install makes it not able to boot.
    Thanks

    The error message means that the firmware is not installed. Did you actually try the 1000-3.ucode before assuming you need a new kernel?
    Also, there are various places where you could get an older firmware package, if you really need the 1000-2 version. Have a look at the wiki's Downgrade page for details.

  • How to upgrade to aperture 3.5 when the app store does not show the update. I did buy aperture 3 on DVD not thru the app store. what to do?

    I can not open aperture databases anymore as osx10.9 keeps telling me i have opened it with a newer version, which i have not but i understand from other discussions that thru the upgrade of iphoto osx automatically thinks that you have opened with aperture 3.5. the app store does not show me the update as i have not purchased the program thru the app store but on dvd. what to do?

    If you are running MacOS X 10.9 and Aperture is installed in your Applications folder and simply called Aperture, not Apertre 3 or something, the AppStore should be showing you the update.
    Have you already updated to Aperture 3.4.5 from the Support page  Aperture 3.4.5?
    Try to update manually to 3.4.5 and then reboot and sign again into the AppStore with your AppleID and look at the Update page.
    For some forum members it helped to set the main system language to English U.S. to make the update finally show.
    Léonie

  • HT4527 I have successfully transferred my iTunes folder from an old pc to my new one.  How do I now make this new computer the main synchronising computer for my iPad.  Thank you.

    I have successfully transferred my iTunes from my old computer to a new one just brought.  However when I tried to synchronise my iPad to new computer I had a message that said there was an upgrade available which I said I would like to proceed with.  However I then had a message that said I would lose all my apps etc if I did this and that I should use the old computer to do all synching.  How do I make the new computer my main computer for synching.  Grateful for any help.   Sez.

    If you migrate your library properly you don't get the wipe & reload problem. If possible revisit your migration, or use the link at the end to associate your device with the new library.
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have iOS devices and haven't moved your contacts and calendar items across then you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How do I play a symbol timeline from the main timeline

    Ive created a box, turned it into a symbol called box,
    Inside box i have a left to right animation with auto play turned off.
    I then went back to the main stage, clicked the box, added action, on click to play, yet it does nothing.
    How do i Play the symbols timeline?

    On click handler for the symbol use
    sym.getComposition().getStage().getSymbol("nameofsymbol").play();
    or
    sym.getSymbol("nameofsymbol").play();
    replace the italics with the literal name of the symbol as it appears in the Elements panel.
    Some API details found here (http://www.adobe.com/devnet-docs/edgeanimate/api/current/index.html) in the Work With Symbols section.
    Darrell

Maybe you are looking for

  • ORA-02068 using UNIACCESS ODBC

    I have the following errors creating a database link to the ODBC UNIACCESS for UNISYS OS/2200, SQL> create view fabio as select * from ta504@UA5PROD;      create view fabio as select * from ta504@UA5PROD      ERROR at line 1:      ORA-02068: followin

  • Creating GUI status menu - some entries are seen in red

    hi while creating menus in gui status, some entries are seen in red why these are in red, i dont know the reason cud u please help ? thanks

  • Nested SQL Queries

    Hi, I have a question for hierarchical queries.Suppose we have three tables manufacturer,brand and product.I wish to generate the XML for this query.The query I gave is as follows select a.manid ,b.brandid,c.prodid from manufacturer a ,brand b ,produ

  • Group Photo Contribution/Sharing

    I just came back from a group trip and am wondering what the best method is for all of us to share photos. I have .Mac and know I can create a gallery that others can upload to, but it doesn't show who uploaded the photo. Is there an iWeb template to

  • AFS 6.3 ADDON INSTALLATION ERROR

    Hi Gurus ,              I just now installed ECC 6.0 successfully , I now installing AFS 6.3 from the TCODE SAINT , But while importing the follwing error showing . Phase CHECK_REQUIREMENTS: Explanation of Errors Some open conversion requests still e