Hi,
What is the smallest minimum image to bitbake in Yocto that provides GStreamer and HW acceleration with no GUI nor X ?
Also is BSP 4.0.0 full integrated now in the dylan branch? if not when is it expected to be released and in which branch?
Thanks
已解决! 转到解答。
There are three Freescale Images,
$ bitbake-layers show-recipes | grep image | grep fsl
Parsing recipes..done.
fsl-image-gui:
fsl-image-gui-sdk:
fsl-image-test:
And the smallest you can get with GSTreamer FSL plugins is fsl-image-test
$ cat ../sources/meta-fsl-demos/recipes-fsl/images/fsl-image-test.bb
include recipes-core/images/core-image-base.bb
IMAGE_FEATURES += "debug-tweaks"
SOC_EXTRA_IMAGE_FEATURES ?= "tools-testapps"
# Add extra image features
EXTRA_IMAGE_FEATURES += " \
${SOC_EXTRA_IMAGE_FEATURES} \
nfs-server \
tools-debug \
tools-profile \
"
IMAGE_INSTALL += " \
packagegroup-fsl-gstreamer \
packagegroup-fsl-tools-testapps \
packagegroup-fsl-tools-benchmark \
"
export IMAGE_BASENAME = "fsl-image-test"
There are three Freescale Images,
$ bitbake-layers show-recipes | grep image | grep fsl
Parsing recipes..done.
fsl-image-gui:
fsl-image-gui-sdk:
fsl-image-test:
And the smallest you can get with GSTreamer FSL plugins is fsl-image-test
$ cat ../sources/meta-fsl-demos/recipes-fsl/images/fsl-image-test.bb
include recipes-core/images/core-image-base.bb
IMAGE_FEATURES += "debug-tweaks"
SOC_EXTRA_IMAGE_FEATURES ?= "tools-testapps"
# Add extra image features
EXTRA_IMAGE_FEATURES += " \
${SOC_EXTRA_IMAGE_FEATURES} \
nfs-server \
tools-debug \
tools-profile \
"
IMAGE_INSTALL += " \
packagegroup-fsl-gstreamer \
packagegroup-fsl-tools-testapps \
packagegroup-fsl-tools-benchmark \
"
export IMAGE_BASENAME = "fsl-image-test"