* [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common
@ 2012-08-10 19:02 kishore.k.bodke
2012-08-10 19:02 ` [PATCH 1/3] [meta-intel] meta-romley: Move Matrox MGA Xorg driver to meta-intel/common kishore.k.bodke
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: kishore.k.bodke @ 2012-08-10 19:02 UTC (permalink / raw)
To: yocto, nitin.a.kamble, tom.zanussi
From: Kishore Bodke <kishore.k.bodke@intel.com>
Hi,
These patches are for moving the Matrox MGA Xorg driver from
meta-romley to meta-intel/common and adding a variable to
include the mga recipe in the respective BSPs which uses them.
Romley BSP has been successfully booted with sato desktop.
Please pull into meta-intel/master.
Thanks
Kishore.
The following changes since commit ff7fdafba88a5b7676f601b3d16a97ce7d48c4a9:
crownbay: make v3.4 the default kernel (2012-07-31 23:08:05 -0500)
are available in the git repository at:
git://git.pokylinux.org/meta-intel-contrib kishore/matrox-mga
http://git.pokylinux.org/cgit.cgi/meta-intel-contrib/log/?h=kishore/matrox-mga
Kishore Bodke (3):
meta-romley: Move Matrox MGA Xorg driver to meta-intel/common
meta-intel:Add a MATROX MGA variable to ia32-base.inc
meta-romley: Add Matrox MGA variable to romley.conf
.../xorg-driver/xf86-video-mga_1.4.13.bb | 0
conf/machine/include/ia32-base.inc | 4 ++++
meta-romley/conf/machine/romley.conf | 3 +--
3 files changed, 5 insertions(+), 2 deletions(-)
rename {meta-romley => common}/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb (100%)
--
1.7.9.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/3] [meta-intel] meta-romley: Move Matrox MGA Xorg driver to meta-intel/common
2012-08-10 19:02 [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common kishore.k.bodke
@ 2012-08-10 19:02 ` kishore.k.bodke
2012-08-10 19:02 ` [PATCH 2/3] [meta-intel] meta-intel:Add a MATROX MGA variable to ia32-base.inc kishore.k.bodke
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: kishore.k.bodke @ 2012-08-10 19:02 UTC (permalink / raw)
To: yocto, nitin.a.kamble, tom.zanussi
From: Kishore Bodke <kishore.k.bodke@intel.com>
Matrox MGA Xorg driver is being used by other meta-intel
BSPs. So move this to meta-intel/common/recipes-graphics.
Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
---
.../xorg-driver/xf86-video-mga_1.4.13.bb | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename {meta-romley => common}/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb (100%)
diff --git a/meta-romley/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb b/common/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb
similarity index 100%
rename from meta-romley/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb
rename to common/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb
--
1.7.9.5
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/3] [meta-intel] meta-intel:Add a MATROX MGA variable to ia32-base.inc
2012-08-10 19:02 [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common kishore.k.bodke
2012-08-10 19:02 ` [PATCH 1/3] [meta-intel] meta-romley: Move Matrox MGA Xorg driver to meta-intel/common kishore.k.bodke
@ 2012-08-10 19:02 ` kishore.k.bodke
2012-08-10 19:02 ` [PATCH 3/3] [meta-intel] meta-romley: Add Matrox MGA variable to romley.conf kishore.k.bodke
2012-08-10 20:46 ` [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common Tom Zanussi
3 siblings, 0 replies; 5+ messages in thread
From: kishore.k.bodke @ 2012-08-10 19:02 UTC (permalink / raw)
To: yocto, nitin.a.kamble, tom.zanussi
From: Kishore Bodke <kishore.k.bodke@intel.com>
Add XSERVER_IA32_MATROX_MGA variable for including
Matrox MGA graphics recipe.
Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
---
conf/machine/include/ia32-base.inc | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/conf/machine/include/ia32-base.inc b/conf/machine/include/ia32-base.inc
index 99ac352..8dd6743 100644
--- a/conf/machine/include/ia32-base.inc
+++ b/conf/machine/include/ia32-base.inc
@@ -60,3 +60,7 @@ XSERVER_IA32_EMGD = "emgd-driver-bin \
"
XSERVER_IA32_VESA = "xf86-video-vesa"
+
+XSERVER_IA32_MATROX_MGA = "xserver-xorg-module-xaa \
+ xf86-video-mga \
+ "
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/3] [meta-intel] meta-romley: Add Matrox MGA variable to romley.conf
2012-08-10 19:02 [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common kishore.k.bodke
2012-08-10 19:02 ` [PATCH 1/3] [meta-intel] meta-romley: Move Matrox MGA Xorg driver to meta-intel/common kishore.k.bodke
2012-08-10 19:02 ` [PATCH 2/3] [meta-intel] meta-intel:Add a MATROX MGA variable to ia32-base.inc kishore.k.bodke
@ 2012-08-10 19:02 ` kishore.k.bodke
2012-08-10 20:46 ` [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common Tom Zanussi
3 siblings, 0 replies; 5+ messages in thread
From: kishore.k.bodke @ 2012-08-10 19:02 UTC (permalink / raw)
To: yocto, nitin.a.kamble, tom.zanussi
From: Kishore Bodke <kishore.k.bodke@intel.com>
Since Matrox MGA recipe is moved to common, include
the Matrox MGA varialbe to romley.conf.
Signed-off-by: Kishore Bodke <kishore.k.bodke@intel.com>
---
meta-romley/conf/machine/romley.conf | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/meta-romley/conf/machine/romley.conf b/meta-romley/conf/machine/romley.conf
index e6a755b..f7cfa18 100644
--- a/meta-romley/conf/machine/romley.conf
+++ b/meta-romley/conf/machine/romley.conf
@@ -12,6 +12,5 @@ require conf/machine/include/ia32-base.inc
XSERVER ?= "${XSERVER_IA32_BASE} \
${XSERVER_IA32_EXT} \
- xserver-xorg-module-xaa \
- xf86-video-mga \
+ ${XSERVER_IA32_MATROX_MGA} \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common
2012-08-10 19:02 [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common kishore.k.bodke
` (2 preceding siblings ...)
2012-08-10 19:02 ` [PATCH 3/3] [meta-intel] meta-romley: Add Matrox MGA variable to romley.conf kishore.k.bodke
@ 2012-08-10 20:46 ` Tom Zanussi
3 siblings, 0 replies; 5+ messages in thread
From: Tom Zanussi @ 2012-08-10 20:46 UTC (permalink / raw)
To: kishore.k.bodke; +Cc: yocto
On Fri, 2012-08-10 at 12:02 -0700, kishore.k.bodke@intel.com wrote:
> From: Kishore Bodke <kishore.k.bodke@intel.com>
>
> Hi,
>
> These patches are for moving the Matrox MGA Xorg driver from
> meta-romley to meta-intel/common and adding a variable to
> include the mga recipe in the respective BSPs which uses them.
>
> Romley BSP has been successfully booted with sato desktop.
>
> Please pull into meta-intel/master.
>
Thanks for making those changes, Kishore.
Pulled into meta-intel/master.
Tom
> Thanks
> Kishore.
>
> The following changes since commit ff7fdafba88a5b7676f601b3d16a97ce7d48c4a9:
>
> crownbay: make v3.4 the default kernel (2012-07-31 23:08:05 -0500)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/meta-intel-contrib kishore/matrox-mga
> http://git.pokylinux.org/cgit.cgi/meta-intel-contrib/log/?h=kishore/matrox-mga
>
> Kishore Bodke (3):
> meta-romley: Move Matrox MGA Xorg driver to meta-intel/common
> meta-intel:Add a MATROX MGA variable to ia32-base.inc
> meta-romley: Add Matrox MGA variable to romley.conf
>
> .../xorg-driver/xf86-video-mga_1.4.13.bb | 0
> conf/machine/include/ia32-base.inc | 4 ++++
> meta-romley/conf/machine/romley.conf | 3 +--
> 3 files changed, 5 insertions(+), 2 deletions(-)
> rename {meta-romley => common}/recipes-graphics/xorg-driver/xf86-video-mga_1.4.13.bb (100%)
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-08-10 20:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-10 19:02 [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common kishore.k.bodke
2012-08-10 19:02 ` [PATCH 1/3] [meta-intel] meta-romley: Move Matrox MGA Xorg driver to meta-intel/common kishore.k.bodke
2012-08-10 19:02 ` [PATCH 2/3] [meta-intel] meta-intel:Add a MATROX MGA variable to ia32-base.inc kishore.k.bodke
2012-08-10 19:02 ` [PATCH 3/3] [meta-intel] meta-romley: Add Matrox MGA variable to romley.conf kishore.k.bodke
2012-08-10 20:46 ` [PATCH 0/3] [meta-intel] Move Matrox MGA Xorg driver to common 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.