diff options
author | 2016-06-29 09:57:41 +0100 | |
---|---|---|
committer | 2016-07-05 16:53:03 +0100 | |
commit | 597cda9c36602110f8565f0c753e4357bef584fc (patch) | |
tree | 56b38e2c67fbfc9ce9718d8cbe73b7886899e12e /recipes-graphics/mesa/mesa_%.bbappend | |
parent | e64977067edc555337adb451f7385d9a5b8e1913 (diff) | |
download | meta-qcom-597cda9c36602110f8565f0c753e4357bef584fc.tar.gz meta-qcom-597cda9c36602110f8565f0c753e4357bef584fc.tar.bz2 meta-qcom-597cda9c36602110f8565f0c753e4357bef584fc.zip |
Use $SOC_FAMILY instead of $MACHINE in BSP
In many recipes we have been using $MACHINE to add customization. As we are
about to add more boards based on similar SoC, we need to use $SOC_FAMILY as
override instead of $MACHINE.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'recipes-graphics/mesa/mesa_%.bbappend')
-rw-r--r-- | recipes-graphics/mesa/mesa_%.bbappend | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-graphics/mesa/mesa_%.bbappend b/recipes-graphics/mesa/mesa_%.bbappend index c22ada0..3d6a10d 100644 --- a/recipes-graphics/mesa/mesa_%.bbappend +++ b/recipes-graphics/mesa/mesa_%.bbappend @@ -1,10 +1,10 @@ # Enable freedreno driver -GALLIUMDRIVERS_append_ifc6410 = ",freedreno" -GALLIUMDRIVERS_append_dragonboard-410c = ",freedreno" +GALLIUMDRIVERS_append_apq8064 = ",freedreno" +GALLIUMDRIVERS_append_apq8016 = ",freedreno" -PACKAGECONFIG_append_ifc6410 = " gallium \ +PACKAGECONFIG_append_apq8064 = " gallium \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xa', '', d)} \ " -PACKAGECONFIG_append_dragonboard-410c = " gallium \ +PACKAGECONFIG_append_apq8016 = " gallium \ ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'xa', '', d)} \ " |