From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.windriver.com (mail.windriver.com [147.11.1.11]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id D5D9DE0123C for ; Mon, 9 Jan 2012 19:22:54 -0800 (PST) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca [147.11.189.40]) by mail.windriver.com (8.14.3/8.14.3) with ESMTP id q0A3MrE9024688 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Mon, 9 Jan 2012 19:22:53 -0800 (PST) Received: from [128.224.162.181] (128.224.162.181) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.1.255.0; Mon, 9 Jan 2012 19:22:53 -0800 Message-ID: <4F0BAEFC.8010309@windriver.com> Date: Tue, 10 Jan 2012 11:22:36 +0800 From: Zumeng Chen User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.11) Gecko/20100713 Lightning/1.0b1 Thunderbird/3.0.6 MIME-Version: 1.0 To: Darren Hart References: <4d2eab943403db0472740d4dafbfd99bab659b24.1326099771.git.zumeng.chen@windriver.com> <4F0B2B20.9070500@linux.intel.com> In-Reply-To: <4F0B2B20.9070500@linux.intel.com> Cc: yocto@yoctoproject.org Subject: Re: [PATCH 2/4] lttng-tools: Integrated from git repo. X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jan 2012 03:22:55 -0000 Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit 于 2012年01月10日 02:00, Darren Hart 写道: > > On 01/09/2012 01:24 AM, Zumeng Chen wrote: > >> This patch intended to integrate the Linux trace toolkit, which >> is a suite of tools designed to extract program execution details >> from the Linux operating system and interpret them. >> >> lttng-tools 2.0 is currently in pre-release(-pre16), so we have to >> update it when official released. >> >> Signed-off-by: Zumeng Chen >> --- >> ...tools-fix-compiling-error-for-powerpc-arm.patch | 26 ++++++++++++++++++++ >> .../lttng-2.0/lttng-tools_2.0-pre16.bb | 21 ++++++++++++++++ >> 2 files changed, 47 insertions(+), 0 deletions(-) >> create mode 100644 meta/recipes-kernel/lttng-2.0/lttng-tools-fix-compiling-error-for-powerpc-arm.patch >> create mode 100644 meta/recipes-kernel/lttng-2.0/lttng-tools_2.0-pre16.bb >> >> diff --git a/meta/recipes-kernel/lttng-2.0/lttng-tools-fix-compiling-error-for-powerpc-arm.patch b/meta/recipes-kernel/lttng-2.0/lttng-tools-fix-compiling-error-for-powerpc-arm.patch >> new file mode 100644 >> index 0000000..47b7b98 >> --- /dev/null >> +++ b/meta/recipes-kernel/lttng-2.0/lttng-tools-fix-compiling-error-for-powerpc-arm.patch >> @@ -0,0 +1,26 @@ >> +Upstream-Status: Pending >> + >> +lttng-tools: fix compiling error for powerpc, arm >> + >> +For powerpc and arm system, some MAP_ defined in >> +asm/mman.h, so we include it in header. >> + >> +Signed-off-by: Zumeng Chen >> +--- >> + librunas/runas.c | 1 + >> + 1 files changed, 1 insertions(+), 0 deletions(-) >> + >> +diff --git a/librunas/runas.c b/librunas/runas.c >> +--- a/librunas/runas.c >> ++++ b/librunas/runas.c >> +@@ -29,6 +29,7 @@ >> + #include >> + #include >> + #include >> ++#include >> + >> + #include >> + >> +-- >> +1.7.5.4 >> + >> diff --git a/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0-pre16.bb b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0-pre16.bb >> new file mode 100644 >> index 0000000..8a688c9 >> --- /dev/null >> +++ b/meta/recipes-kernel/lttng-2.0/lttng-tools_2.0-pre16.bb >> @@ -0,0 +1,21 @@ >> +SECTION = "devel" >> +SUMMARY = "Linux Trace Toolkit Control" >> +DESCRIPTION = "The Linux trace toolkit is a suite of tools designed to extract program execution details from the Linux operating system and interpret them." >> > Please do wrap long lines, just don't indent them with tabs past the > previous line: > > DESCRIPTION = "The Linux trace toolkit is a suite of tools designed \ > to extract program execution details from the Linux operating system \ > and interpret them." > OK. fixed. > >> +LICENSE = "GPLv2.1" >> +LIC_FILES_CHKSUM = "file://COPYING;md5=ab682a4729389c3f11913d758affe98e" >> + >> +DEPENDS = "liburcu popt lttng-ust" >> + >> +SRC_URI = "http://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \ >> + file://lttng-tools-fix-compiling-error-for-powerpc-arm.patch" >> + >> +SRC_URI[md5sum] = "58ed0a15db80a00172d5b0413a55451c" >> +SRC_URI[sha256sum] = "188d262bda80043dd939c9aa7aec1795ca77aeec0cb3c0f23c28bfe754049491" >> + >> +S = "${WORKDIR}/lttng-tools-${PV}" >> + >> +inherit autotools >> + >> +export KERNELDIR="${STAGING_KERNEL_DIR}" >> + >> > Please include the reason for the COMPATIBLE_HOST test in all recipes. > OK. > >> +COMPATIBLE_HOST = '(x86_64.*|i.86.*|arm.*|powerpc.*)-linux' >> >