From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f181.google.com (mail-pd0-f181.google.com [209.85.192.181]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 33A6EE014E2 for ; Fri, 12 Jul 2013 11:23:33 -0700 (PDT) Received: by mail-pd0-f181.google.com with SMTP id 14so8840820pdj.26 for ; Fri, 12 Jul 2013 11:23:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=IRpBZDMR4Yb98nR2Ws5Yd1eQfP6N5eCG80fAhmA7AqU=; b=n586MPBv4emVunj+Gbmq0YSR8dsYwEdcGJXZNJQw/bfLIoD2Bcdrsm4HrbAhN7M2cN R2LETbEQyeKrbqaGiFhgJp7tW8RZM8Nnxdc0ZvEL6qT8LhCC642OFnytLBNQvo8fjvPd 2pm0R+VQnitRS9VgI/8vFvWJDrbqmSyopZrFCs0r0siApv5ioiD7jUlt1cZJKihYdc6z n24YgiXX4MAOHlMV0XlKO/Ku6oDkx3WOqunBpd+YvX/1p+i+1GnPszBWxkdV/IejJhxb i63+cpeEklKX6RLGThNkFohkMl9vT8Bh0NMYcISbs4Rpwp/jNmMQAH8KLM6PWaiQodEz S+2A== MIME-Version: 1.0 X-Received: by 10.68.164.69 with SMTP id yo5mr42926361pbb.96.1373653413008; Fri, 12 Jul 2013 11:23:33 -0700 (PDT) Received: by 10.68.73.196 with HTTP; Fri, 12 Jul 2013 11:23:32 -0700 (PDT) In-Reply-To: <3624548.VBuVOLK5Yg@helios> References: <2897880.FC0dZLhceG@helios> <3624548.VBuVOLK5Yg@helios> Date: Fri, 12 Jul 2013 23:53:32 +0530 Message-ID: From: varun bhatnagar To: Paul Eggleton , "yocto@yoctoproject.org" Subject: Re: Yocto Layers not getting recognized by bitbake X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Jul 2013 18:23:34 -0000 Content-Type: multipart/alternative; boundary=047d7b6764e6ba1e9e04e1549b0e --047d7b6764e6ba1e9e04e1549b0e Content-Type: text/plain; charset=ISO-8859-1 Hi Paul, I am pasting the content of my recipe file below, please have a look at it. DESCRIPTION = "bitake file" *DEPENDS = "net-snmp fuse"* RDEPENDS = "curl rpm openssh openldap procps psmisc sed net-snmp-server" LICENSE = "GPLv2+" PR = "r0" SRC_URI = "*file:///home/user/Myapp.tar.gz"* ; EXTRA_OECMAKE += "-DCMAKE_FIND_ROOT_PATH=${STAGING_DIR_HOST} " EXTRA_OECMAKE += "-DTARGET_ARCHITECTURE=${TARGET_ARCH} " EXTRA_OECMAKE += "-DCMAKE_SYSTEM_NAME=Linux " EXTRA_OECMAKE += "-DCMAKE_SYSTEM_VERSION=1 " EXTRA_OECMAKE += "-DRSTATE=${PR} " EXTRA_OECMAKE += "-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER " EXTRA_OECMAKE += "-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY " EXTRA_OECMAKE += "-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY " EXTRA_OECMAKE += "-DRPM=1 " inherit cmake do_configure(){ cmake ..${EXTRA_OECMAKE} } do_compile(){ oe_runmake all } // Varun On Mon, Jul 1, 2013 at 3:18 PM, Paul Eggleton wrote: > On Sunday 30 June 2013 00:05:58 varun bhatnagar wrote: > > Yes Paul that was the entry was there in CORE_IMAGE_EXTRA_INSTALL. I have > > removed it from there but I need to add the command provided by these > > packages in my image. So I have added one line in my layer.conf file > > "IMAGE_INSTALL_append= test-ea ". Now if I try to run bitbake -k > > core-image-minimal, it gives me a message saying "Nothing provides > > test-ea". What shall I do? (I have build the recipe file of test-ea > without > > any error.) > > Can you show me what the test-ea recipe contains? > > Cheers, > Paul > > -- > > Paul Eggleton > Intel Open Source Technology Centre > --047d7b6764e6ba1e9e04e1549b0e Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Hi Paul,

I am pasting the content= of my recipe file below, please have a look at it.


DESCRIPTION =3D "bitake file"
DEPENDS =3D "net-snmp fuse"
RDEPENDS =3D "curl rpm openssh open= ldap procps psmisc sed net-snmp-server"
LICENSE =3D "GPLv2+&= quot;
PR =3D "r0&quo= t;
SRC_URI =3D "= file:///home/= user/Myapp.tar.gz";
EXTRA_OECMAKE +=3D "= -DCMAKE_FIND_ROOT_PATH=3D${STAGING_DIR_HOST} "
EXTRA_OECMAKE +=3D "-DTARGET_ARCHITECTURE= =3D${TARGET_ARCH} "
EXTRA_OECMAKE +=3D "= -DCMAKE_SYSTEM_NAME=3DLinux "
EXTRA_OECMAKE +=3D "-DCMAKE_SYSTEM_VERSION=3D1 "=
EXTRA_OECMAKE +=3D "= -DRSTATE=3D${PR} "
E= XTRA_OECMAKE +=3D "-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=3DNEVER "<= /font>
EXTRA_OECMAKE +=3D "= -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=3DONLY "
EXTRA_OECMAKE +=3D "-DCMAKE_FIND_ROOT_PATH_MO= DE_INCLUDE=3DONLY "
EXTRA_OECMAKE +=3D "= -DRPM=3D1 "
=A0
inherit cmake
=A0
do_configure(){=A0=A0=A0=A0=A0=A0=A0 cmake ..${EX= TRA_OECMAKE}
}
=A0
do_compile(){
=A0=A0=A0=A0=A0=A0=A0 oe_runmake al= l
}

=

//
Varun
=


On Mon, Jul 1= , 2013 at 3:18 PM, Paul Eggleton <paul.eggleton@linux.intel.co= m> wrote:
On Sunday 30 June 2013 00:= 05:58 varun bhatnagar wrote:
> Yes Paul that was the entry was there in CORE_IMAGE_EXTRA_INSTALL. I h= ave
> removed it from there but I need to add the command provided by these<= br> > packages in my image. So I have added one line in my layer.conf file > "IMAGE_INSTALL_append=3D test-ea ". Now if I try to run bitb= ake -k
> core-image-minimal, it gives me a message saying "Nothing provide= s
> test-ea". What shall I do? (I have build the recipe file of test-= ea without
> any error.)

Can you show me what the test-ea recipe contains?

Cheers,
Paul

--

Paul Eggleton
Intel Open Source Technology Centre

--047d7b6764e6ba1e9e04e1549b0e--