diff options
author | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2014-12-14 23:02:15 -0800 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-20 21:49:10 +0100 |
commit | 7f7dc71cc8545dacf23f9a25f33c184d15bed65c (patch) | |
tree | acf38aba127ccc762d75c8ae2874bc43f1d0e28f /package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch | |
parent | 2f2c799697e29a3cf212f96c1e239292cea7ec47 (diff) | |
download | buildroot-7f7dc71cc8545dacf23f9a25f33c184d15bed65c.tar.gz buildroot-7f7dc71cc8545dacf23f9a25f33c184d15bed65c.zip |
package/oprofile: Bump version to 1.0.0
Remove opcontrol and oprofiled from the install list, they are no longer
present in the package.
Remove all patches, they have been integrated upstream.
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch')
-rw-r--r-- | package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch b/package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch deleted file mode 100644 index 7c41389465..0000000000 --- a/package/oprofile/oprofile-001-avr32-enable-lookup_dcookie.patch +++ /dev/null @@ -1,24 +0,0 @@ -Index: oprofile-0.9.4/daemon/opd_cookie.c -=================================================================== ---- oprofile-0.9.4.orig/daemon/opd_cookie.c 2008-07-25 16:00:17.000000000 +0200 -+++ oprofile-0.9.4/daemon/opd_cookie.c 2008-07-25 16:00:20.000000000 +0200 -@@ -78,6 +78,19 @@ - (unsigned long)(cookie & 0xffffffff), - (unsigned long)(cookie >> 32), buf, size); - } -+#elif (defined(__avr32__)) -+static inline int lookup_dcookie(cookie_t cookie, char * buf, size_t size) -+{ -+ /* On avr32, the first 64bit arg (cookie) is expected to be in -+ * r11(MSW)/r10(LSW) which normally hold arg 2 and arg 3. The second arg -+ * (buf) is then expected to be in r12 which normally holds the first -+ * arg. Third arg (size) is at the right position. -+ */ -+ return syscall(__NR_lookup_dcookie, buf, -+ (unsigned long)(cookie >> 32), -+ (unsigned long)(cookie & 0xffffffff), -+ size); -+} - #else - static inline int lookup_dcookie(cookie_t cookie, char * buf, size_t size) - { |