summaryrefslogtreecommitdiffstats
path: root/meta/packages/oprofile/oprofile
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-08-07 22:48:40 +0000
committerRichard Purdie <richard@openedhand.com>2007-08-07 22:48:40 +0000
commit355b128de155316861708f15d42ec5c282e73c4d (patch)
tree4e3165e4fe392b7a6e7095d271c113cff68a717d /meta/packages/oprofile/oprofile
parent2fd340443cdb466daff7e053ebc7f5da909e12cb (diff)
downloadpoky-355b128de155316861708f15d42ec5c282e73c4d.tar.gz
oprofile: 0.9.2 -> 0.9.3 (and make the default)
oprofileui: Switch to SRCREV git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2381 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/oprofile/oprofile')
-rw-r--r--meta/packages/oprofile/oprofile/no_arm_mapping_syms.patch21
-rw-r--r--meta/packages/oprofile/oprofile/opcontrol_bashisms.patch16
2 files changed, 0 insertions, 37 deletions
diff --git a/meta/packages/oprofile/oprofile/no_arm_mapping_syms.patch b/meta/packages/oprofile/oprofile/no_arm_mapping_syms.patch
deleted file mode 100644
index 4c07e5c735..0000000000
--- a/meta/packages/oprofile/oprofile/no_arm_mapping_syms.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1
2#
3# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
4#
5
6Index: oprofile-0.9/libutil++/bfd_support.cpp
7===================================================================
8--- oprofile-0.9.orig/libutil++/bfd_support.cpp 2005-05-05 15:43:46.000000000 +0100
9+++ oprofile-0.9/libutil++/bfd_support.cpp 2005-06-10 10:18:24.000000000 +0100
10@@ -330,6 +330,11 @@
11 // returning true for fix up in op_bfd_symbol()
12 if (!sym->name || sym->name[0] == '\0')
13 return true;
14+ /* ARM assembler internal mapping symbols aren't interesting */
15+ if ((strcmp("$a", sym->name) == 0) ||
16+ (strcmp("$t", sym->name) == 0) ||
17+ (strcmp("$d", sym->name) == 0))
18+ return false;
19
20 // C++ exception stuff
21 if (sym->name[0] == '.' && sym->name[1] == 'L')
diff --git a/meta/packages/oprofile/oprofile/opcontrol_bashisms.patch b/meta/packages/oprofile/oprofile/opcontrol_bashisms.patch
deleted file mode 100644
index 01ef11df86..0000000000
--- a/meta/packages/oprofile/oprofile/opcontrol_bashisms.patch
+++ /dev/null
@@ -1,16 +0,0 @@
1 utils/opcontrol | 2 +-
2 1 file changed, 1 insertion(+), 1 deletion(-)
3
4Index: oprofile-0.9.2/utils/opcontrol
5===================================================================
6--- oprofile-0.9.2.orig/utils/opcontrol 2006-03-29 22:54:07.000000000 +0100
7+++ oprofile-0.9.2/utils/opcontrol 2006-10-12 11:14:39.000000000 +0100
8@@ -485,7 +485,7 @@ validate_separate_args()
9 SEPARATE_KERNEL=0
10 SEPARATE_THREAD=0
11 SEPARATE_CPU=0
12- while (($i < $#)); do
13+ while [ "$i" -lt "$#" ]; do
14 shift
15 case "$1" in
16 lib|library)