Creating our own meta layer & creating a custom helloworld application and adding it to our project using yocto
Hello All, In my previous article we have seen that how to construct an embedded linux image for "qemux86-64" and verify its booting. In case if you have missed it, here is the link: https://learnyoctowithme.blogspot.com/2022/04/constructing-embedded-linux-image-for.html In this article we are going to see how we can create our own layer and adding it to our project using yocto pre-requisite: You need to be familiar with my previous article as it shows the image construction and setting up the build environment link : https://www.blogger.com/blog/posts/8695339245532547417?tab=rj what is a layer? Layer is nothing but a logical collection of related recipes Types of Layers: oe-core, BSP Layer, application layer Layer name starts with meta-, but this is not a technical restriction. Eg. meta-mylayer creating our own meta layer(meta-mylayer) using yocto project: step 1: source the environment $ source ./oe-init-build-env build_x86 step 2: Inside build_x86 folder, ...