Adding libraries to our image using package groups in yocto project
Hello All, In my previous article we have seen that, how we can add the different libraries to our image using yocto project. previous article here: https://learnyoctowithme.blogspot.com/2022/06/adding-libraries-pciutilsusbutils-and.html In this article we are going to see how we can add multiple libraries(packages) at the same time using the concept of package groups in yocto project Before proceeding to this, you need to be familiar with my previous articles , as it contains the necessary steps to create the build environment for qemux86-64 and steps to create our own layer. pre-requisite: https://www.blogger.com/blog/posts/8695339245532547417?tab=rj Adding libraries to our image using package groups in yocto project: step 1: switch to our own layer (meta-mylayer/recipes-kernel) $ cd poky/meta-mylayer/recipes-kernel/ step 2: inside recipes-kernel directory, create a folder called packagegroups $ mkdir -p packagegroups step 3: switch to packagegroups directory $ c...