Hello!
I am trying to add a custom asound.state file into my Zeus based i.MX6 image. I have created a custom .bbappend file with the following contents:
FILESEXTRAPATHS_prepend_mx6 := "${THISDIR}/${PN}/imx:”
PACKAGE_ARCH_mx6 = "${MACHINE_ARCH}”
The output from:
$ bitbake-layers show-appends | grep alsa
is (some names changed to protect the guilty):
alsa-state.bb:
/home/.../sources/meta-freescale/recipes-bsp/alsa-state/alsa-state.bbappend
/home/.../sources/meta-boundary/recipes-bsp/alsa-state/alsa-state.bbappend
/home/.../sources/meta-project/recipes-bsp/alsa-state/alsa-state.bbappend
The file that is included in the image is the one from the meta-boundary layer and not the one from my “meta-project” layer. Is there some way to make my layer take priority or do I need to try to exclude the alsa-state recipes from the meta-freescale and meta-boundary layers using BBMASK?
-Andy.