* [PATCH 0/3]
@ 2013-03-01 17:34 tom.zanussi
2013-03-01 17:34 ` [PATCH 1/3] sysprof: upgrade to 1.2.0 tom.zanussi
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: tom.zanussi @ 2013-03-01 17:34 UTC (permalink / raw)
To: openembedded-core; +Cc: Tom Zanussi
From: Tom Zanussi <tom.zanussi@linux.intel.com>
This patchset contains a couple of things:
- a sysprof upgrade (YOCTO #3448)
- a fix for YOCTO #3951, which is for perf, but I found and fixed a
similar problem for systemtap while doing the fix for perf. In
any case, I'm now able to build a minimal image with tools-profile.
The following changes since commit 8264863ea0674f6cb105f5f7301861408fdc409b:
Add KERNEL_EXTRA_ARGS parameter (2013-03-01 14:57:52 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib.git tzanussi/minimal-and-sysprof-update-v0
http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/minimal-and-sysprof-update-v0
Tom Zanussi (3):
sysprof: upgrade to 1.2.0
perf: add bash dependency
systemtap: add python and bash dependencies
meta/recipes-kernel/perf/perf_3.4.bb | 2 +-
...PowerPC-checks-for-__NR_perf_counter_open.patch | 35 ----------------------
meta/recipes-kernel/sysprof/sysprof_git.bb | 6 ++--
meta/recipes-kernel/systemtap/systemtap_git.bb | 4 +++
4 files changed, 7 insertions(+), 40 deletions(-)
delete mode 100644 meta/recipes-kernel/sysprof/files/0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch
--
1.7.11.4
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH 1/3] sysprof: upgrade to 1.2.0
2013-03-01 17:34 [PATCH 0/3] tom.zanussi
@ 2013-03-01 17:34 ` tom.zanussi
2013-03-01 17:34 ` [PATCH 2/3] perf: add bash dependency tom.zanussi
2013-03-01 17:34 ` [PATCH 3/3] systemtap: add python and bash dependencies tom.zanussi
2 siblings, 0 replies; 6+ messages in thread
From: tom.zanussi @ 2013-03-01 17:34 UTC (permalink / raw)
To: openembedded-core; +Cc: Tom Zanussi
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2838 bytes --]
From: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
...PowerPC-checks-for-__NR_perf_counter_open.patch | 35 ----------------------
meta/recipes-kernel/sysprof/sysprof_git.bb | 6 ++--
2 files changed, 2 insertions(+), 39 deletions(-)
delete mode 100644 meta/recipes-kernel/sysprof/files/0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch
diff --git a/meta/recipes-kernel/sysprof/files/0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch b/meta/recipes-kernel/sysprof/files/0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch
deleted file mode 100644
index 041054e..0000000
--- a/meta/recipes-kernel/sysprof/files/0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Upstream-Status: Backport
-
-From 4708a509aa9d65ae93e9824e42ddbc6e8d42d90c Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Michel=20D=C3=A4nzer?= <michel@daenzer.net>
-Date: Sat, 27 Aug 2011 20:04:44 +0200
-Subject: [PATCH] Fix PowerPC checks for __NR_perf_counter_open.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-__ppc__ isn't defined here on Debian powerpc. Grepping through the headers
-installed in /usr/include, there are a few references to __ppc__ and
-__ppc64__, but I suspect they're for other OSs.
-
-Signed-off-by: Michel Dänzer <michel@daenzer.net>
----
- collector.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/collector.c b/collector.c
-index b28964f..fe16967 100644
---- a/collector.c
-+++ b/collector.c
-@@ -175,7 +175,7 @@ sysprof_perf_counter_open (struct perf_counter_attr *attr,
- #define __NR_perf_counter_open 337
- #elif defined(__hppa__)
- #define __NR_perf_counter_open 318
--#elif defined(__ppc__) || defined(__ppc64__)
-+#elif defined(__powerpc__) || defined(__powerpc64__)
- #define __NR_perf_counter_open 319
- #elif defined(__s390__)
- #define __NR_perf_counter_open 331
---
-1.7.6.1
-
diff --git a/meta/recipes-kernel/sysprof/sysprof_git.bb b/meta/recipes-kernel/sysprof/sysprof_git.bb
index 64414c0..c7506fe 100644
--- a/meta/recipes-kernel/sysprof/sysprof_git.bb
+++ b/meta/recipes-kernel/sysprof/sysprof_git.bb
@@ -4,13 +4,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
DEPENDS = "gtk+ libglade"
-SRCREV = "4692f85f625f4fd969cef4ab5dc47cc4655c87f9"
-PR = "r2"
-PV = "1.1.8+git${SRCPV}"
+SRCREV = "cd44ee6644c3641507fb53b8a2a69137f2971219"
+PV = "1.2.0+git${SRCPV}"
SRC_URI = "git://git.gnome.org/sysprof;protocol=git \
file://define-NT_GNU_BUILD_ID.patch \
- file://0001-Fix-PowerPC-checks-for-__NR_perf_counter_open.patch \
"
SRC_URI_append_arm = " file://rmb-arm.patch"
--
1.7.11.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 2/3] perf: add bash dependency
2013-03-01 17:34 [PATCH 0/3] tom.zanussi
2013-03-01 17:34 ` [PATCH 1/3] sysprof: upgrade to 1.2.0 tom.zanussi
@ 2013-03-01 17:34 ` tom.zanussi
2013-03-01 17:34 ` [PATCH 3/3] systemtap: add python and bash dependencies tom.zanussi
2 siblings, 0 replies; 6+ messages in thread
From: tom.zanussi @ 2013-03-01 17:34 UTC (permalink / raw)
To: openembedded-core; +Cc: Tom Zanussi
From: Tom Zanussi <tom.zanussi@linux.intel.com>
There are a number of scripts in the perf installation that use bash,
so we need to add a run-time dependency on bash for them. If not, we
can generate build errors like "no package provides /bin/bash".
Fixes [YOCTO #3951].
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
meta/recipes-kernel/perf/perf_3.4.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-kernel/perf/perf_3.4.bb b/meta/recipes-kernel/perf/perf_3.4.bb
index e89a7c3..be0f386 100644
--- a/meta/recipes-kernel/perf/perf_3.4.bb
+++ b/meta/recipes-kernel/perf/perf_3.4.bb
@@ -28,7 +28,7 @@ DEPENDS = "virtual/kernel \
"
SCRIPTING_RDEPENDS = "${@perf_feature_enabled('perf-scripting', 'perl perl-modules python', '',d)}"
-RDEPENDS_${PN} += "elfutils ${SCRIPTING_RDEPENDS}"
+RDEPENDS_${PN} += "elfutils bash ${SCRIPTING_RDEPENDS}"
PROVIDES = "virtual/perf"
--
1.7.11.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 3/3] systemtap: add python and bash dependencies
2013-03-01 17:34 [PATCH 0/3] tom.zanussi
2013-03-01 17:34 ` [PATCH 1/3] sysprof: upgrade to 1.2.0 tom.zanussi
2013-03-01 17:34 ` [PATCH 2/3] perf: add bash dependency tom.zanussi
@ 2013-03-01 17:34 ` tom.zanussi
2 siblings, 0 replies; 6+ messages in thread
From: tom.zanussi @ 2013-03-01 17:34 UTC (permalink / raw)
To: openembedded-core; +Cc: Tom Zanussi
From: Tom Zanussi <tom.zanussi@linux.intel.com>
There are a number of scripts in the systemtap installation that use
python and bash, so we need to add run-time dependencies for them. If
not, we can generate build errors like "no package provides
/usr/bin/python".
Fixes [YOCTO #3951].
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
---
meta/recipes-kernel/systemtap/systemtap_git.bb | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb
index 7fc92c8..22f8959 100644
--- a/meta/recipes-kernel/systemtap/systemtap_git.bb
+++ b/meta/recipes-kernel/systemtap/systemtap_git.bb
@@ -6,6 +6,10 @@ DEPENDS = "elfutils sqlite3 systemtap-native"
DEPENDS_class-native = "elfutils-native sqlite3-native gettext-native"
DEPENDS_class-nativesdk = "nativesdk-elfutils nativesdk-sqlite3 nativesdk-gettext"
+RDEPENDS_${PN} += "python bash"
+RDEPENDS_${PN}_class-native += "python-native"
+RDEPENDS_${PN}_class-nativesdk += "python-native"
+
PR = "r1"
EXTRA_OECONF += "--with-libelf=${STAGING_DIR_TARGET} --without-rpm \
--
1.7.11.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 0/3]
@ 2012-03-03 10:59 Xiaofeng Yan
2012-03-04 12:24 ` Richard Purdie
0 siblings, 1 reply; 6+ messages in thread
From: Xiaofeng Yan @ 2012-03-03 10:59 UTC (permalink / raw)
To: openembedded-core
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
LSB report the following information when running lsb test.
VSW5TESTSUITE PURPOSE 7
Assertion XStringToKeysym-7.(A)
When the string argument is the name of a KeySym in the
table with the prefix XK_ removed, then a call to
XStringToKeysym returns that KeySym.
METH: For each KeySym name in table with code G:
METH: Call XStringToKeysym to obtain the KeySym defined for that string.
METH: Verify that XStringToKeysym did not return NoSymbol.
METH: Verify that the returned string is correct.
CHECK: XStringToKeysym-7 1, line 130
CHECK: XStringToKeysym-7 2, line 140
CHECK: XStringToKeysym-7 3, line 150
CHECK: XStringToKeysym-7 4, line 160
CHECK: XStringToKeysym-7 5, line 170
This is host contamination problem. libx11-1.4.4 hasn't patch
"makekeys_crosscompile.patch" in libx11-trim-1.4.4 because core-image-lsb-qt3
use libx11 instead of libx11-trim.
Pull URL: git://git.pokylinux.org/poky-contrib.git
Branch: xiaofeng/1970
Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/1970
Thanks,
Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
Xiaofeng Yan (3):
libx11-1.4.4: Add patch makekeys_crosscompile.patch
libx11-1.4.4: Add patch "makekeys_crosscompile.patch"
libx11-trim: Add error information from LSB Test Suite to
makekeys_crosscompile.patch
.../libx11-1.4.4/makekeys_crosscompile.patch | 76 ++++++++++++++++++++
.../libx11-trim-1.4.4/makekeys_crosscompile.patch | 33 ++++++++-
meta/recipes-graphics/xorg-lib/libx11_1.4.4.bb | 3 +-
3 files changed, 110 insertions(+), 2 deletions(-)
create mode 100644 meta/recipes-graphics/xorg-lib/libx11-1.4.4/makekeys_crosscompile.patch
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 0/3]
2012-03-03 10:59 [PATCH 0/3] Xiaofeng Yan
@ 2012-03-04 12:24 ` Richard Purdie
0 siblings, 0 replies; 6+ messages in thread
From: Richard Purdie @ 2012-03-04 12:24 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Sat, 2012-03-03 at 18:59 +0800, Xiaofeng Yan wrote:
> From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
>
> LSB report the following information when running lsb test.
>
> VSW5TESTSUITE PURPOSE 7
> Assertion XStringToKeysym-7.(A)
> When the string argument is the name of a KeySym in the
> table with the prefix XK_ removed, then a call to
> XStringToKeysym returns that KeySym.
> METH: For each KeySym name in table with code G:
> METH: Call XStringToKeysym to obtain the KeySym defined for that string.
> METH: Verify that XStringToKeysym did not return NoSymbol.
> METH: Verify that the returned string is correct.
> CHECK: XStringToKeysym-7 1, line 130
> CHECK: XStringToKeysym-7 2, line 140
> CHECK: XStringToKeysym-7 3, line 150
> CHECK: XStringToKeysym-7 4, line 160
> CHECK: XStringToKeysym-7 5, line 170
>
> This is host contamination problem. libx11-1.4.4 hasn't patch
> "makekeys_crosscompile.patch" in libx11-trim-1.4.4 because core-image-lsb-qt3
> use libx11 instead of libx11-trim.
>
>
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
> Branch: xiaofeng/1970
> Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/1970
>
> Thanks,
> Xiaofeng Yan <xiaofeng.yan@windriver.com>
> ---
>
>
> Xiaofeng Yan (3):
> libx11-1.4.4: Add patch makekeys_crosscompile.patch
> libx11-1.4.4: Add patch "makekeys_crosscompile.patch"
> libx11-trim: Add error information from LSB Test Suite to
> makekeys_crosscompile.patch
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-03-01 17:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-01 17:34 [PATCH 0/3] tom.zanussi
2013-03-01 17:34 ` [PATCH 1/3] sysprof: upgrade to 1.2.0 tom.zanussi
2013-03-01 17:34 ` [PATCH 2/3] perf: add bash dependency tom.zanussi
2013-03-01 17:34 ` [PATCH 3/3] systemtap: add python and bash dependencies tom.zanussi
-- strict thread matches above, loose matches on Subject: below --
2012-03-03 10:59 [PATCH 0/3] Xiaofeng Yan
2012-03-04 12:24 ` Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox