[kernel] kernel update and third party modules management

Hi all,
        I turned to Archlinux with my new thinkpad X220 just for a few days, while I have used Ubuntu for 4 years. I had never controlled my system in such a degree, and feel happy about it.
       However, I have a question about kernel update, for I had install some modules from AUR with yaourt( e.g. tp_smapi, acpi_call). For my poor knowledge about pacman, I don't know how to handle those modules while I upgrade my kernel. I cannot remember to re-install all of them!
      I think there must be a solution that I didn't found, so I write this thread to ask for help.
      Any help would be appreciate.

Mr.Elendig wrote:You can use some silly wrapper around pacman that rebuilds them when there is a kernel update. I'm sure someone has written one already.
Thank you, Mr.Elendig. Do you mean some kind of frontend such as yaourt?
Or some kind of hooks like this:
aur/mkinitcpio-vbox 2.0-3 (Out of Date) (29)
    VirtualBox hook for mkinitcpio that rebuilds kernel modules on next reboot
Using the key words you provided, I searched " kernel upgrade module rebuild " and found that gentoo offically provide a tool called  "module-rebuild" to reinstall external modules. Maybe it's because gentoo always compile source code? But no other results.
However, now I found what I need to do is just to build the modules listed in the /etc/rc.conf, and that is acceptable. Maybe after a few weeks of study, I can find out my way to solve this problem.
And thanks for your reply.
Last edited by ywarlock (2012-03-09 16:20:36)

