For example, suppose you had a set of configuration options in a file calledmyconfig. If you put that file inside a directory namedlinux-yoctoand then added aSRC_URIstatement such as the following to the append file, those configuration options will be picked up and applied when the kernel is built.SRC_URI += "file://myconfig"
As mentioned earlier, you can group related configurations into multiple files and name them all in the
SRC_URIstatement as well. For example, you could group separate configurations specifically for Ethernet and graphics into their own files and add those by using aSRC_URIstatement like the following in your append file:SRC_URI += "file://myconfig \ file://eth.cfg \ file://gfx.cfg"