Re: [yocto] [PATCH 1/1] mesa-dri.bbappend: avoid buildtime warnings

2012-10-19 Thread Burton, Ross
On 19 October 2012 01:00,   wrote:
> From: Nitin A Kamble 
>
> Extend the mesa-dri recipe from oecore to avoid conflict with
> files generated by emgd-driver-bin recipe.

Ack.

Ross
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] [PATCH 1/1] mesa-dri.bbappend: avoid buildtime warnings

2012-10-18 Thread Kamble, Nitin A
Rahul,
   FYI, This commit will also avoid similar warnings for cedar-trail build.

Nitin

> -Original Message-
> From: Kamble, Nitin A
> Sent: Thursday, October 18, 2012 5:00 PM
> To: yocto@yoctoproject.org; Zanussi, Tom; Hart, Darren
> Cc: Kamble, Nitin A
> Subject: [PATCH 1/1] mesa-dri.bbappend: avoid buildtime warnings
> 
> From: Nitin A Kamble 
> 
> Extend the mesa-dri recipe from oecore to avoid conflict with files generated
> by emgd-driver-bin recipe.
> 
> This commits avoids these build warning
> 
> WARNING: The recipe is trying to install files into a shared area when those
> files already exist. Those files are:
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/KHR/khrplatform.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/EGL/eglplatform.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/EGL/eglext.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/EGL/egl.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES/glplatform.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES/gl.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES/glext.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2ext.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2.h
>/srv/home/nitin/build-test-bsps/build-
> crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2platform.h
> 
> This resolves part of the issue reported on the bug:
> [Yocto #3238]
> 
> This is a temporary fix, and will be fixed differently after 1.3 release.
> 
> Signed-off-by: Nitin A Kamble 
> ---
>  .../recipes-graphics/mesa/mesa-dri_8.0.4.bbappend  |5 +
>  1 files changed, 5 insertions(+), 0 deletions(-)  create mode 100644
> common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
> 
> diff --git a/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
> b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
> new file mode 100644
> index 000..90e4394
> --- /dev/null
> +++ b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
> @@ -0,0 +1,5 @@
> +# Temporary avoid warnings of duplicate files providers until #
> +mesa-dri & emgd-driver-bin recipes are fixed SSTATE_DUPWHITELIST +=
> +"${STAGING_INCDIR}/KHR ${STAGING_INCDIR}/EGL \
> +${STAGING_INCDIR}/GLES ${STAGING_INCDIR}/GLES2"
> +
> --
> 1.7.3.4

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] [PATCH 1/1] mesa-dri.bbappend: avoid buildtime warnings

2012-10-18 Thread nitin . a . kamble
From: Nitin A Kamble 

Extend the mesa-dri recipe from oecore to avoid conflict with
files generated by emgd-driver-bin recipe.

This commits avoids these build warning

WARNING: The recipe is trying to install files into a shared area when those 
files already exist. Those files are:
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/KHR/khrplatform.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/EGL/eglplatform.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/EGL/eglext.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/EGL/egl.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES/glplatform.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES/gl.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES/glext.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2ext.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2.h
   
/srv/home/nitin/build-test-bsps/build-crownbay/tmp/sysroots/crownbay/usr/include/GLES2/gl2platform.h

This resolves part of the issue reported on the bug:
[Yocto #3238]

This is a temporary fix, and will be fixed differently after 1.3 release.

Signed-off-by: Nitin A Kamble 
---
 .../recipes-graphics/mesa/mesa-dri_8.0.4.bbappend  |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)
 create mode 100644 common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend

diff --git a/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend 
b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
new file mode 100644
index 000..90e4394
--- /dev/null
+++ b/common/recipes-graphics/mesa/mesa-dri_8.0.4.bbappend
@@ -0,0 +1,5 @@
+# Temporary avoid warnings of duplicate files providers until
+# mesa-dri & emgd-driver-bin recipes are fixed
+SSTATE_DUPWHITELIST += "${STAGING_INCDIR}/KHR ${STAGING_INCDIR}/EGL \
+${STAGING_INCDIR}/GLES ${STAGING_INCDIR}/GLES2"
+
-- 
1.7.3.4

___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto