diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2016-10-06 16:47:31 +0300 |
---|---|---|
committer | Leon Anavi <leon.anavi@konsulko.com> | 2016-10-06 23:04:31 +0300 |
commit | a2dcdc074852955d6c73f56359254cb74ea7faa4 (patch) | |
tree | e35dfc70f0dc6563003d1a38a1692413eea2aad0 | |
parent | e24cbeaaf7237d51b16c19db7b03333deb782c07 (diff) |
50_local.conf.inc: Fix agl-sota feature for rpi2
Use "+=" instead of "=" for setting IMAGE_CLASSES
in Raspberry Pi 2 template for local.conf to
prevent failure while building images with
enabled agl-sota feature. The same fix has been
already applied to the Raspberry Pi 3 template.
Unfortunately, although with this fix the build
passes successfully, rpi-sdimg image is not
created.
Change-Id: I9a6e3e4742b0226d962b295b43bbc467d3f0fc77
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r-- | templates/machine/raspberrypi2/50_local.conf.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/machine/raspberrypi2/50_local.conf.inc b/templates/machine/raspberrypi2/50_local.conf.inc index 0739defbd..4827a760e 100644 --- a/templates/machine/raspberrypi2/50_local.conf.inc +++ b/templates/machine/raspberrypi2/50_local.conf.inc @@ -5,7 +5,7 @@ GPU_MEM = "128" CORE_IMAGE_EXTRA_INSTALL += "wayland weston" MULTI_PROVIDER_WHITELIST += "virtual/libgl virtual/egl virtual/libgles1 virtual/libgles2" -IMAGE_CLASSES = "sdcard_image-rpi-gdp" +IMAGE_CLASSES += "sdcard_image-rpi-gdp" KERNEL_DEVICETREE_append = " overlays/vc4-kms-v3d-overlay.dtb" PREFERRED_VERSION_linux-raspberrypi = "4.4.%" PREFERRED_VERSION_mesa = "11.%" |