From: Darren Hart <darren.hart@intel.com>
To: nitin.a.kamble@intel.com
Cc: yocto@yoctoproject.org
Subject: Re: [PATCH 3/5] emgd-driver_bin_1.10: drop it as all BSP using EMGD have switched to 1.14 version now
Date: Tue, 09 Oct 2012 15:44:19 -0700 [thread overview]
Message-ID: <5074A8C3.4050501@intel.com> (raw)
In-Reply-To: <14fc20369024f6e7b85640fc4fde431a0f23de4c.1349820369.git.nitin.a.kamble@intel.com>
I'm taking a hard line in meta-intel on commit messages. There are no 1
line commit messages in meta-intel. They must also not have lines over
72 characters or so - this prevent truncation when using "git log" from
an 80 character terminal.
Consider this instead:
----
emgd-driver_bin_1.10: Remove in favor of 1.14
All BSPs have been migrated to 1.14, we can now
safely retire 1.10
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
----
--
Darren
On 10/09/2012 03:10 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble <nitin.a.kamble@intel.com>
>
> Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
> ---
> .../xorg-driver/emgd-driver-bin_1.10.bb | 93 --------------------
> 1 files changed, 0 insertions(+), 93 deletions(-)
> delete mode 100644 common/recipes-graphics/xorg-driver/emgd-driver-bin_1.10.bb
>
> diff --git a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.10.bb b/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.10.bb
> deleted file mode 100644
> index 6d80bee..0000000
> --- a/common/recipes-graphics/xorg-driver/emgd-driver-bin_1.10.bb
> +++ /dev/null
> @@ -1,93 +0,0 @@
> -SUMMARY = "EMGD 1.10 xserver binaries"
> -DESCRIPTION = "EMGD 1.10 includes some userspace binaries that use non-free \
> -licensing, which are now available via a non-click-through downloadable \
> -tarball, and is what this recipe now uses. Since it is a non-free license, \
> -this recipe is marked as 'License_emgd-driver-bin_1.10' and you need to add \
> -to LICENSE_FLAGS_WHITELIST += \"License_emgd-driver-bin_1.10\" to your \
> -local.conf in order to enable it in a build."
> -LICENSE = "Intel-binary-only"
> -LICENSE_FLAGS = "license_${PN}_${PV}"
> -PR = "r1"
> -
> -EMGD_LIC_DIR = "IEMGD_HEAD_Linux/License"
> -EMGD_RPM_DIR = "IEMGD_HEAD_Linux/MeeGo1.2"
> -EMGD_VIDEO_PLUGIN_DIR = "../common/video_plugin"
> -
> -LIC_FILES_CHKSUM = "file://${WORKDIR}/${EMGD_LIC_DIR}/License.txt;md5=b54f01caaf8483b3cb60c0c40f2bf22d"
> -
> -DEPENDS = "rpm-native xz-native"
> -
> -SRC_URI = "https://edc.intel.com/App_Shared/Downloads/LIN_EMGD_1_10_RC_2209.tgz"
> -
> -SRC_URI[md5sum] = "e4a38d9efa0b086ae21b68145c4db4e9"
> -SRC_URI[sha256sum] = "acea5f0f93a31553553428623c007d7ed0c604cf715fd87dfe075751da4be548"
> -
> -# These are closed binaries generated elsewhere so don't check ldflags
> -INSANE_SKIP_${PN} = "ldflags"
> -# Inhibit warnings about files being stripped, we can't do anything about it.
> -INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
> -
> -FILES_${PN} += "${libdir}/dri ${libdir}/gstreamer-0.10 ${libdir}/xorg/modules/drivers"
> -FILES_${PN}-dbg += "${libdir}/xorg/modules/drivers/.debug ${libdir}/dri/.debug"
> -
> -S = "${WORKDIR}/${EMGD_RPM_DIR}"
> -
> -do_install () {
> - # A gstreamer VA buffer library
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/gst-vabuffer*.rpm | cpio -id
> -
> - # MIX Common contains common classes, datatype, header files used by other MIX components
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/mixcommon*.rpm | cpio -id
> -
> - # MIX Video Bitstream Parser is an user library interface for various video format bitstream parsing
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/mixvbp*.rpm | cpio -id
> -
> - # MIX Video is an user library interface for various video codecs available on the platform.
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/mixvideo*.rpm | cpio -id
> -
> - install -d -m 0755 ${D}${libdir}/gstreamer-0.10
> - install -m 0755 ${S}/usr/lib/* ${D}${libdir}/
> -
> - # A gstreamer plugin that uses MIX Video for hardware accelerated video decoding and rendering.
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/gst-plugins-mixvideo*.rpm | cpio -id
> -
> - # A collection of gstreamer plugins that uses VA libraries for hardware accelerated video rendering and text overlay.
> - rpm2cpio ${S}/${EMGD_VIDEO_PLUGIN_DIR}/gst-plugins-va*.rpm | cpio -id
> -
> - install -m 0755 ${S}/usr/lib/gstreamer-0.10/* ${D}${libdir}/gstreamer-0.10/
> -
> - # EMGD runtime graphics libraries
> - rpm2cpio ${S}/emgd-bin*.rpm | xz -d | cpio -id
> -
> - install -d -m 0755 ${D}${libdir}/dri
> - install -d -m 0755 ${D}${libdir}/xorg/modules/drivers
> - install -d -m 0755 ${D}${sysconfdir}
> - install -d -m 0755 ${D}${mandir}/man4
> - install -m 0755 ${S}/usr/lib/*.so.* ${D}${libdir}/
> - install -m 0755 ${S}/usr/lib/dri/* ${D}${libdir}/dri/
> - install -m 0755 ${S}/usr/lib/xorg/modules/drivers/* ${D}${libdir}/xorg/modules/drivers/
> - install -m 0755 ${S}/etc/* ${D}${sysconfdir}/
> - install -m 0755 ${S}/usr/share/man/man4/* ${D}${mandir}/man4/
> -
> - # Khronos development headers needed for EGL, OpenGL-ES, and OpenVG development
> - rpm2cpio ${S}/emgd-devel*.rpm | xz -d | cpio -id
> -
> - install -d -m 0755 ${D}${includedir}/EGL
> - install -m 0755 ${S}/usr/include/EGL/*.h ${D}${includedir}/EGL/
> - install -d -m 0755 ${D}${includedir}/GLES
> - install -m 0755 ${S}/usr/include/GLES/*.h ${D}${includedir}/GLES/
> - install -d -m 0755 ${D}${includedir}/GLES2
> - install -m 0755 ${S}/usr/include/GLES2/*.h ${D}${includedir}/GLES2/
> - install -d -m 0755 ${D}${includedir}/KHR
> - install -m 0755 ${S}/usr/include/KHR/*.h ${D}${includedir}/KHR/
> - install -d -m 0755 ${D}${includedir}/VG
> - install -m 0755 ${S}/usr/include/VG/*.h ${D}${includedir}/VG/
> -
> - ln -sf libEGL.so.1 ${D}${libdir}/libEGL.so
> - ln -sf libGLES_CM.so.1 ${D}${libdir}/libGLES_CM.so
> - ln -sf libGLESv2.so.2 ${D}${libdir}/libGLESv2.so
> - ln -sf libOpenVG.so.1 ${D}${libdir}/libOpenVG.so
> - ln -sf libOpenVGU.so.1 ${D}${libdir}/libOpenVGU.so
> -}
> -
> -LEAD_SONAME = "libEGL.so"
>
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
next prev parent reply other threads:[~2012-10-09 22:45 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-09 22:10 [PATCH 0/5] Misc meta-intel commits nitin.a.kamble
2012-10-09 22:10 ` [PATCH 1/5] xf86-video-intel: Bring 2.20.0 version to match released graphics stack nitin.a.kamble
2012-10-09 22:40 ` Darren Hart
2012-10-09 23:01 ` Kamble, Nitin A
2012-10-09 23:03 ` Darren Hart
2012-10-09 22:10 ` [PATCH 2/5] crownbay.conf: specify the 8.0.4 version as preferred version of mesa-dri nitin.a.kamble
2012-10-09 22:41 ` Darren Hart
2012-10-10 9:24 ` Burton, Ross
2012-10-10 23:10 ` Kamble, Nitin A
2012-10-11 16:53 ` Burton, Ross
2012-10-11 23:39 ` Kamble, Nitin A
2012-10-12 3:55 ` Ross Burton
2012-10-09 22:10 ` [PATCH 3/5] emgd-driver_bin_1.10: drop it as all BSP using EMGD have switched to 1.14 version now nitin.a.kamble
2012-10-09 22:44 ` Darren Hart [this message]
2012-10-09 22:10 ` [PATCH 4/5] fishriver BSP retirement nitin.a.kamble
2012-10-09 22:45 ` Darren Hart
2012-10-09 22:10 ` [PATCH 5/5] update maintainers of various BSPs nitin.a.kamble
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5074A8C3.4050501@intel.com \
--to=darren.hart@intel.com \
--cc=nitin.a.kamble@intel.com \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.