diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2017-08-23 07:57:41 +0000 |
---|---|---|
committer | Ronan Le Martret <ronan.lemartret@iot.bzh> | 2018-04-10 17:47:23 +0200 |
commit | 82379aac3ee4734f2621e35dfda1132a7ae4547e (patch) | |
tree | 4d392e5db9d630f808d7753443a4e41067b206c2 /meta-rcar-gen3 | |
parent | caea47ec5f766e2d539a8a4dc1fcc4a190a99e58 (diff) |
[COMMUNITY] use mesa preferred version 17.%
This avoids a conflict between the two following options:
* poky/meta/recipes-graphics/mesa/mesa_17.0.2.bb
* poky/meta/recipes-graphics/mesa/mesa_git.bb
Change-Id: I566ba2f5c3152efe08e9e3e883c79439813ef7ea
Signed-off-by: Stephane Desneux <stephane.desneux@iot.bzh>
Diffstat (limited to 'meta-rcar-gen3')
-rw-r--r-- | meta-rcar-gen3/conf/machine/h3ulcb.conf | 7 | ||||
-rw-r--r-- | meta-rcar-gen3/conf/machine/m3ulcb.conf | 7 | ||||
-rw-r--r-- | meta-rcar-gen3/conf/machine/salvator-x.conf | 8 |
3 files changed, 16 insertions, 6 deletions
diff --git a/meta-rcar-gen3/conf/machine/h3ulcb.conf b/meta-rcar-gen3/conf/machine/h3ulcb.conf index bb01294..9dc386e 100644 --- a/meta-rcar-gen3/conf/machine/h3ulcb.conf +++ b/meta-rcar-gen3/conf/machine/h3ulcb.conf @@ -17,7 +17,9 @@ USE_32BIT_MMP ?= "0" MACHINE_FEATURES = "" KERNEL_IMAGETYPE = "Image" -IMAGE_FSTYPES_append = " tar.bz2 ext4" + +#cpio do not support extended attribut, so cpio image when smack is used +IMAGE_FSTYPES ?= "tar.bz2 ext4 ${@bb.utils.contains('DISTRO_FEATURES', 'smack', '', 'cpio.gz', d)}" SERIAL_CONSOLE = "115200 ttySC0" @@ -36,8 +38,9 @@ PREFERRED_VERSION_u-boot = "v2015.04%" EXTRA_IMAGEDEPENDS += " u-boot" UBOOT_MACHINE = "h3ulcb_defconfig" -# libdrm +# libdrm + mesa PREFERRED_VERSION_libdrm = "2.4.85" +PREFERRED_VERSION_mesa = "17.%" # Add variable to Build Configuration in build log BUILDCFG_VARS_append = " SOC_FAMILY" diff --git a/meta-rcar-gen3/conf/machine/m3ulcb.conf b/meta-rcar-gen3/conf/machine/m3ulcb.conf index a864c29..b12d22e 100644 --- a/meta-rcar-gen3/conf/machine/m3ulcb.conf +++ b/meta-rcar-gen3/conf/machine/m3ulcb.conf @@ -17,7 +17,9 @@ USE_32BIT_MMP ?= "0" MACHINE_FEATURES = "" KERNEL_IMAGETYPE = "Image" -IMAGE_FSTYPES_append = " tar.bz2 ext4" + +#cpio do not support extended attribut, so cpio image when smack is used +IMAGE_FSTYPES ?= "tar.bz2 ext4 ${@bb.utils.contains('DISTRO_FEATURES', 'smack', '', 'cpio.gz', d)}" SERIAL_CONSOLE = "115200 ttySC0" @@ -33,8 +35,9 @@ PREFERRED_VERSION_u-boot = "v2015.04%" EXTRA_IMAGEDEPENDS += " u-boot" UBOOT_MACHINE = "m3ulcb_defconfig" -# libdrm +# libdrm + mesa PREFERRED_VERSION_libdrm = "2.4.85" +PREFERRED_VERSION_mesa = "17.%" # Add variable to Build Configuration in build log BUILDCFG_VARS_append = " SOC_FAMILY" diff --git a/meta-rcar-gen3/conf/machine/salvator-x.conf b/meta-rcar-gen3/conf/machine/salvator-x.conf index a7f3352..ee27fc6 100644 --- a/meta-rcar-gen3/conf/machine/salvator-x.conf +++ b/meta-rcar-gen3/conf/machine/salvator-x.conf @@ -23,7 +23,9 @@ USE_32BIT_MMP ?= "0" MACHINE_FEATURES = "" KERNEL_IMAGETYPE = "Image" -IMAGE_FSTYPES_append = " tar.bz2 ext4" + +#cpio do not support extended attribut, so cpio image when smack is used +IMAGE_FSTYPES ?= "tar.bz2 ext4 ${@bb.utils.contains('DISTRO_FEATURES', 'smack', '', 'cpio.gz', d)}" SERIAL_CONSOLE = "115200 ttySC0" @@ -40,6 +42,7 @@ KERNEL_DEVICETREE_r8a7796 = " \ renesas/r8a7796-salvator-x.dtb \ renesas/r8a7796-salvator-xs.dtb \ " + # Device tree for M3N KERNEL_DEVICETREE_r8a77965 = " \ renesas/r8a77965-salvator-x.dtb \ @@ -59,8 +62,9 @@ UBOOT_MACHINE_r8a7796 = "r8a7796_salvator-x_defconfig" # M3N u-boot configure UBOOT_MACHINE_r8a77965 = "r8a77965_salvator-x_defconfig" -# libdrm +# libdrm + mesa PREFERRED_VERSION_libdrm = "2.4.85" +PREFERRED_VERSION_mesa = "17.%" # Add variable to Build Configuration in build log BUILDCFG_VARS_append = " SOC_FAMILY" |