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 mail.openembedded.org (Postfix) with ESMTP id 4D9987036A for ; Wed, 9 Jul 2014 02:58:55 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail.windriver.com (8.14.5/8.14.5) with ESMTP id s692wuFw013257 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Tue, 8 Jul 2014 19:58:56 -0700 (PDT) Received: from [128.224.162.137] (128.224.162.137) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.3.169.1; Tue, 8 Jul 2014 19:58:56 -0700 Message-ID: <53BCAFF5.6080901@windriver.com> Date: Wed, 9 Jul 2014 10:59:01 +0800 From: Rongqing Li User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130623 Thunderbird/17.0.7 MIME-Version: 1.0 To: References: <1404809042-10815-1-git-send-email-rongqing.li@windriver.com> In-Reply-To: <1404809042-10815-1-git-send-email-rongqing.li@windriver.com> Subject: Re: [PATCH][meta-oe] memstat: add memstat recipe X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Jul 2014 02:58:56 -0000 Content-Type: text/plain; charset="gbk"; format=flowed Content-Transfer-Encoding: 7bit Drop this patch, HuangJ has sent out a similar patch -Roy On 07/08/2014 04:44 PM, rongqing.li@windriver.com wrote: > From: Roy Li > > Signed-off-by: Roy Li > --- > meta-oe/recipes-devtools/memstat/memstat_1.0.bb | 24 +++++++++++++++++++++++ > 1 file changed, 24 insertions(+) > create mode 100644 meta-oe/recipes-devtools/memstat/memstat_1.0.bb > > diff --git a/meta-oe/recipes-devtools/memstat/memstat_1.0.bb b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb > new file mode 100644 > index 0000000..8c8882e > --- /dev/null > +++ b/meta-oe/recipes-devtools/memstat/memstat_1.0.bb > @@ -0,0 +1,24 @@ > +SUMMARY = "Display virtual memory allocation" > +DESCRIPTION = "Lists all the processes, executables, and shared libraries \ > +that are using up virtual memory. It's helpful to see how the shared memory \ > +is used and which 'old' libs are loaded. " > +HOMEPAGE = "http://memstattool.sourceforge.net/" > +SECTION = "devtool" > + > +LICENSE = "GPLv2" > + > +S = "${WORKDIR}/memstattool" > + > +LIC_FILES_CHKSUM = "file://debian/copyright;md5=87be186443b1ac2cfa466f475e1ee0cb" > + > +SRC_URI = "http://sourceforge.net/projects/memstattool/files/${BPN}_${PV}.tar.gz \ > + " > +SRC_URI[md5sum] = "2c3acc0c62b2a18f6601b84e54aa7462" > +SRC_URI[sha256sum] = "245d5fc7fb87bcfd14486cd34917cae2856e799559ac568434af12c4852bce94" > + > +do_install_append(){ > + install -d ${D}${bindir} > + install -m 0755 memstat ${D}${bindir} > + install -d ${D}/etc > + install -m 0755 memstat.conf ${D}/etc > +} > -- Best Reagrds, Roy | RongQing Li