Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-12 Thread Bruce Ashfield
On 13-06-12 08:37 AM, Javi Roman wrote: Hi! Thank you for your help. Finally I've had to change the meta/classes/kernel.bbclass in order to fix the copy of defconfig to .config: - if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then + if [ -f "${WORKDIR}/defconfig" ]; then

Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-12 Thread Javi Roman
Hi! Thank you for your help. Finally I've had to change the meta/classes/kernel.bbclass in order to fix the copy of defconfig to .config: - if [ -f "${WORKDIR}/defconfig" ] && [ ! -f "${B}/.config" ]; then + if [ -f "${WORKDIR}/defconfig" ]; then cp "${WORKDIR}/defconfig" "${B}/

Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-11 Thread Paul Eggleton
On Tuesday 11 June 2013 16:47:53 Javi Roman wrote: > With > > SRC_URI_append = "file://defconfig" Does your actual recipe have a leading space in the value? _append won't add this for you so you have to do it explicitly. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre _

Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-11 Thread Bruce Ashfield
On 13-06-11 10:47 AM, Javi Roman wrote: With SRC_URI_append = "file://defconfig" Which is what I expected. And you say that it isn't being applied at all ? Is that by inspecting the final contents of .config ? Or something else ? Since this is on the dylan branches, I know it has been tested

Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-11 Thread Javi Roman
With SRC_URI_append = "file://defconfig" Javi Roman On Tue, Jun 11, 2013 at 4:23 PM, Bruce Ashfield wrote: > On 13-06-11 10:18 AM, Javi Roman wrote: >> >> Hi! >> >> >> I few years ago I used to work with OpenEmbedded (the classical >> branch). The addition of new kernel recipes was easy for m

Re: [yocto] Custom kernel in Yocto/dylan branch.

2013-06-11 Thread Bruce Ashfield
On 13-06-11 10:18 AM, Javi Roman wrote: Hi! I few years ago I used to work with OpenEmbedded (the classical branch). The addition of new kernel recipes was easy for me, nevertheless I'm unable to do similar things with the current Yocto-dylan branch. The current Yocto-dylan is based on Linux k

[yocto] Custom kernel in Yocto/dylan branch.

2013-06-11 Thread Javi Roman
Hi! I few years ago I used to work with OpenEmbedded (the classical branch). The addition of new kernel recipes was easy for me, nevertheless I'm unable to do similar things with the current Yocto-dylan branch. The current Yocto-dylan is based on Linux kernel 3.x branches, all the documentation