[yocto] Adding Custom Files to Build

2013-10-31 Thread Leo Schwab
This may seem rather basic, but something that I haven't been able to find any clear discussion on is how to add or modify files in the final rootfs image. We have customized versions of /etc/network/interfaces and /etc/wpa_supplicant.conf, with more to come. Right now I've been adding them by

Re: [yocto] Adding Custom Files to Build

2013-10-31 Thread Martin Jansa
On Thu, Oct 31, 2013 at 01:28:27PM -0700, Leo Schwab wrote: This may seem rather basic, but something that I haven't been able to find any clear discussion on is how to add or modify files in the final rootfs image. We have customized versions of /etc/network/interfaces and

Re: [yocto] Adding Custom Files to Build

2013-10-31 Thread Gary Thomas
On 2013-10-31 14:32, Martin Jansa wrote: On Thu, Oct 31, 2013 at 01:28:27PM -0700, Leo Schwab wrote: This may seem rather basic, but something that I haven't been able to find any clear discussion on is how to add or modify files in the final rootfs image. We have customized versions of

Re: [yocto] Adding Custom Files to Build

2013-10-31 Thread Leo Schwab
On Thu, Oct 31, 2013 at 1:32 PM, Martin Jansa martin.ja...@gmail.com wrote: Creating .bbappends is the right direction, you just need to read a bit more docs (hint: FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:) That helped! I've got my customized files injected into the build now. Thank you