Similar Messages

  • IOS 6.0.2 update and third party earbuds

    My Tour earphones from beats by dre won't work with the Music app on iPhone 5 after I updated to iOS 6.0.2.
    They work fine during phone calls. The originals that came with the iPhone works fine with Music and phone calls.
    Has anyone experienced this? Are there any fix?
    Regards
    Greenfee

    Unless Apple replaced your battery, and it appears they didn't, you're pretty much on your own now. Have you tried going back to whoever replaced your battery? That's gonna be your only choice now, because if a third-party replaced your battery, Apple won't touch your phone now.

  • [svn] 3777: Bug fix SDK-17677 Update to include MPL license and third-party notices.

    Revision: 3777
    Author: [email protected]
    Date: 2008-10-21 10:20:27 -0700 (Tue, 21 Oct 2008)
    Log Message:
    Bug fix SDK-17677 Update to include MPL license and third-party notices.
    QE Notes:
    Doc Notes:
    Bugs: SDK-17677
    Reviewer: Matt Chotin
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17677
    http://bugs.adobe.com/jira/browse/SDK-17677
    Modified Paths:
    flex/sdk/trunk/modules/webtier/readme.txt

    Step by step, how did you arrive at seeing this agreement?

  • [svn:fx-trunk] 11488: Resubmitting binary distribution of xercesPatch. jar from the third party module in the SDK and compiled it with Sun JDK 1.4 .2_12.

    Revision: 11488
    Author:   [email protected]
    Date:     2009-11-05 17:10:10 -0800 (Thu, 05 Nov 2009)
    Log Message:
    Resubmitting binary distribution of xercesPatch.jar from the third party module in the SDK and compiled it with Sun JDK 1.4.2_12.
    QE notes: N/A
    Doc notes: N/A
    Bugs:
    SDK-16818 - Must open-source the code for xercesPatch.jar.
    Reviewer: Discussed with Gordon
    Tests run: Checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-16818
    Modified Paths:
        flex/sdk/trunk/lib/xercesPatch.jar
        flex/sdk/trunk/modules/thirdparty/xerces-patch/build.xml

    Did you try this:
    http://forum.java.sun.com/thread.jsp?thread=434718&forum=60&message=1964421

  • Firmware and third party updates

    Hi Everyone,
    Currently I am running ARD version 3 on tiger server and I have Tiger and Leopard OS X running on my client machines (G5, Intel Mac).
    I was wondering if there is a way to send Apple firmware and third party application updates to all of my Mac clients using ARD.
    I have used "softwareupdate -i -a" and this command seems to be only working with Apple software but nothing else.
    1. Is there a command that I can send (using ARD) to update firmware on all my Mac clients?
    2. Is there a command to update third party software such as Adobe, Roxio etc?

    1. No
    2. Only by repackaging the updates into an Apple standard package installer and pushing them out via ARD. I suggest you use LanREV's InstallEase (Free) to package up the updated files on your master build system and deploy those packages.

  • After lollipop update, native email app and third party email apps cannot connect to email server over wifi, only on 4g

    Updated to lollipop yesterday.  Now I cannot access email server (POP3) on wifi, only over 4G.  This is happening on native email app and third party apps such as K9.  Any help appreciated.

    We're terribly sorry to hear about the email issues. Let's get this resolved immediately. Since the update, have you tried to delete and re add the email account?
    SheritaH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Third-Party User Management Tools

    I'm looking for recommendations for third-party user management tools that can do the following:
    - Identify and bulk-expire/no visibility users that are inactive for >XXX days
    - Identify users with auto-forward rules
    - Bulk-delete inactive accounts (from GW database only, not eDirectory accounts)
    - Maybe even bulk-move inactive/expired accounts to a "dead accounts" post office?
    I have an immediate mandate to clean up our environment, and I don't see how to do this in bulk with existing native tools. It's just one guy (me) versus 42 post offices and 23,000 user accounts...
    Thanks!

    You can create your own tools using the GroupWise Administrative Object API and the GroupWise Object API.
    Please refer to the Cool Solutions article I wrote ( shameless self promotion ) "Scripting GroupWise" - Scripting GroupWise | Novell User Communities for more information on the GroupWise Admin API. I suggest that you modify the script listUser.vbs to include domain name ( GWUser.PostOffice.Domain.Name ) , post office name ( GWUser.PostOffice.Name ), visibility ( GWUser.Visibility ) and last login date ( GWUser.MailboxLastLoginDate). You will need to run an audit report on each post office to update the MailboxLastLoginDate property. Import the output into Excel and sort / filter accordingly for analysis.
    Setting an expiration date ( MailboxExpDate ) and / or visibility ( Visibility ) is done by assigning values to the respective properties and using the commit method - e.g GWUser.Commit
    Identifying accounts with auto-forward rules can be using GroupWise Object to log into each account using a trusted application key. I posted ( more shameless self promotion ) some sample code to list proxy access in another thread - https://forums.novell.com/novell-pro....html#poststop. It is not too difficult to modify the code to iterate through rules and select those that include the action forward.
    Deleting is be done using the the delete method - e.g. GWuser.Delete(eadGW) where eadGW is constant with the value 1.
    I would advise against using the Administrative Object API to automate moving accounts. Best practices to avoid problems during moves involve running GWCheck against user objects until there are no errors. I perform structure, contents, contents with attclip and contents with deldupfolders checks until there are no error before moving accounts. There is also the issue of how many simultaneous moves the post office agents can handle. More accurately it is the number of simultaneous purges on the source post office that need to be monitored.
    If you need more help with coding let me know.
    Sincerely,
    Bryan Vandenberg
    Originally Posted by gregamy
    I'm looking for recommendations for third-party user management tools that can do the following:
    - Identify and bulk-expire/no visibility users that are inactive for >XXX days
    - Identify users with auto-forward rules
    - Bulk-delete inactive accounts (from GW database only, not eDirectory accounts)
    - Maybe even bulk-move inactive/expired accounts to a "dead accounts" post office?
    I have an immediate mandate to clean up our environment, and I don't see how to do this in bulk with existing native tools. It's just one guy (me) versus 42 post offices and 23,000 user accounts...
    Thanks!

  • Knowledge Sharing -Tools ( SAP and Third Party Tools approved by SAP)

    Dear All,
    I am compiling information on Tools ( SAP and Third Party Tools approved by SAP) which are widely used in any SAP Project ( Implementaion, Roll-out, Support, Maintenance, Upgrade etc) .
    Tools will be categorized on the basis of following parameters:
    a) Tools Provided by SAP
    b) Third Party Tools approved by SAP
    In both a) and b) we can have following categories:
    1) Project Tracker Tools-Remedy
    2) Module specific Tools-Tools used for SD, FI, MM, BW etc.
    3) Reporting Tools
    4) Tools from SAP
    5) Data migration related Tools ( Extraction, uploading, downloading)
    6) Generic Scenario tools ( Tools for Effort Estimation etc.)
    7) Performance Enhancement and Optimization Tools
    Request you all to please contribute and share your knowledge and experiences (theoretical and practical).
    Regards,
    Rakesh

    Hi,
    I think that you can start with SAP Solution Manager. It is really interesting tool.
    Cheers

  • WIndows 8.1 64bit, Windows Installers stalls with any install, updates or third party programs.

    WIndows 8.1 64bit, Windows Installers stalls with any install, updates or third party programs. Third party program installations work if I restart in safe mode. Updates don't as they cannot be installed in safe mode and require normal mode.
    Been happening for months now. Some installations after a long time finally proceed, others dont. 
    Already trying uninstalling antivirus (Bitdefender) with no result.
    Thanks

    Hi,
    Could you check this issue under clean boot?
    Also try this fix tool it repair corrupted registry keys.
    https://support.microsoft.com/en-us/mats/program_install_and_uninstall
    Regards,
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • HRMS Integration with third party Project Management Tool

    Hi All,
    We have plans of procurring a third party Project Management Tool which needs to be integrated to existing Oracle Financials. Project Management Tool needs employee information for its functioning.
    a)Is there any API available for this purpose which exposes HR data to any third party tool?
    b)Can anyone suggest what should be the approach for such integration?
    Thanks in advance
    Regards,
    SA

    What 3rd party tool are you going to be using? You might get lucky and it might be something that Oracle has bought recently. Does this post mean you are using Oracle Projects? If so, you may want to post this question in that forum as well. At least you would limit the audience to projects oriented customers, so might get some better replies there than you will here. Food for thought.
    John Dickey

  • Diff b/w standard PO and third party PO

    hi can anyone explain me the differences between standard PO and third party PO?  how does the screen shots vary b/w each other.
    tks in advance..

    under stand the scenerio
    sd pepole has recived a  sales order for material x
    but in the sales order they have mentined the item category as TAS so by doing this the moment they save the sales order system will genrate a requisiton automatically with the account assignement category as third party so now it is th ejob of the mm pepole to convert that pr into po and that po is know as the third party po and when u do the dummy gr for this po then system will nto ask for the sloc as there is no stock updation for the po

  • How to ensure correct implementation of third-party modules

    Hi,
    I am attempting to use third-party modules, namely:
    coolaj86/node-walk · GitHub
    to work in a better manner than what node.js allows. For example, the fs module works so-so, it doesn't do all the kinds of things that I want to do, and I want to extend it further. However, my issue is that frequently when I clone these modules, they simply are not recognized by Adobe whenever I relaunch(Illustrator) and they cause the extension to error out from the start.
    I've written in the following to the extension:
    walk = require('walk');
    at the top of main.js and if I comment that out, the code continues working, but if that line is in, it doesn't. However, I have gotten other modules to work that were third-party but I cannot deduce what would be the correct format that the extension is looking for in regards to setup in the node_modules folder.
    In my node_modules folder, the folder is named the same as the module (walk), and it still does not find it.
    If someone is kind enough to answer, please be elaborate, as I am not a native JS user, I'm a Python user, so I understand a good deal of what you're talking about, but there are bound to be things that are foreign to me.
    Thank you,
    Alex

    This is only possible if the older version still exists on your computer or in a backup of it.
    (81653)

  • Handling exceptions of third party modules

    Hello,
    could you please help with handling exceptions in a right way from third party modules such as Smaato Advertising, how and where I can handle these exceptions to prevent app crash? One developer said his app sometimes crashes because of Smaato's
    module and he decided to delete it.

    Try to handle the exception in the
    Application.UnhandledException event.
    Ugly but should work.

  • Integration between SAP and third party tax software

    can some body explain me or provide me docs regarding integration between sap and third party tax software like vertex.
    Thanks

    Hi
    First configure the same via the following menu path:
    1.) IMG>Financial accounting>Financial accounting global settings>Taxes on sales/purchases>Basic settings>External tax calculation>Define physical destination
    2.) Then test connection (option is available there).
    3.) If the connection is successful, also verify that the external tax package installed supports the R/3 4.6 version of the API. You do that by going to:
    System Information>Function List
    Check if the following functions are listed:
    • RFC_CALCULATE_TAXES_DOC
    • RFC_UPDATE_TAXES_DOC
    • RFC_FORCE_TAXES_DOC
    • RFC_DETERMINE_JURISDICTION
    4.) Then test the tax data retrieval:
    From SE37, select the relevant function modules like RFC_DETERMINE_JURISDICTION.
    The above 4 steps are necessary to satisfy that the RFC connection is established
    Hope useful
    S Jayaram

  • Plz requesting kindly for screen shots of intercompany and third party sale

    Hi btothers,
    Am into new project where we have intercompany sales and third party sales ,can any one plz send me with step by step screen shots to my mail id [email protected]
    Thanks & regards,
    srinivas

    Hi Srinu,
    Please find below the complete Documentation on Third Party Sales and Intercompany Process.
    THIRD PARTY SCENARIO:
    In third-party order processing, your company does not deliver the items requested by a customer. Instead, you pass the order along to a third-party vendor who then ships the goods directly to the customer and bills you. A sales order may consist partly or wholly of third-party items. Occasionally, you may need to let a vendor deliver items you would normally deliver yourself.
    Process Flow
    The processing of third-party orders is controlled via material types. Material types define whether a material is produced only internally, can be ordered only from third-party vendors, or whether both are possible. For example, a material that is defined as a trading good can only be ordered from a third-party vendor. However, if you manufacture your own finished products, you may also want, from time to time, to be able to order the same type of product from other vendors.
    Processing Third-Party Orders in Sales
    Third-party items can be created automatically by the system, depending on how your system is set. However, you can also change a standard item to a third-party item during sales processing manually.
    Automatic third-party order processing
    If a material is always delivered from one or more third-party vendors, you can specify in the material master that the material is a third-party item. During subsequent sales order processing, the system automatically determines the appropriate item category for a third-party item: TAS. To specify a material as a third-party item, enter BANS in the Item category group field in the Sales 2 screen of the material master record.
    Manual third-party order processing
    In the case of a material that you normally deliver yourself but occasionally need to order from a third-party vendor, you can overwrite the item category during sales order processing. For a material that you normally deliver yourself, you specify the item category group NORM in the material master.
    If, as an exception, you use a third-party material, change the entry TAN to TAS in the ItCa field when processing the sales document. The item is then processed as third-party item.
    If address data for the ship-to party is changed in the sales order in third-party business transactions, the changed data will automatically be passed on to purchase requisition and also to the purchase order ,if one already exists. In the purchase order, you can display the address data for the ship-to party in the attributes for the item.
    You can only change the address data for the ship-to party in the sales order for third-party business transactions, and not in the purchase order.
    Processing Third-Party Orders in Purchasing
    When you save a sales order that contains one or more third-party items, the system automatically creates a purchase requisition in Purchasing. Each third-party item in a sales order automatically generates a corresponding purchase requisition item. During creation of the requisition, the system automatically determines a vendor for each requisition item. If a sales order item has more than one schedule line, the system creates a purchase requisition item for each schedule line.
    Purchase orders are created from purchase requisitions in the usual way. For more information about creating purchase orders, see the Purchasing documentation. During creation of the purchase order, the system automatically copies the delivery address of your customer from the corresponding sales order. In a sales order, you can enter purchase order texts for each third-party item. When you create the corresponding purchase order, the texts are automatically copied into the purchase order. The number of the purchase order appears in the document flow information of the sales order.
    All changes made in the purchase order are automatically made in the sales order as well. For example, if the vendor confirms quantities and delivery dates different from those you request and enters them in the purchase order, the revised data is automatically copied into the sales order
    You process third-party items by creating a normal sales order. In overview for the order, you can then overwrite the default item category (TAN in the standard system) with the special item category for third-party items: TAS
    Billing Third-Party Orders
    If relevance for billing indicator for the item category has been set to B (relevant for order-related billing on the basis of the order quantity) in Customizing, the system includes the order in the billing due list immediately. If, however, the indicator has been set to F (relevant to order-related billing on the basis of the invoice quantity), the system does not include the order in the billing due list until an invoice from the vendor has been received and processed by the purchasing department. In the standard system, item category TAS (third-party order processing) has been given billing-relevance indicator F.
    In the first case, the third-party order is considered to be completely billed only when the invoiced quantity equals the order quantity of the sales order item. In the second case, each time a vendor invoice is received, a customer invoice is created for the quantity in the vendor invoice and the order is considered to be fully invoiced until the next vendor invoice is received.
    If you have activated billing-relevance indicator F for item categories in Customizing, billing can refer to the goods receipt quantity instead of the incoming invoice quantity.
    You can control whether the invoice receipt quantity or the quantity of goods received is relevant for billing in Customizing for copying control for billing at item level.
    FOR YOUR PROCESS Individual Purchase Orders WELL GIVE THE RIGHT SOLUTION
    Individual purchase orders are used when your customer orders goods from you that are not in stock and must be ordered from one or more external vendors.
    Process Flow
    During sales order entry, the system automatically creates a purchase requisition item. The purchasing department creates a purchase order based on the requisition and the vendor ships the goods directly to you (unlike third party order processing, where the vendor ships directly to your customer). You then ship the goods to your customer. While the goods are part of your inventory, you manage them as part of the sales order stock. Sales order stock consists of stock that is assigned to specific sales orders and cannot be used for other purposes.
    Process Flow for 3rd Party Sales
    Customize the third party sales in summary:
    Prerequisites for 3rd party sales,
    Purchasing org,
    purchasing group,
    assign the Purchase org to company code
    assign Purchase org to plant,
    should not maintain the stock in material, it should be trading goods,
    1. Create Vendor XK01
    2. Create Material – Material Type as "Trading Goods". Item category group as "BANS".
    3. Assign Item Category TAS to Order type that you are going to use.
    4. A sale order is created and when saved a PR is generated at the background
    5. With reference to SO a PO is created (ME21N). The company raises PO to the vendor.
    6. Vendor delivers the goods and raises bill to company. MM receives the invoice MIRO
    7. Goods receipt MIGO
    8. Goods issue
    9. The item cat TAS or Schedule line cat CS is not relevant for delivery which is evident from the config and, therefore, there is no delivery process attached in the whole process of Third party sales.
    10. Billing *--
    SD - 3rd party sales order Create Sales Order
    VA01
    Order Type
    Sales org, distr chnl, div
    Enter
    Sold to
    PO #
    Material
    Quantity
    Enter
    Save
    SD - 3rd party sales order View the PR that is created with a third party sales order
    VA01
    Order Number
    Goto Item Overview
    Item ->Schedule Item
    SD - 3rd party sales order View the PR that is created
    ME52N
    Key in the PR number
    Save
    SD - 3rd party sales order Assign the PR to the vendor and create PO
    ME57
    Key in the PR number
    Toggle the "Assigned Purchase Requisition"
    Execute
    Check the box next to the material
    Assign Automatically button
    Click on "Assignments" button
    Click on "Process assignment"
    The "Process Assignment Create PO" box , enter
    Drag the PR and drop in the shopping basket
    Save
    SD - 3rd party sales order Receive Goods
    MIGO_GR
    PO Number
    DN Number
    Batch tab , click on classification
    Serial Numbers tab
    Date of Production
    Flag Item OK
    Check, just in case
    Post
    Save
    SD - 3rd party sales order Create Invoice
    MIRO
    Invoice Date
    Look for the PO , state the vendor and the Material
    Check the box
    Click on "Copy"
    Purchase Order Number (bottom half of the screen)
    Amount
    State the baseline date
    Simulate & Post
    Invoice Number
    *Invoice blocked due to date variance
    SD - 3rd party sales order Create a delivery order
    VL01N
    In the order screen , go to the menu Sales Document , select "Deliver"
    Go to "picking" tab
    State the qty and save
    SD - 3rd party sales order Create a billing document
    VF01
    Ensure that the delivery document is correct in the
    Enter
    Go to edit -> Log
    Save
    Third party order processing is as follows:
    Assume three companies X, Y and Z
    X - The company,
    y - The customer
    Z - Vendor
    When ever X gets a PO from Y to supply some goods, X has an option of either manufacturing those goods or procuring those goods.
    If he is procuring the goods, there are two methods that are generally followed:
    Method 1) After receiving the PO from Y, X creates a sales order against Y.
    Now at the same time he also creates a PO to a vendor Z to produce the goods
    Z produces the goods and supplies to X
    X receives the goods from Z
    Then X delivers the same goods to Y.
    After that X invoices Y and Z invoices X.
    Note : Here there is no direct/ Indirect relation between Z and Y.
    This process is known as Trading Process. and the Material here is created with Material type HAWA.
    The other method is a Third party order processing method:
    Here the glaring difference is that instead of Z supplying the material to X and X in turn supplying the same material to Y.
    X authorizes Z to supply the material to Y on his behalf and notify him once the delivery is complete.
    Now Z supplies the material to Y and acknowledges the same to X.
    Z will send a copy of delivery acknowledgement and invoice to X.
    After receiving the delivery confirmation and invoice from Z, X has to verify the invoice and this process is known as invoice verification and is done in SAP through Tcode MIRO.
    The next step for X is to create an invoice and submit to Y
    Only after the invoice verification document is posted then only X can create an invoice for Y.
    This is the business flow that is followed for third party order configuration.
    There are few steps that have to be configured to enable the system to function as mentioned above.
    Step1)
    If you are always following a third party process for a material then you have to create the material using item category group BANS.
    The procurement type should be marked as External procurement (F) in MRP 2 view of the material master record.
    if you are not always allowing third party order processing then u can create a material master record with item category group as NORM and the procurement type should be marked as ( X) meaning both types of procurement ( in house manufacturing and external procurement).
    Step 2)
    the item category in the order should be manually changed as TAS.
    For that you need to configure the item category determination
    Order type + item cat Group + Usage + High level = Item cat + Manual item cat
    OR + NORM + + = TAN + TAS
    OR + BANS + + = TAS
    Step 3)
    make sure that during the item category configuration for TAS you need to mark relevant for billing indicator as F
    step 4)
    The schedule line category for this type should be CS.
    make sure that you mark subsequent type as NB - purchase requisition in this schedule line category as this will trigger the purchase requisition order immediately after the creation of the sales order and the PO to vendor is created against this purchase requisition.
    Intercompany Process:
    Go through the explanation given below with test cases.
    Business case: -
    Customer orders goods to company code/Sales organization A (Eg.4211/4211).Sales org 4211 will accept and punch the order in the system with sold to party as end customer code in the system. Company code/sales org B (Eg.4436) will deliver the goods to end customer and raise an intercom any billing on 4211 with reference to delivery. This can happen only after 4211 raises invoice to his end customer to whom the material has been delivered by 4436.
    SPRO Customization required:-
    1. Assign plant of delivering company code (Eg.SI81) to sales org/distribution channel combination of ordering company code (Eg.4211/RT)
    2. Maintain intercom any billing type as IV for sales document type OR
    3. Assign Organizational Units By Plant (Eg.SI81/4211/RT/11)
    4.Define Internal Customer Number By Sales Organization (Eg.4436 will create customer master for 4211 company code and that number will be maintained in this relationship:-4211/231)
    5. Automatic posting to vendor account (Optional)
    6. Maintain pricing procedure determination for 4211/RT/A/1/RVAA01-For customer sales and billing
    Maintain pricing procedure determination for 4436/RT/A/1/ICAA01-For intercompony billing
    Master data to be maintained:-
    1. Create end customer master in company code/sales org 4211/RT/11
    2. Create customer master for 4211 company code/sales org in 4436/RT/11
    3. Maintain PR00 as price for end customer-Active in RVAA01
    4. Maintain PI01 as price which has to be paid to 4436-Statistical in RVAA01
    5. Maintain IV01 as inter-company Price-Active in ICAA01
    Process:-
    1. Create OR with sold to party as end customer.
    2. Plant to be selected is delivering plant belonging to different company code. With this selection system will treat this order as intercomany sales.
    3. Pricing procedure is RVAA01
    4. With reference to this order delivery will be created from the delivering plant and post the goods issue for this delivery.
    5. Ordering sales org will create billing document F2 with reference to delivery for end customer.
    6. Delivering sales org will create intercompany billing IV with reference to delivery document.
    Please Reward If Really Helpful,
    Thanks and Regards,
    Sateesh.Kandula

Maybe you are looking for