You are right That was a copy & paste error. The line called exactly: IMAGE_INSTALL_append = " nfs-utils" With the spacer.
Alex -----Ursprüngliche Nachricht----- Von: Trevor Woerner [mailto:[email protected]] Gesendet: Freitag, 23. Januar 2015 08:40 An: Hänel-Baas, Alexander; Jegan Chandru Cc: [email protected]; [email protected] Betreff: Re: [yocto] mount.nfs -> how i include nfs-utils On 01/23/15 02:14, Hänel-Baas, Alexander wrote: > I have added the line IMAGE_INSTALL_append="nfs-utils" in the > local.conf file and now nfs work on the target. If the above line is working, that would be a lucky coincidence! :-) Using the _append operator one needs to include the space when adding their string: IMAGE_INSTALL_append = " nfs-utils" In your case I'm guessing there already was a space at the end of the existing object, otherwise the code building your image would not have been able to separate "nfs-utils" from whatever proceeded it, and therefore would not have been able to add that package to your image. -- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
