I would like to install all the packages under alsa-utils like aplay, amixer, etc, but only alsamixer and alsactl get installed.
Do I have to include each one separate like alsa-utils-aplay, alsa-utils-amixer, etc.?
[It's strange because the .bb file for alsa-utils seems to have the rules for all the packages.
My local.conf:
IMAGE_INSTALL_APPEND += " imx-vpu \
alsa-lib alsa-tools alsa-state \
alsa-utils fsl-alsa-plugins \
"
bblayers.conf:
BBLAYERS = " \
${BSPDIR}/sources/poky/meta \
${BSPDIR}/sources/poky/meta-yocto \
\
${BSPDIR}/sources/meta-openembedded/meta-oe \
${BSPDIR}/sources/meta-openembedded/meta-multimedia \
${BSPDIR}/sources/meta-openembedded/meta-gnome \
${BSPDIR}/sources/meta-openembedded/meta-ruby \
\
${BSPDIR}/sources/meta-fsl-arm \
${BSPDIR}/sources/meta-fsl-arm-extra \
${BSPDIR}/sources/meta-fsl-demos \
"
When I added alsa-utils to CORE_IMAGE_EXTRA_INSTALL, all the packages were installed as expected. Not sure why IMAGE_INSTALL_APPEND does not work.
I was building the fsl-image-multimedia-full image.