All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore
@ 2013-01-13 16:23 Andrei Gherzan
  2013-01-13 16:23 ` [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1 Andrei Gherzan
  2013-01-24 19:10 ` [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
  0 siblings, 2 replies; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-13 16:23 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 common/recipes-multimedia/ffmpeg/ffmpeg.inc       |  110 ---------------------
 common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb |   44 ---------
 2 files changed, 154 deletions(-)
 delete mode 100644 common/recipes-multimedia/ffmpeg/ffmpeg.inc
 delete mode 100644 common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb

diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg.inc b/common/recipes-multimedia/ffmpeg/ffmpeg.inc
deleted file mode 100644
index 3ce950e..0000000
--- a/common/recipes-multimedia/ffmpeg/ffmpeg.inc
+++ /dev/null
@@ -1,110 +0,0 @@
-DESCRIPTION = "FFmpeg is a complete solution to record, convert and stream audio and video"
-HOMEPAGE = "http://ffmpeg.mplayerhq.hu/"
-AUTHOR = "Fabrice Bellard ffmpeg-devel@mplayerhq.hu"
-SECTION = "libs"
-PRIORITY = "optional"
-LICENSE = "GPLv2+ & LGPLv2.1+"
-
-LICENSE_FLAGS = "commercial"
-
-ARM_INSTRUCTION_SET = "arm"
-
-DEPENDS = "zlib libogg libvorbis libtheora liba52 libva yasm-native"
-
-INC_PR = "r0"
-
-inherit autotools pkgconfig
-
-LEAD_SONAME = "libavcodec.so"
-
-EXTRA_OECONF = "\
-        \
-        --enable-pp \
-        --enable-shared \
-        --enable-pthreads \
-        --enable-gpl \
-        \
-        --cross-prefix=${TARGET_PREFIX} \
-        --disable-debug \
-        --disable-ffserver \
-        --disable-ffplay \
-        \
-"
-
-EXTRA_OECONF_append_powerpc += "--${@['disable-altivec','enable-altivec'][bb.data.getVar('BASE_PACKAGE_ARCH',d,1) in ['ppce600']]}"
-
-FFMPEG_LIBS = "libavcodec libavdevice libavformat \
-               libavutil libpostproc libswscale libavfilter"
-
-SYSROOT_PREPROCESS_FUNCS = " \
-  ffmpeg_stage_cleanup \
-  ffmpeg_create_compat_links"
-
-ffmpeg_create_compat_links() {
-        rm -rf ${SYSROOT_DESTDIR}${includedir}/ffmpeg
-        mkdir -m 0755 ${SYSROOT_DESTDIR}${includedir}/ffmpeg
-        cd ${SYSROOT_DESTDIR}${includedir}/ffmpeg
-
-        for lib in ${FFMPEG_LIBS}; do
-                ln -s ../$lib/*.h '.' || true
-        done
-}
-
-ffmpeg_stage_cleanup() {
-        rm -rf ${SYSROOT_DESTDIR}${libdir}/vhook \
-        ${SYSROOT_DESTDIR}${datadir}
-}
-
-PACKAGES += "${PN}-vhook-dbg ${PN}-vhook"
-
-FILES_${PN} = "${bindir}"
-FILES_${PN}-dev = "${includedir}/${PN}"
-
-FILES_${PN}-vhook = "${libdir}/vhook"
-FILES_${PN}-vhook-dbg += "${libdir}/vhook/.debug"
-
-PACKAGES += "ffmpeg-x264-presets \
-             libavcodec  libavcodec-dev  libavcodec-dbg \
-             libavdevice libavdevice-dev libavdevice-dbg \
-             libavformat libavformat-dev libavformat-dbg \
-             libavutil   libavutil-dev   libavutil-dbg \
-             libpostproc libpostproc-dev libpostproc-dbg \
-             libswscale  libswscale-dev  libswscale-dbg \
-             libavfilter libavfilter-dev libavfilter-dbg \
-             libavcore   libavcore-dev   libavcore-dbg \
-            "
-
-FILES_ffmpeg-x264-presets = "${datadir}/*.ffpreset"
-
-FILES_${PN}-dev = "${includedir}"
-FILES_libavcodec = "${libdir}/libavcodec*.so.*"
-FILES_libavcodec-dev = "${libdir}/libavcodec*.so ${libdir}/pkgconfig/libavcodec.pc ${libdir}/libavcodec*.a"
-FILES_libavcodec-dbg += "${libdir}/.debug/libavcodec*"
-
-FILES_libavdevice = "${libdir}/libavdevice*.so.*"
-FILES_libavdevice-dev = "${libdir}/libavdevice*.so ${libdir}/pkgconfig/libavdevice.pc ${libdir}/libavdevice*.a"
-FILES_libavdevice-dbg += "${libdir}/.debug/libavdevice*"
-
-FILES_libavformat = "${libdir}/libavformat*.so.*"
-FILES_libavformat-dev = "${libdir}/libavformat*.so ${libdir}/pkgconfig/libavformat.pc ${libdir}/libavformat*.a"
-FILES_libavformat-dbg += "${libdir}/.debug/libavformat*"
-
-FILES_libavutil = "${libdir}/libavutil*.so.*"
-FILES_libavutil-dev = "${libdir}/libavutil*.so ${libdir}/pkgconfig/libavutil.pc ${libdir}/libavutil*.a"
-FILES_libavutil-dbg += "${libdir}/.debug/libavutil*"
-
-FILES_libpostproc = "${libdir}/libpostproc*.so.*"
-FILES_libpostproc-dev = "${libdir}/libpostproc*.so  ${libdir}/pkgconfig/libpostproc.pc ${libdir}/libpostproc*.a ${includedir}/postproc"
-FILES_libpostproc-dbg += "${libdir}/.debug/libpostproc*"
-
-FILES_libswscale = "${libdir}/libswscale*.so.*"
-FILES_libswscale-dev = "${libdir}/libswscale*.so ${libdir}/pkgconfig/libswscale.pc ${libdir}/libswscale*.a"
-FILES_libswscale-dbg += "${libdir}/.debug/libswscale*"
-
-FILES_libavfilter = "${libdir}/libavfilter*.so.*"
-FILES_libavfilter-dev = "${libdir}/libavfilter*.so ${libdir}/pkgconfig/libavfilter.pc ${libdir}/libavfilter*.a"
-FILES_libavfilter-dbg += "${libdir}/.debug/libavfilter*"
-
-FILES_libavcore = "${libdir}/libavcore*.so.*"
-FILES_libavcore-dev = "${libdir}/libavcore*.so ${libdir}/pkgconfig/libavcore.pc ${libdir}/libavcore*.a"
-FILES_libavcore-dbg += "${libdir}/.debug/libavcore*"
diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb b/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
deleted file mode 100644
index cf97a19..0000000
--- a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
+++ /dev/null
@@ -1,44 +0,0 @@
-require ffmpeg.inc
-
-LICENSE = "LGPLv2.1+ & GPLv2+"
-PR = "${INC_PR}.2"
-
-SRC_URI = "http://ffmpeg.org/releases/ffmpeg-${PV}.tar.bz2"
-SRC_URI[md5sum] = "b4e3653b2dd930cfa2a80722f8b03182"
-SRC_URI[sha256sum] = "786511d75e5a1f95ec16ed9f0b4a3f49f145e134b8f2ccdfa9ecd2d35ff36000"
-
-LIC_FILES_CHKSUM = "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
-                    file://libpostproc/postprocess.c;beginline=8;endline=21;md5=3163771dd725805aeda961a4e05173b5 \
-                    file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \
-                    file://ffmpeg.c;beginline=7;endline=20;md5=9dee9cc51a9da6c3254d39ebf4d5aa03"
-
-EXTRA_FFCONF_armv7a = "--cpu=cortex-a8"
-EXTRA_FFCONF_mipsel = "--arch=mips"
-
-EXTRA_OECONF = " \
-        --arch=${TARGET_ARCH} \
-        --cross-prefix=${TARGET_PREFIX} \
-        --disable-stripping \
-        --enable-cross-compile \
-        --enable-libtheora  \
-        --enable-libvorbis \
-        --enable-pthreads \
-        --enable-shared \
-        --enable-swscale \
-        --enable-vaapi \
-        --enable-gpl \
-        --enable-yasm \
-        --extra-cflags="${TARGET_CFLAGS} ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \
-        --extra-ldflags="${TARGET_LDFLAGS}" \
-        --sysroot="${STAGING_DIR_TARGET}" \
-        --prefix=${prefix}/ \
-        --target-os=linux \
-        ${EXTRA_FFCONF} \
-"
-
-do_configure() {
-        ./configure ${EXTRA_OECONF}
-}
-
-FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations  -ftree-vectorize -fomit-frame-pointer -O4 -ffast-math"
-BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 16:23 [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
@ 2013-01-13 16:23 ` Andrei Gherzan
  2013-01-13 16:44   ` Ross Burton
  2013-01-24 19:10 ` [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
  1 sibling, 1 reply; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-13 16:23 UTC (permalink / raw)
  To: yocto

Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
 meta-fri2/conf/machine/fri2.conf |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
index 0efba2a..07ad750 100644
--- a/meta-fri2/conf/machine/fri2.conf
+++ b/meta-fri2/conf/machine/fri2.conf
@@ -27,7 +27,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
            "
 
 PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
-PREFERRED_VERSION_mesa-dri ?= "8.0.4"
+PREFERRED_VERSION_mesa-dri ?= "9.0.1"
 PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
 PREFERRED_VERSION_emgd-driver-bin ?= "1.14"
 
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 16:23 ` [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1 Andrei Gherzan
@ 2013-01-13 16:44   ` Ross Burton
  2013-01-13 19:39     ` Andrei Gherzan
  0 siblings, 1 reply; 12+ messages in thread
From: Ross Burton @ 2013-01-13 16:44 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

Sorry for top posting... Have you verified that GL still works with this major version bump? 

Ross-- 
Ross Burton
Sent with Sparrow (http://www.sparrowmailapp.com/?sig)


On Sunday, 13 January 2013 at 16:23, Andrei Gherzan wrote:

> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
> meta-fri2/conf/machine/fri2.conf | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-fri2/conf/machine/fri2.conf b/meta-fri2/conf/machine/fri2.conf
> index 0efba2a..07ad750 100644
> --- a/meta-fri2/conf/machine/fri2.conf
> +++ b/meta-fri2/conf/machine/fri2.conf
> @@ -27,7 +27,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
> "
> PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
> -PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> +PREFERRED_VERSION_mesa-dri ?= "9.0.1"
> PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
> PREFERRED_VERSION_emgd-driver-bin ?= "1.14"
> -- 
> 1.7.10.4
> 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
> 
> 



[-- Attachment #2: Type: text/html, Size: 1761 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 16:44   ` Ross Burton
@ 2013-01-13 19:39     ` Andrei Gherzan
  2013-01-13 20:03       ` Ross Burton
  0 siblings, 1 reply; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-13 19:39 UTC (permalink / raw)
  To: Ross Burton; +Cc: Yocto Project

[-- Attachment #1: Type: text/plain, Size: 1062 bytes --]

On Sun, Jan 13, 2013 at 6:44 PM, Ross Burton <ross.burton@intel.com> wrote:

>  Sorry for top posting... Have you verified that GL still works with this
> major version bump?
>
> Ross
> --
> Ross Burton
> Sent with Sparrow <http://www.sparrowmailapp.com/?sig>
>
> On Sunday, 13 January 2013 at 16:23, Andrei Gherzan wrote:
>
> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
> meta-fri2/conf/machine/fri2.conf | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-fri2/conf/machine/fri2.conf
> b/meta-fri2/conf/machine/fri2.conf
> index 0efba2a..07ad750 100644
> --- a/meta-fri2/conf/machine/fri2.conf
> +++ b/meta-fri2/conf/machine/fri2.conf
> @@ -27,7 +27,7 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
> "
> PREFERRED_VERSION_xserver-xorg ?= "1.9.3"
> -PREFERRED_VERSION_mesa-dri ?= "8.0.4"
> +PREFERRED_VERSION_mesa-dri ?= "9.0.1"
> PREFERRED_VERSION_xf86-input-evdev ?= "2.6.0"
> PREFERRED_VERSION_emgd-driver-bin ?= "1.14"
>
> Tested with a new sato build on master. Everything seems to be OK.

ag

[-- Attachment #2: Type: text/html, Size: 2041 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 19:39     ` Andrei Gherzan
@ 2013-01-13 20:03       ` Ross Burton
  2013-01-13 21:06         ` Andrei Gherzan
  0 siblings, 1 reply; 12+ messages in thread
From: Ross Burton @ 2013-01-13 20:03 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: Yocto Project

On Sunday, 13 January 2013 at 19:39, Andrei Gherzan wrote:
> Tested with a new sato build on master. Everything seems to be OK. 

glxinfo/glxgears or something that actually uses the hardware? 

Ross


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 20:03       ` Ross Burton
@ 2013-01-13 21:06         ` Andrei Gherzan
  2013-01-24 19:06           ` Andrei Gherzan
  0 siblings, 1 reply; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-13 21:06 UTC (permalink / raw)
  To: Ross Burton; +Cc: Yocto Project

[-- Attachment #1: Type: text/plain, Size: 304 bytes --]

On Sun, Jan 13, 2013 at 10:03 PM, Ross Burton <ross.burton@intel.com> wrote:

> On Sunday, 13 January 2013 at 19:39, Andrei Gherzan wrote:
> > Tested with a new sato build on master. Everything seems to be OK.
>
> glxinfo/glxgears or something that actually uses the hardware?
>

Yes. That too.

[-- Attachment #2: Type: text/html, Size: 660 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-13 21:06         ` Andrei Gherzan
@ 2013-01-24 19:06           ` Andrei Gherzan
  2013-01-24 22:22             ` Burton, Ross
  2013-01-25  5:36             ` Tom Zanussi
  0 siblings, 2 replies; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-24 19:06 UTC (permalink / raw)
  To: Ross Burton; +Cc: Yocto Project

[-- Attachment #1: Type: text/plain, Size: 473 bytes --]

On Sun, Jan 13, 2013 at 11:06 PM, Andrei Gherzan <andrei@gherzan.ro> wrote:

> On Sun, Jan 13, 2013 at 10:03 PM, Ross Burton <ross.burton@intel.com>wrote:
>
>> On Sunday, 13 January 2013 at 19:39, Andrei Gherzan wrote:
>> > Tested with a new sato build on master. Everything seems to be OK.
>>
>> glxinfo/glxgears or something that actually uses the hardware?
>>
>
> Yes. That too.
>

Ping.

-- 
*Andrei Gherzan*
m: +40.744.478.414 |  f: +40.31.816.28.12

[-- Attachment #2: Type: text/html, Size: 1565 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore
  2013-01-13 16:23 [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
  2013-01-13 16:23 ` [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1 Andrei Gherzan
@ 2013-01-24 19:10 ` Andrei Gherzan
  2013-01-25  5:36   ` Tom Zanussi
  1 sibling, 1 reply; 12+ messages in thread
From: Andrei Gherzan @ 2013-01-24 19:10 UTC (permalink / raw)
  To: Yocto Project

[-- Attachment #1: Type: text/plain, Size: 7307 bytes --]

Ping


On Sun, Jan 13, 2013 at 6:23 PM, Andrei Gherzan <andrei@gherzan.ro> wrote:

> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
>  common/recipes-multimedia/ffmpeg/ffmpeg.inc       |  110
> ---------------------
>  common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb |   44 ---------
>  2 files changed, 154 deletions(-)
>  delete mode 100644 common/recipes-multimedia/ffmpeg/ffmpeg.inc
>  delete mode 100644 common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
>
> diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg.inc
> b/common/recipes-multimedia/ffmpeg/ffmpeg.inc
> deleted file mode 100644
> index 3ce950e..0000000
> --- a/common/recipes-multimedia/ffmpeg/ffmpeg.inc
> +++ /dev/null
> @@ -1,110 +0,0 @@
> -DESCRIPTION = "FFmpeg is a complete solution to record, convert and
> stream audio and video"
> -HOMEPAGE = "http://ffmpeg.mplayerhq.hu/"
> -AUTHOR = "Fabrice Bellard ffmpeg-devel@mplayerhq.hu"
> -SECTION = "libs"
> -PRIORITY = "optional"
> -LICENSE = "GPLv2+ & LGPLv2.1+"
> -
> -LICENSE_FLAGS = "commercial"
> -
> -ARM_INSTRUCTION_SET = "arm"
> -
> -DEPENDS = "zlib libogg libvorbis libtheora liba52 libva yasm-native"
> -
> -INC_PR = "r0"
> -
> -inherit autotools pkgconfig
> -
> -LEAD_SONAME = "libavcodec.so"
> -
> -EXTRA_OECONF = "\
> -        \
> -        --enable-pp \
> -        --enable-shared \
> -        --enable-pthreads \
> -        --enable-gpl \
> -        \
> -        --cross-prefix=${TARGET_PREFIX} \
> -        --disable-debug \
> -        --disable-ffserver \
> -        --disable-ffplay \
> -        \
> -"
> -
> -EXTRA_OECONF_append_powerpc +=
> "--${@['disable-altivec','enable-altivec'][bb.data.getVar('BASE_PACKAGE_ARCH',d,1)
> in ['ppce600']]}"
> -
> -FFMPEG_LIBS = "libavcodec libavdevice libavformat \
> -               libavutil libpostproc libswscale libavfilter"
> -
> -SYSROOT_PREPROCESS_FUNCS = " \
> -  ffmpeg_stage_cleanup \
> -  ffmpeg_create_compat_links"
> -
> -ffmpeg_create_compat_links() {
> -        rm -rf ${SYSROOT_DESTDIR}${includedir}/ffmpeg
> -        mkdir -m 0755 ${SYSROOT_DESTDIR}${includedir}/ffmpeg
> -        cd ${SYSROOT_DESTDIR}${includedir}/ffmpeg
> -
> -        for lib in ${FFMPEG_LIBS}; do
> -                ln -s ../$lib/*.h '.' || true
> -        done
> -}
> -
> -ffmpeg_stage_cleanup() {
> -        rm -rf ${SYSROOT_DESTDIR}${libdir}/vhook \
> -        ${SYSROOT_DESTDIR}${datadir}
> -}
> -
> -PACKAGES += "${PN}-vhook-dbg ${PN}-vhook"
> -
> -FILES_${PN} = "${bindir}"
> -FILES_${PN}-dev = "${includedir}/${PN}"
> -
> -FILES_${PN}-vhook = "${libdir}/vhook"
> -FILES_${PN}-vhook-dbg += "${libdir}/vhook/.debug"
> -
> -PACKAGES += "ffmpeg-x264-presets \
> -             libavcodec  libavcodec-dev  libavcodec-dbg \
> -             libavdevice libavdevice-dev libavdevice-dbg \
> -             libavformat libavformat-dev libavformat-dbg \
> -             libavutil   libavutil-dev   libavutil-dbg \
> -             libpostproc libpostproc-dev libpostproc-dbg \
> -             libswscale  libswscale-dev  libswscale-dbg \
> -             libavfilter libavfilter-dev libavfilter-dbg \
> -             libavcore   libavcore-dev   libavcore-dbg \
> -            "
> -
> -FILES_ffmpeg-x264-presets = "${datadir}/*.ffpreset"
> -
> -FILES_${PN}-dev = "${includedir}"
> -FILES_libavcodec = "${libdir}/libavcodec*.so.*"
> -FILES_libavcodec-dev = "${libdir}/libavcodec*.so
> ${libdir}/pkgconfig/libavcodec.pc ${libdir}/libavcodec*.a"
> -FILES_libavcodec-dbg += "${libdir}/.debug/libavcodec*"
> -
> -FILES_libavdevice = "${libdir}/libavdevice*.so.*"
> -FILES_libavdevice-dev = "${libdir}/libavdevice*.so
> ${libdir}/pkgconfig/libavdevice.pc ${libdir}/libavdevice*.a"
> -FILES_libavdevice-dbg += "${libdir}/.debug/libavdevice*"
> -
> -FILES_libavformat = "${libdir}/libavformat*.so.*"
> -FILES_libavformat-dev = "${libdir}/libavformat*.so
> ${libdir}/pkgconfig/libavformat.pc ${libdir}/libavformat*.a"
> -FILES_libavformat-dbg += "${libdir}/.debug/libavformat*"
> -
> -FILES_libavutil = "${libdir}/libavutil*.so.*"
> -FILES_libavutil-dev = "${libdir}/libavutil*.so
> ${libdir}/pkgconfig/libavutil.pc ${libdir}/libavutil*.a"
> -FILES_libavutil-dbg += "${libdir}/.debug/libavutil*"
> -
> -FILES_libpostproc = "${libdir}/libpostproc*.so.*"
> -FILES_libpostproc-dev = "${libdir}/libpostproc*.so
>  ${libdir}/pkgconfig/libpostproc.pc ${libdir}/libpostproc*.a
> ${includedir}/postproc"
> -FILES_libpostproc-dbg += "${libdir}/.debug/libpostproc*"
> -
> -FILES_libswscale = "${libdir}/libswscale*.so.*"
> -FILES_libswscale-dev = "${libdir}/libswscale*.so
> ${libdir}/pkgconfig/libswscale.pc ${libdir}/libswscale*.a"
> -FILES_libswscale-dbg += "${libdir}/.debug/libswscale*"
> -
> -FILES_libavfilter = "${libdir}/libavfilter*.so.*"
> -FILES_libavfilter-dev = "${libdir}/libavfilter*.so
> ${libdir}/pkgconfig/libavfilter.pc ${libdir}/libavfilter*.a"
> -FILES_libavfilter-dbg += "${libdir}/.debug/libavfilter*"
> -
> -FILES_libavcore = "${libdir}/libavcore*.so.*"
> -FILES_libavcore-dev = "${libdir}/libavcore*.so
> ${libdir}/pkgconfig/libavcore.pc ${libdir}/libavcore*.a"
> -FILES_libavcore-dbg += "${libdir}/.debug/libavcore*"
> diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bbb/common/recipes-multimedia/ffmpeg/
> ffmpeg_0.7.12.bb
> deleted file mode 100644
> index cf97a19..0000000
> --- a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
> +++ /dev/null
> @@ -1,44 +0,0 @@
> -require ffmpeg.inc
> -
> -LICENSE = "LGPLv2.1+ & GPLv2+"
> -PR = "${INC_PR}.2"
> -
> -SRC_URI = "http://ffmpeg.org/releases/ffmpeg-${PV}.tar.bz2"
> -SRC_URI[md5sum] = "b4e3653b2dd930cfa2a80722f8b03182"
> -SRC_URI[sha256sum] =
> "786511d75e5a1f95ec16ed9f0b4a3f49f145e134b8f2ccdfa9ecd2d35ff36000"
> -
> -LIC_FILES_CHKSUM =
> "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> -
>  file://libpostproc/postprocess.c;beginline=8;endline=21;md5=3163771dd725805aeda961a4e05173b5
> \
> -
>  file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379 \
> -
>  file://ffmpeg.c;beginline=7;endline=20;md5=9dee9cc51a9da6c3254d39ebf4d5aa03"
> -
> -EXTRA_FFCONF_armv7a = "--cpu=cortex-a8"
> -EXTRA_FFCONF_mipsel = "--arch=mips"
> -
> -EXTRA_OECONF = " \
> -        --arch=${TARGET_ARCH} \
> -        --cross-prefix=${TARGET_PREFIX} \
> -        --disable-stripping \
> -        --enable-cross-compile \
> -        --enable-libtheora  \
> -        --enable-libvorbis \
> -        --enable-pthreads \
> -        --enable-shared \
> -        --enable-swscale \
> -        --enable-vaapi \
> -        --enable-gpl \
> -        --enable-yasm \
> -        --extra-cflags="${TARGET_CFLAGS}
> ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \
> -        --extra-ldflags="${TARGET_LDFLAGS}" \
> -        --sysroot="${STAGING_DIR_TARGET}" \
> -        --prefix=${prefix}/ \
> -        --target-os=linux \
> -        ${EXTRA_FFCONF} \
> -"
> -
> -do_configure() {
> -        ./configure ${EXTRA_OECONF}
> -}
> -
> -FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations  -ftree-vectorize
> -fomit-frame-pointer -O4 -ffast-math"
> -BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
> --
> 1.7.10.4
>
>


-- 
*Andrei Gherzan*
m: +40.744.478.414 |  f: +40.31.816.28.12

[-- Attachment #2: Type: text/html, Size: 9570 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-24 19:06           ` Andrei Gherzan
@ 2013-01-24 22:22             ` Burton, Ross
  2013-01-24 23:54               ` Tom Zanussi
  2013-01-25  5:36             ` Tom Zanussi
  1 sibling, 1 reply; 12+ messages in thread
From: Burton, Ross @ 2013-01-24 22:22 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: Yocto Project

On 24 January 2013 19:06, Andrei Gherzan <andrei@gherzan.ro> wrote:
> Ping.

Your pings are misdirected - the meta-intel patches should now be
going to meta-intel@yoctoproject.org.

Ross


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-24 22:22             ` Burton, Ross
@ 2013-01-24 23:54               ` Tom Zanussi
  0 siblings, 0 replies; 12+ messages in thread
From: Tom Zanussi @ 2013-01-24 23:54 UTC (permalink / raw)
  To: Burton, Ross; +Cc: Yocto Project

On Thu, 2013-01-24 at 22:22 +0000, Burton, Ross wrote:
> On 24 January 2013 19:06, Andrei Gherzan <andrei@gherzan.ro> wrote:
> > Ping.
> 
> Your pings are misdirected - the meta-intel patches should now be
> going to meta-intel@yoctoproject.org.
> 

Oops, yeah, I somehow missed these, sorry - let me try them out and I'll
pull them in.

And I just noticed the meta-intel MAINTAINERS still has the old address
(thought I had fixed that, guess not), so will fix that too..

Tom 


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




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1
  2013-01-24 19:06           ` Andrei Gherzan
  2013-01-24 22:22             ` Burton, Ross
@ 2013-01-25  5:36             ` Tom Zanussi
  1 sibling, 0 replies; 12+ messages in thread
From: Tom Zanussi @ 2013-01-25  5:36 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: Yocto Project

On Thu, 2013-01-24 at 21:06 +0200, Andrei Gherzan wrote:
> On Sun, Jan 13, 2013 at 11:06 PM, Andrei Gherzan <andrei@gherzan.ro>
> wrote:
>         On Sun, Jan 13, 2013 at 10:03 PM, Ross Burton
>         <ross.burton@intel.com> wrote:
>         
>                 On Sunday, 13 January 2013 at 19:39, Andrei Gherzan
>                 wrote:
>                 > Tested with a new sato build on master. Everything
>                 seems to be OK.
>                 
>                 
>                 glxinfo/glxgears or something that actually uses the
>                 hardware?
>         
>         
>         Yes. That too. 
> 
> Ping.
> 

Pulled into meta-intel/master.

Thanks,

Tom

> 
> -- 
> 
> Andrei Gherzan
> m: +40.744.478.414 |  f: +40.31.816.28.12
> 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore
  2013-01-24 19:10 ` [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
@ 2013-01-25  5:36   ` Tom Zanussi
  0 siblings, 0 replies; 12+ messages in thread
From: Tom Zanussi @ 2013-01-25  5:36 UTC (permalink / raw)
  To: Andrei Gherzan; +Cc: Yocto Project

On Thu, 2013-01-24 at 21:10 +0200, Andrei Gherzan wrote:
> Ping
> 

Pulled into meta-intel/master.

Thanks,

Tom

> 
> On Sun, Jan 13, 2013 at 6:23 PM, Andrei Gherzan <andrei@gherzan.ro>
> wrote:
>         Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
>         ---
>          common/recipes-multimedia/ffmpeg/ffmpeg.inc       |  110
>         ---------------------
>          common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb |   44
>         ---------
>          2 files changed, 154 deletions(-)
>          delete mode 100644
>         common/recipes-multimedia/ffmpeg/ffmpeg.inc
>          delete mode 100644
>         common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
>         
>         diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg.inc
>         b/common/recipes-multimedia/ffmpeg/ffmpeg.inc
>         deleted file mode 100644
>         index 3ce950e..0000000
>         --- a/common/recipes-multimedia/ffmpeg/ffmpeg.inc
>         +++ /dev/null
>         @@ -1,110 +0,0 @@
>         -DESCRIPTION = "FFmpeg is a complete solution to record,
>         convert and stream audio and video"
>         -HOMEPAGE = "http://ffmpeg.mplayerhq.hu/"
>         -AUTHOR = "Fabrice Bellard ffmpeg-devel@mplayerhq.hu"
>         -SECTION = "libs"
>         -PRIORITY = "optional"
>         -LICENSE = "GPLv2+ & LGPLv2.1+"
>         -
>         -LICENSE_FLAGS = "commercial"
>         -
>         -ARM_INSTRUCTION_SET = "arm"
>         -
>         -DEPENDS = "zlib libogg libvorbis libtheora liba52 libva
>         yasm-native"
>         -
>         -INC_PR = "r0"
>         -
>         -inherit autotools pkgconfig
>         -
>         -LEAD_SONAME = "libavcodec.so"
>         -
>         -EXTRA_OECONF = "\
>         -        \
>         -        --enable-pp \
>         -        --enable-shared \
>         -        --enable-pthreads \
>         -        --enable-gpl \
>         -        \
>         -        --cross-prefix=${TARGET_PREFIX} \
>         -        --disable-debug \
>         -        --disable-ffserver \
>         -        --disable-ffplay \
>         -        \
>         -"
>         -
>         -EXTRA_OECONF_append_powerpc +=
>         "--${@['disable-altivec','enable-altivec'][bb.data.getVar('BASE_PACKAGE_ARCH',d,1) in ['ppce600']]}"
>         -
>         -FFMPEG_LIBS = "libavcodec libavdevice libavformat \
>         -               libavutil libpostproc libswscale libavfilter"
>         -
>         -SYSROOT_PREPROCESS_FUNCS = " \
>         -  ffmpeg_stage_cleanup \
>         -  ffmpeg_create_compat_links"
>         -
>         -ffmpeg_create_compat_links() {
>         -        rm -rf ${SYSROOT_DESTDIR}${includedir}/ffmpeg
>         -        mkdir -m 0755 ${SYSROOT_DESTDIR}${includedir}/ffmpeg
>         -        cd ${SYSROOT_DESTDIR}${includedir}/ffmpeg
>         -
>         -        for lib in ${FFMPEG_LIBS}; do
>         -                ln -s ../$lib/*.h '.' || true
>         -        done
>         -}
>         -
>         -ffmpeg_stage_cleanup() {
>         -        rm -rf ${SYSROOT_DESTDIR}${libdir}/vhook \
>         -        ${SYSROOT_DESTDIR}${datadir}
>         -}
>         -
>         -PACKAGES += "${PN}-vhook-dbg ${PN}-vhook"
>         -
>         -FILES_${PN} = "${bindir}"
>         -FILES_${PN}-dev = "${includedir}/${PN}"
>         -
>         -FILES_${PN}-vhook = "${libdir}/vhook"
>         -FILES_${PN}-vhook-dbg += "${libdir}/vhook/.debug"
>         -
>         -PACKAGES += "ffmpeg-x264-presets \
>         -             libavcodec  libavcodec-dev  libavcodec-dbg \
>         -             libavdevice libavdevice-dev libavdevice-dbg \
>         -             libavformat libavformat-dev libavformat-dbg \
>         -             libavutil   libavutil-dev   libavutil-dbg \
>         -             libpostproc libpostproc-dev libpostproc-dbg \
>         -             libswscale  libswscale-dev  libswscale-dbg \
>         -             libavfilter libavfilter-dev libavfilter-dbg \
>         -             libavcore   libavcore-dev   libavcore-dbg \
>         -            "
>         -
>         -FILES_ffmpeg-x264-presets = "${datadir}/*.ffpreset"
>         -
>         -FILES_${PN}-dev = "${includedir}"
>         -FILES_libavcodec = "${libdir}/libavcodec*.so.*"
>         -FILES_libavcodec-dev = "${libdir}/libavcodec*.so
>         ${libdir}/pkgconfig/libavcodec.pc ${libdir}/libavcodec*.a"
>         -FILES_libavcodec-dbg += "${libdir}/.debug/libavcodec*"
>         -
>         -FILES_libavdevice = "${libdir}/libavdevice*.so.*"
>         -FILES_libavdevice-dev = "${libdir}/libavdevice*.so
>         ${libdir}/pkgconfig/libavdevice.pc ${libdir}/libavdevice*.a"
>         -FILES_libavdevice-dbg += "${libdir}/.debug/libavdevice*"
>         -
>         -FILES_libavformat = "${libdir}/libavformat*.so.*"
>         -FILES_libavformat-dev = "${libdir}/libavformat*.so
>         ${libdir}/pkgconfig/libavformat.pc ${libdir}/libavformat*.a"
>         -FILES_libavformat-dbg += "${libdir}/.debug/libavformat*"
>         -
>         -FILES_libavutil = "${libdir}/libavutil*.so.*"
>         -FILES_libavutil-dev = "${libdir}/libavutil*.so
>         ${libdir}/pkgconfig/libavutil.pc ${libdir}/libavutil*.a"
>         -FILES_libavutil-dbg += "${libdir}/.debug/libavutil*"
>         -
>         -FILES_libpostproc = "${libdir}/libpostproc*.so.*"
>         -FILES_libpostproc-dev = "${libdir}/libpostproc*.so
>          ${libdir}/pkgconfig/libpostproc.pc ${libdir}/libpostproc*.a
>         ${includedir}/postproc"
>         -FILES_libpostproc-dbg += "${libdir}/.debug/libpostproc*"
>         -
>         -FILES_libswscale = "${libdir}/libswscale*.so.*"
>         -FILES_libswscale-dev = "${libdir}/libswscale*.so
>         ${libdir}/pkgconfig/libswscale.pc ${libdir}/libswscale*.a"
>         -FILES_libswscale-dbg += "${libdir}/.debug/libswscale*"
>         -
>         -FILES_libavfilter = "${libdir}/libavfilter*.so.*"
>         -FILES_libavfilter-dev = "${libdir}/libavfilter*.so
>         ${libdir}/pkgconfig/libavfilter.pc ${libdir}/libavfilter*.a"
>         -FILES_libavfilter-dbg += "${libdir}/.debug/libavfilter*"
>         -
>         -FILES_libavcore = "${libdir}/libavcore*.so.*"
>         -FILES_libavcore-dev = "${libdir}/libavcore*.so
>         ${libdir}/pkgconfig/libavcore.pc ${libdir}/libavcore*.a"
>         -FILES_libavcore-dbg += "${libdir}/.debug/libavcore*"
>         diff --git a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
>         b/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
>         deleted file mode 100644
>         index cf97a19..0000000
>         --- a/common/recipes-multimedia/ffmpeg/ffmpeg_0.7.12.bb
>         +++ /dev/null
>         @@ -1,44 +0,0 @@
>         -require ffmpeg.inc
>         -
>         -LICENSE = "LGPLv2.1+ & GPLv2+"
>         -PR = "${INC_PR}.2"
>         -
>         -SRC_URI = "http://ffmpeg.org/releases/ffmpeg-${PV}.tar.bz2"
>         -SRC_URI[md5sum] = "b4e3653b2dd930cfa2a80722f8b03182"
>         -SRC_URI[sha256sum] =
>         "786511d75e5a1f95ec16ed9f0b4a3f49f145e134b8f2ccdfa9ecd2d35ff36000"
>         -
>         -LIC_FILES_CHKSUM =
>         "file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>         -
>          file://libpostproc/postprocess.c;beginline=8;endline=21;md5=3163771dd725805aeda961a4e05173b5 \
>         -
>          file://COPYING.LGPLv2.1;md5=e344c8fa836c3a41c4cbd79d7bd3a379
>         \
>         -
>          file://ffmpeg.c;beginline=7;endline=20;md5=9dee9cc51a9da6c3254d39ebf4d5aa03"
>         -
>         -EXTRA_FFCONF_armv7a = "--cpu=cortex-a8"
>         -EXTRA_FFCONF_mipsel = "--arch=mips"
>         -
>         -EXTRA_OECONF = " \
>         -        --arch=${TARGET_ARCH} \
>         -        --cross-prefix=${TARGET_PREFIX} \
>         -        --disable-stripping \
>         -        --enable-cross-compile \
>         -        --enable-libtheora  \
>         -        --enable-libvorbis \
>         -        --enable-pthreads \
>         -        --enable-shared \
>         -        --enable-swscale \
>         -        --enable-vaapi \
>         -        --enable-gpl \
>         -        --enable-yasm \
>         -        --extra-cflags="${TARGET_CFLAGS}
>         ${HOST_CC_ARCH}${TOOLCHAIN_OPTIONS}" \
>         -        --extra-ldflags="${TARGET_LDFLAGS}" \
>         -        --sysroot="${STAGING_DIR_TARGET}" \
>         -        --prefix=${prefix}/ \
>         -        --target-os=linux \
>         -        ${EXTRA_FFCONF} \
>         -"
>         -
>         -do_configure() {
>         -        ./configure ${EXTRA_OECONF}
>         -}
>         -
>         -FULL_OPTIMIZATION_armv7a = "-fexpensive-optimizations
>          -ftree-vectorize -fomit-frame-pointer -O4 -ffast-math"
>         -BUILD_OPTIMIZATION = "${FULL_OPTIMIZATION}"
>         --
>         1.7.10.4
>         
> 
> 
> 
> 
> -- 
> 
> Andrei Gherzan
> m: +40.744.478.414 |  f: +40.31.816.28.12
> 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto




^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-01-25  5:36 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-13 16:23 [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
2013-01-13 16:23 ` [meta-intel][PATCH 2/2] fri2.conf: mesa-dri was updated to 9.0.1 Andrei Gherzan
2013-01-13 16:44   ` Ross Burton
2013-01-13 19:39     ` Andrei Gherzan
2013-01-13 20:03       ` Ross Burton
2013-01-13 21:06         ` Andrei Gherzan
2013-01-24 19:06           ` Andrei Gherzan
2013-01-24 22:22             ` Burton, Ross
2013-01-24 23:54               ` Tom Zanussi
2013-01-25  5:36             ` Tom Zanussi
2013-01-24 19:10 ` [meta-intel][PATCH 1/2] ffmpeg: Remove package as nobody depends on it anymore Andrei Gherzan
2013-01-25  5:36   ` Tom Zanussi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.