All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Misc patches for build issues
@ 2011-02-14 13:35 Saul Wold
  2011-02-14 13:35 ` [PATCH 1/5] distro tracking: minor fix to mc lastest version Saul Wold
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Richard,

This fixes a couple of build related issues along with addressing 
the reason why menuconfig will not start a xterm.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: distro/master
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/master

Thanks,
    Saul Wold <sgw@linux.intel.com>
---


Saul Wold (5):
  distro tracking: minor fix to mc lastest version
  bitbake.conf: change revision fetching to use newer fetch2 code
  kernel.bbclass: add approproate X Environment variables to allow
    xterm to start
  libva: add libxfixes to DEPENDS
  xpsb-glx: add libxfixes and libxdamages to DEPENDS

 .../recipes-graphics/libva/libva_0.31.0.bb         |    2 +-
 .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb     |    2 +-
 meta/classes/kernel.bbclass                        |    3 +++
 meta/conf/bitbake.conf                             |    4 ++--
 .../conf/distro/include/distro_tracking_fields.inc |    4 ++--
 5 files changed, 9 insertions(+), 6 deletions(-)



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

* [PATCH 1/5] distro tracking: minor fix to mc lastest version
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
@ 2011-02-14 13:35 ` Saul Wold
  2011-02-14 13:35 ` [PATCH 2/5] bitbake.conf: change revision fetching to use newer fetch2 code Saul Wold
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 3ac5452..35b56fa 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -5526,8 +5526,8 @@ RECIPE_LATEST_VERSION_pn-dtc = "37c0b6a0916c31a5eae0a9ddfcc5d0b8fb4569c6"
 RECIPE_LATEST_VERSION_pn-bind = "9.7.2-P3"
 RECIPE_NO_UPDATE_REASON_pn-bind = "Latest Stable version, newer versions are Alpha/Beta"
 RECIPE_LATEST_VERSION_pn-man = "1.6f"
-RECIPE_LATEST_VERSION_pn-mc = "4.7.5pre1"
-RECIPE_NO_UPDATE_REASON_pn-bind = "Latest Stable version, 4.7.5pre1 is Alpha/Beta"
+RECIPE_LATEST_VERSION_pn-mc = "4.7.5-pre1"
+RECIPE_NO_UPDATE_REASON_pn-bind = "Latest Stable version, 4.7.5-pre1 is Alpha/Beta"
 
 RECIPE_STATUS_pn-sgml-common = "green"
 RECIPE_DEPENDENCY_CHECK_pn-sgml-common = "not done"
-- 
1.7.1.1



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

* [PATCH 2/5] bitbake.conf: change revision fetching to use newer fetch2 code
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
  2011-02-14 13:35 ` [PATCH 1/5] distro tracking: minor fix to mc lastest version Saul Wold
@ 2011-02-14 13:35 ` Saul Wold
  2011-02-14 13:35 ` [PATCH 3/5] kernel.bbclass: add approproate X Environment variables to allow xterm to start Saul Wold
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/conf/bitbake.conf |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index da50fe5..162c792 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -560,8 +560,8 @@ UPDATECOMMAND_cvs = "/usr/bin/env cvs -d${CVSROOT} update -d -P ${CVSCOOPTS}"
 UPDATECOMMAND_svn = "/usr/bin/env svn update ${SVNCOOPTS}"
 SRCDATE = "${DATE}"
 SRCREV = "INVALID"
-AUTOREV = "${@bb.fetch.get_autorev(d)}"
-SRCPV = "${@bb.fetch.get_srcrev(d)}"
+AUTOREV = "${@bb.fetch2.get_autorev(d)}"
+SRCPV = "${@bb.fetch2.get_srcrev(d)}"
 
 SRC_URI = "file://${FILE}"
 
-- 
1.7.1.1



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

* [PATCH 3/5] kernel.bbclass: add approproate X Environment variables to allow xterm to start
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
  2011-02-14 13:35 ` [PATCH 1/5] distro tracking: minor fix to mc lastest version Saul Wold
  2011-02-14 13:35 ` [PATCH 2/5] bitbake.conf: change revision fetching to use newer fetch2 code Saul Wold
