From ab2d5e397d30999929108c9d929767205fee9db4 Mon Sep 17 00:00:00 2001 From: Jussi Kukkonen Date: Wed, 4 May 2016 12:49:28 +0300 Subject: sysprof: Upgrade to git version slightly past 3.20 New version uses Gtk+3. 3.20 release requires a bunch of fixes to build without polkit, this git revision inclues those fixes. * Add patch to use proper U64_TO_POINTER macro to fix build on 32 bit platforms. * Forward port memory barrier patches for arm & mips * sysprof builds with loads of warnings and git builds also use -Werror: avoid that by setting "--enable-compile-warnings" Signed-off-by: Jussi Kukkonen Signed-off-by: Ross Burton --- meta/recipes-kernel/sysprof/files/rmb-arm.patch | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 meta/recipes-kernel/sysprof/files/rmb-arm.patch (limited to 'meta/recipes-kernel/sysprof/files/rmb-arm.patch') diff --git a/meta/recipes-kernel/sysprof/files/rmb-arm.patch b/meta/recipes-kernel/sysprof/files/rmb-arm.patch deleted file mode 100644 index c53ac6427c..0000000000 --- a/meta/recipes-kernel/sysprof/files/rmb-arm.patch +++ /dev/null @@ -1,21 +0,0 @@ - -Upstream-Status: Pending - -Index: git/util.h -=================================================================== ---- git.orig/util.h 2010-12-07 22:41:57.156243001 -0600 -+++ git/util.h 2010-12-07 22:43:47.616243002 -0600 -@@ -37,4 +37,13 @@ - #define cpu_relax() asm volatile("" ::: "memory"); - #endif - -+#ifdef __arm__ -+/* -+ * Use the __kuser_memory_barrier helper in the CPU helper page. See -+ * arch/arm/kernel/entry-armv.S in the kernel source for details. -+ */ -+#define rmb() ((void(*)(void))0xffff0fa0)() -+#define cpu_relax() asm volatile("":::"memory") -+#endif -+ - #endif -- cgit 1.2.3-korg