Currently, using kernel config fragments is not working. If you try
adding one as documented in the Yocto Mega Manual [1], it will be
ignored.
There are two reasons for this:
- The config fragment logic is in linux-yocto, so we need to
include/require that (this is what linux-raspberrypi does in
meta-raspberrypi).
- We remove ${B}/.config, which undoes any config created by
linux-yocto.
Fix this by including linux-yocto and not removing ${B}/.config. With
this patch, fragments are working again.
[1]
http://www.yoctoproject.org/docs/2.5/mega-manual/mega-manual.html#creating-the-append-file
Signed-off-by: Martin Kelly <mkelly@xevo.com>
Removing the linux.inc introduced an unnecessary dependency on meta-oe.
Add the latest linux.inc from meta-oe to the layer and change path.
Signed-off-by: Jens Lucius <info@jenslucius.com>