You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed this while trying to mitigate #204. The current conf/layer.conf has the following line:
BBPATH=."${LAYERDIR}:"
According to the BitBake documentation=. means to prepend a string without a space. Meaning that meta-rust-bin puts itself in front of other layers, even though the user may have ordered these layers differently.
I noticed this while trying to mitigate #204. The current
conf/layer.conf
has the following line:According to the BitBake documentation
=.
means to prepend a string without a space. Meaning that meta-rust-bin puts itself in front of other layers, even though the user may have ordered these layers differently.Yocto still has no proper mechanism to patch/override
.bbclass
files, so we're stuck having to create a layer and put it at the top ofbblayers.conf
. https://yocto.yoctoproject.narkive.com/qcV9UXm4/overriding-a-class-in-custom-layerLooking at previous issues, this seems to have been done in order to get things working for Honister: #108. #123
Would it be possible to change things back to the default BitBake has for
layer.conf
files?https://docs.yoctoproject.org/5.1.2/bsp-guide/bsp.html#layer-configuration-file
The text was updated successfully, but these errors were encountered: