Hello Priya, On Mon, Feb 16, 2015 at 6:14 AM, Priya Agarwal <[email protected]> wrote: > I want to compile a c++ file(tcpserver.cpp) and build it along with my > kernel image. I am using QorIQ SDK1.4. > > I created a new layer meta-mylayer in yocto/, wrote a simple recipe file, > and edited bblayers.conf and local.conf. But I am getting the following > error: > > WARNING: No bb files matched BBFILE_PATTERN_mylayer > '^/media/NewVolume/yocto/meta-mylayer/' > > What does this mean and how should I remove it?
It means 'bitbake' didn't find recipes (bb files) on you layer. > The .bb file is in: > yocto/meta-mylayer/tcpserver/tcpserver.bb This is what is wrong. Take a look in the meta-mylayer/conf/layer.conf, specially the BBFILES variable. This imply every recipe to be included inside a recipes-<something>/<something>/file.bb In your code it could go to: meta-mylayer/recipes-networking/tcpserver/tcpserver.bb -- Otavio Salvador O.S. Systems http://www.ossystems.com.br http://code.ossystems.com.br Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750 -- _______________________________________________ meta-freescale mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-freescale
