I like to keep the directories in my Yocto projects structured so that I can easily keep track of where things come from. One of my biggest things is keeping any layers I have created separate from any layers I… Read more
Tag: Linux
How to add a Golang recipe to Yocto
Yocto supports Golang recipes, but they are slightly different to standard ones. Simple Recipe For a basic recipe without any dependancies, it is still quite simple. SUMMARY = “This is a simple example recipe that cross-compiles a Go program.” SECTION… Read more
Yocto: Conditionally setting a variable based on the image name
With one of my current build systems, I have two different build images – a production and a development one. For the production system, I want to have the root filesystem installed on the on-board eMMC storage but for the… Read more
Decompiling the Device Tree (DTB) for Embedded Linux
One of the things I find very frustrating when working with device trees is that often the entries are split over several different files. This is great when you want to support several different boards that are only differ slightly… Read more