@ 2011-02-14 13:35 ` Saul Wold
  2011-02-14 13:35 ` [PATCH 4/5] libva: add libxfixes to DEPENDS Saul Wold
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/classes/kernel.bbclass |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass
index 2ae2dcb..a1b1354 100644
--- a/meta/classes/kernel.bbclass
+++ b/meta/classes/kernel.bbclass
@@ -198,6 +198,9 @@ kernel_do_configure() {
 }
 
 do_menuconfig() {
+        export DISPLAY='${DISPLAY}'
+        export DBUS_SESSION_BUS_ADDRESS='${DBUS_SESSION_BUS_ADDRESS}'
+        export XAUTHORITY='${XAUTHORITY}'
 	export TERMWINDOWTITLE="${PN} Kernel Configuration"
 	export SHELLCMDS="make menuconfig"
 	${TERMCMDRUN}
-- 
1.7.1.1



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

* [PATCH 4/5] libva: add libxfixes to DEPENDS
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
                   ` (2 preceding siblings ...)
  2011-02-14 13:35 ` [PATCH 3/5] kernel.bbclass: add approproate X Environment variables to allow xterm to start Saul Wold
@ 2011-02-14 13:35 ` Saul Wold
  2011-02-14 13:35 ` [PATCH 5/5] xpsb-glx: add libxfixes and libxdamages " Saul Wold
  2011-02-14 13:47 ` [PATCH 0/5] Misc patches for build issues Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Fixes [BUGID #716]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../recipes-graphics/libva/libva_0.31.0.bb         |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-emenlow/recipes-graphics/libva/libva_0.31.0.bb b/meta-emenlow/recipes-graphics/libva/libva_0.31.0.bb
index a316409..449a44f 100644
--- a/meta-emenlow/recipes-graphics/libva/libva_0.31.0.bb
+++ b/meta-emenlow/recipes-graphics/libva/libva_0.31.0.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "Video Acceleration (VA) API for Linux"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=efc13a0998e678466e556756613c582e"
 PR = "r1"
-DEPENDS = "libxext"
+DEPENDS = "libxfixes libxext"
 
 inherit autotools
 
-- 
1.7.1.1



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

* [PATCH 5/5] xpsb-glx: add libxfixes and libxdamages to DEPENDS
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
                   ` (3 preceding siblings ...)
  2011-02-14 13:35 ` [PATCH 4/5] libva: add libxfixes to DEPENDS Saul Wold
@ 2011-02-14 13:35 ` Saul Wold
  2011-02-14 13:47 ` [PATCH 0/5] Misc patches for build issues Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Saul Wold @ 2011-02-14 13:35 UTC (permalink / raw)
  To: poky

From: Saul Wold <sgw@linux.intel.com>

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
index 6ceb1cb..f4b43ab 100644
--- a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
+++ b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
@@ -35,7 +35,7 @@ S = "${WORKDIR}/${PN}-${PV}/mesa"
 
 EXTRA_OEMAKE = "linux-dri-x86"
 
-DEPENDS += "libdrm-poulsbo libxxf86vm dri2proto libxmu libxi glproto makedepend-native"
+DEPENDS += "libxfixes libxdamage libdrm-poulsbo libxxf86vm dri2proto libxmu libxi glproto makedepend-native"
 
 FILES_${PN} = "${libdir}/* ${libdir}/xorg/modules/dri/* \
 	    ${libdir}/xorg/modules/drivers/*"
-- 
1.7.1.1



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

* Re: [PATCH 0/5] Misc patches for build issues
  2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
                   ` (4 preceding siblings ...)
  2011-02-14 13:35 ` [PATCH 5/5] xpsb-glx: add libxfixes and libxdamages " Saul Wold
@ 2011-02-14 13:47 ` Richard Purdie
  5 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2011-02-14 13:47 UTC (permalink / raw)
  To: Saul Wold; +Cc: poky

On Mon, 2011-02-14 at 05:35 -0800, Saul Wold wrote:
> From: Saul Wold <sgw@linux.intel.com>
> 
> Richard,
> 
> This fixes a couple of build related issues along with addressing 
> the reason why menuconfig will not start a xterm.
> 
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>   Branch: distro/master
>   Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=distro/master
> 
> Thanks,
>     Saul Wold <sgw@linux.intel.com>

Merged to master, thanks.

Richard



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

end of thread, other threads:[~2011-02-14 13:47 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-14 13:35 [PATCH 0/5] Misc patches for build issues Saul Wold
2011-02-14 13:35 ` [PATCH 1/5] distro tracking: minor fix to mc lastest version Saul Wold
2011-02-14 13:35 ` [PATCH 2/5] bitbake.conf: change revision fetching to use newer fetch2 code Saul Wold
2011-02-14 13:35 ` [PATCH 3/5] kernel.bbclass: add approproate X Environment variables to allow xterm to start Saul Wold
2011-02-14 13:35 ` [PATCH 4/5] libva: add libxfixes to DEPENDS Saul Wold
2011-02-14 13:35 ` [PATCH 5/5] xpsb-glx: add libxfixes and libxdamages " Saul Wold
2011-02-14 13:47 ` [PATCH 0/5] Misc patches for build issues Richard Purdie

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.