diff options
author | Arsalan H. Awan <Arsalan_Awan@mentor.com> | 2019-03-11 19:44:08 +0500 |
---|---|---|
committer | Arsalan H. Awan <Arsalan_Awan@mentor.com> | 2019-03-12 16:10:51 +0500 |
commit | 978f5594f1c77c9fba9136e2979c8f9877c03132 (patch) | |
tree | 5584853a3396cd61061d2a7ee8915978db2b66c1 /meta-amdfalconx86 | |
parent | 59cf2d82956d48c3c2a1de79e7fb58724c1fcad5 (diff) | |
download | meta-amd-978f5594f1c77c9fba9136e2979c8f9877c03132.tar.gz meta-amd-978f5594f1c77c9fba9136e2979c8f9877c03132.tar.bz2 meta-amd-978f5594f1c77c9fba9136e2979c8f9877c03132.zip |
v1000,r1000,amdfalconx86/local.conf: organize INCLUDE_<components>
To use a single description for all INCLUDE_<components> alongwith
the supported <component> summary in each BSP's local.conf.
This also helps to have a single place for all the configurable
<components> in the local.conf instead of having huge paragraph
for each <component> and having to scroll to find each <component>.
Signed-off-by: Arsalan H. Awan <Arsalan_Awan@mentor.com>
Diffstat (limited to 'meta-amdfalconx86')
-rw-r--r-- | meta-amdfalconx86/conf/local.conf.append.amdfalconx86 | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/meta-amdfalconx86/conf/local.conf.append.amdfalconx86 b/meta-amdfalconx86/conf/local.conf.append.amdfalconx86 index 68cf3405..224e8c60 100644 --- a/meta-amdfalconx86/conf/local.conf.append.amdfalconx86 +++ b/meta-amdfalconx86/conf/local.conf.append.amdfalconx86 @@ -43,17 +43,19 @@ COMMERCIAL_LIC_FLAGS_MULTIMEDIA = "commercial_gstreamer1.0-plugins-ugly \ LICENSE_FLAGS_WHITELIST_append = "${@' ${COMMERCIAL_LIC_FLAGS_MULTIMEDIA}' if bb.utils.to_boolean('${INCLUDE_COMMERCIAL_MULTIMEDIA}') else ''}" CORE_IMAGE_EXTRA_INSTALL_append = "${@' packagegroup-multimedia-risky' if bb.utils.to_boolean('${INCLUDE_COMMERCIAL_MULTIMEDIA}') else ''}" -# MEL has support for Vulkan/LunarG SDK components. -# These components are required to run the Vulkan based applications. -# In order to include these components in your final -# image or generating an ADE that can be used to develop for/against these -# please change the below define to "yes" before building the -# image or generating ADE. +# MEL supports various components that can be enabled by setting the corresponding +# INCLUDE_<component> to "yes". +# Following is a list of <components> that can be enabled if you want them to be +# installed/available on your image. +# Please change the required INCLUDE_<component> to "yes" before building an image, or +# generating an ADE that can be used to develop apps for these components (if applicable): +# +# - VULKAN - Vulkan driver and Loader Layer. +# It is required to run Vulkan based applications. Vulkan is a new generation graphics +# and compute API that provides high-efficiency, cross-platform access to modern GPUs. +# +# - CODEXL - CodeXL remote agent and some sample applications to verify the GPU debugging +# and profiling functionality. +# INCLUDE_VULKAN ??= "no" - -# MEL has support for CodeXL. -# This include CodeXL remote agent and some sample applications to -# verify the GPU debugging and profiling functionality. -# In order to include these components in your final -# image please change the below define to "yes" before building the image. INCLUDE_CODEXL ??= "no" |