I have a directory with binary (i.e. not compiled) files and just want them to be installed on my target root file system.
I looked through several articles, none of which seem to work for me.
Desired functionality of this recipe:
myRecipe / myFiles / -> myRootFs / dir / to / install
My current attempt:
SRC_URI += "file://myDir" do_install() { install -d ${D}/path/to/dir/on/fs install -m ${WORKDIR}/myDir ${D}/path/to/dir/on/fs }
I can't complain about the Yocto documentation as a whole, it's really good! I just canβt find an example of something like this!
source share