From: Ross Burton <ross.burton@intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 0/4] Mesa and Wayland updates
Date: Thu, 30 May 2013 15:00:33 +0100 [thread overview]
Message-ID: <cover.1369922325.git.ross.burton@intel.com> (raw)
Hi,
A short series that updates our Mesa and Wayland to the latest upstream
releases, adds a very rudimentary init script to start Weston, and a basic image
that boots directly into Weston on DRM.
This image recipe effectively depends on the GTK+ branch I just sent as
otherwise GTK+ doesn't have a Wayland backend.
Ross
The following changes since commit d0861b7a12113c6626c6206faf3a9389fb8ef5cb:
bitbake: bitbake: xmlrpc remote server (2013-05-30 10:44:00 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ross/wayland
for you to fetch changes up to 6792689a9b2c5269b2e9e2c6fc21a52dca1cef9d:
core-image-weston: basic image that boots directly to Weston (2013-05-30 14:57:54 +0100)
----------------------------------------------------------------
Ross Burton (4):
mesa: upgrade to 9.1.2
wayland: update to 1.1.0
weston-init: basic init script to start Weston on KMS/DRM
core-image-weston: basic image that boots directly to Weston
meta/recipes-graphics/images/core-image-weston.bb | 9 +
meta/recipes-graphics/mesa/mesa-9.0.2.inc | 13 -
.../mesa/mesa/0002-cross-compile.patch | 94 ---
...ate-NativeDisplayType-depending-on-config.patch | 358 +++++++++++
meta/recipes-graphics/mesa/mesa/cross-glsl.patch | 632 --------------------
.../mesa/dont-fail-if-libX11-isnt-installed.patch | 36 --
.../fix-egl-compilation-without-x11-headers.patch | 32 -
.../mesa/mesa/fix-glsl-cross.patch | 43 ++
meta/recipes-graphics/mesa/mesa_9.0.2.bb | 4 -
meta/recipes-graphics/mesa/mesa_9.1.2.bb | 14 +
.../wayland/{wayland_1.0.6.bb => wayland_1.1.0.bb} | 6 +-
meta/recipes-graphics/wayland/weston-init.bb | 17 +
meta/recipes-graphics/wayland/weston-init/init | 56 ++
13 files changed, 499 insertions(+), 815 deletions(-)
create mode 100644 meta/recipes-graphics/images/core-image-weston.bb
delete mode 100644 meta/recipes-graphics/mesa/mesa-9.0.2.inc
delete mode 100644 meta/recipes-graphics/mesa/mesa/0002-cross-compile.patch
create mode 100644 meta/recipes-graphics/mesa/mesa/EGL-Mutate-NativeDisplayType-depending-on-config.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/cross-glsl.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/dont-fail-if-libX11-isnt-installed.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/fix-egl-compilation-without-x11-headers.patch
create mode 100644 meta/recipes-graphics/mesa/mesa/fix-glsl-cross.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa_9.0.2.bb
create mode 100644 meta/recipes-graphics/mesa/mesa_9.1.2.bb
rename meta/recipes-graphics/wayland/{wayland_1.0.6.bb => wayland_1.1.0.bb} (91%)
create mode 100644 meta/recipes-graphics/wayland/weston-init.bb
create mode 100644 meta/recipes-graphics/wayland/weston-init/init
Ross Burton (4):
mesa: upgrade to 9.1.2
wayland: update to 1.1.0
weston-init: basic init script to start Weston on KMS/DRM
core-image-weston: basic image that boots directly to Weston
meta/recipes-graphics/images/core-image-weston.bb | 9 +
meta/recipes-graphics/mesa/mesa-9.0.2.inc | 13 -
.../mesa/mesa/0002-cross-compile.patch | 94 ---
...ate-NativeDisplayType-depending-on-config.patch | 358 +++++++++++
meta/recipes-graphics/mesa/mesa/cross-glsl.patch | 632 --------------------
.../mesa/dont-fail-if-libX11-isnt-installed.patch | 36 --
.../fix-egl-compilation-without-x11-headers.patch | 32 -
.../mesa/mesa/fix-glsl-cross.patch | 43 ++
meta/recipes-graphics/mesa/mesa_9.0.2.bb | 4 -
meta/recipes-graphics/mesa/mesa_9.1.2.bb | 14 +
.../wayland/{wayland_1.0.6.bb => wayland_1.1.0.bb} | 6 +-
meta/recipes-graphics/wayland/weston-init.bb | 17 +
meta/recipes-graphics/wayland/weston-init/init | 56 ++
13 files changed, 499 insertions(+), 815 deletions(-)
create mode 100644 meta/recipes-graphics/images/core-image-weston.bb
delete mode 100644 meta/recipes-graphics/mesa/mesa-9.0.2.inc
delete mode 100644 meta/recipes-graphics/mesa/mesa/0002-cross-compile.patch
create mode 100644 meta/recipes-graphics/mesa/mesa/EGL-Mutate-NativeDisplayType-depending-on-config.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/cross-glsl.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/dont-fail-if-libX11-isnt-installed.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa/fix-egl-compilation-without-x11-headers.patch
create mode 100644 meta/recipes-graphics/mesa/mesa/fix-glsl-cross.patch
delete mode 100644 meta/recipes-graphics/mesa/mesa_9.0.2.bb
create mode 100644 meta/recipes-graphics/mesa/mesa_9.1.2.bb
rename meta/recipes-graphics/wayland/{wayland_1.0.6.bb => wayland_1.1.0.bb} (91%)
create mode 100644 meta/recipes-graphics/wayland/weston-init.bb
create mode 100644 meta/recipes-graphics/wayland/weston-init/init
--
1.7.10.4
next reply other threads:[~2013-05-30 14:03 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-30 14:00 Ross Burton [this message]
2013-05-30 14:00 ` [PATCH 1/4] mesa: upgrade to 9.1.2 Ross Burton
2013-05-30 14:03 ` Jonathan Liu
2013-05-30 14:06 ` Jonathan Liu
2013-05-30 14:27 ` Burton, Ross
2013-05-30 14:00 ` [PATCH 2/4] wayland: update to 1.1.0 Ross Burton
2013-05-30 14:00 ` [PATCH 3/4] weston-init: basic init script to start Weston on KMS/DRM Ross Burton
2013-05-30 14:00 ` [PATCH 4/4] core-image-weston: basic image that boots directly to Weston Ross Burton
2013-05-31 7:18 ` [PATCH 0/4] Mesa and Wayland updates Koen Kooi
2013-05-31 9:30 ` Burton, Ross
2013-05-31 9:52 ` Burton, Ross
2013-06-05 13:51 ` Martin Jansa
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=cover.1369922325.git.ross.burton@intel.com \
--to=ross.burton@intel.com \
--cc=openembedded-core@lists.openembedded.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.