Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
On uclibc elf.h does not have GNU extentions but we need this define
|
||||
so we define it locally if its not getting it from elf.h
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Index: git/elfparser.h
|
||||
===================================================================
|
||||
--- git.orig/elfparser.h 2011-07-16 18:57:41.000000000 -0700
|
||||
+++ git/elfparser.h 2011-07-16 20:28:54.733829895 -0700
|
||||
@@ -17,6 +17,10 @@
|
||||
*/
|
||||
#include <glib.h>
|
||||
|
||||
+#ifndef NT_GNU_BUILD_ID
|
||||
+#define NT_GNU_BUILD_ID 3
|
||||
+#endif
|
||||
+
|
||||
typedef struct ElfSym ElfSym;
|
||||
typedef struct ElfParser ElfParser;
|
||||
|
||||
31
deprecated/firmware/buildroot/package/sysprof/Config.in
Normal file
31
deprecated/firmware/buildroot/package/sysprof/Config.in
Normal file
@@ -0,0 +1,31 @@
|
||||
config BR2_PACKAGE_SYSPROF
|
||||
bool "sysprof"
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
||||
depends on BR2_USE_MMU # glib2
|
||||
# In its util.h file, sysprof contains architecture-specific
|
||||
# code
|
||||
depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb
|
||||
help
|
||||
Sysprof is a statistical, system-wide profiler that can
|
||||
profile user and kernel code using the perf API.
|
||||
|
||||
http://sysprof.com
|
||||
|
||||
if BR2_PACKAGE_SYSPROF
|
||||
|
||||
config BR2_PACKAGE_SYSPROF_GUI
|
||||
bool "sysprof GUI"
|
||||
depends on BR2_PACKAGE_LIBGTK2
|
||||
select BR2_PACKAGE_LIBGLADE
|
||||
select BR2_PACKAGE_GDK_PIXBUF
|
||||
help
|
||||
GUI for the sysprof system-wide statistical profiler.
|
||||
|
||||
endif
|
||||
|
||||
comment "sysprof needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,2 @@
|
||||
# Locally calculated
|
||||
sha256 baf03c6fc01a845c705873e6fc7927aa89539dcda6963f9ec4c8eb4c086a64f1 sysprof-1.2.0.tar.gz
|
||||
23
deprecated/firmware/buildroot/package/sysprof/sysprof.mk
Normal file
23
deprecated/firmware/buildroot/package/sysprof/sysprof.mk
Normal file
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# sysprof
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SYSPROF_VERSION = 1.2.0
|
||||
SYSPROF_SITE = http://sysprof.com
|
||||
SYSPROF_DEPENDENCIES = libglib2
|
||||
SYSPROF_LICENSE = GPLv2+
|
||||
SYSPROF_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SYSPROF_GUI),y)
|
||||
SYSPROF_DEPENDENCIES += libgtk2 libglade gdk-pixbuf
|
||||
endif
|
||||
|
||||
define SYSPROF_CREATE_M4_DIR
|
||||
mkdir -p $(@D)/m4
|
||||
endef
|
||||
|
||||
SYSPROF_POST_PATCH_HOOKS += SYSPROF_CREATE_M4_DIR
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user