From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id E42D7E01358 for ; Tue, 3 Sep 2013 12:20:28 -0700 (PDT) Received: by mail-wg0-f43.google.com with SMTP id z12so2652272wgg.22 for ; Tue, 03 Sep 2013 12:20:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Ws6ScSHE22NGCzXjwDyIhx9W+tfOzSqSHbIcLcS516Y=; b=WFo0goRaZlpaOuumO7LAK416yfLgnQrOa0GfnbWr2TYTF6MAa94ozanTcD59Bu3TBy NDN3L6chXszEsvHjQQklF/RJvcwZU6etvXMweh/Tpj/jGdz0ipW29TPrbqb2ny+Na89b deATlMiToMfYRZv5J09+CKK6RRBClW5XbbonhdmSNQ1uUhw2reDbCiL4J5z0MBNJ1Eho gliglrAzwCo8l9ZyBr/U+4hC8oRYJ0YLFMkru/SpwurPrrihgY+ytyVFJE3pRU0jBYvm OXPVh8RN0X0CCW/qXw84OYG23Sb/toVS2HKx2tUPmn4NI+QFHi33SRTNDbvYpHghZoC/ gcbA== X-Gm-Message-State: ALoCoQmizd+oGRllbDO5AxLgILVSibPaSo6E44AS01Dz7p5oEwOXWrqT8kdn6qj62ORPLxwiD4ab X-Received: by 10.194.240.164 with SMTP id wb4mr31163wjc.70.1378236027366; Tue, 03 Sep 2013 12:20:27 -0700 (PDT) Received: from [192.168.0.50] (aig34-1-88-167-231-94.fbx.proxad.net. [88.167.231.94]) by mx.google.com with ESMTPSA id fv10sm25794370wic.0.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 03 Sep 2013 12:20:26 -0700 (PDT) Message-ID: <52263678.4060101@vtkloud.com> Date: Tue, 03 Sep 2013 21:20:24 +0200 From: JC User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130803 Thunderbird/17.0.8 MIME-Version: 1.0 To: Otavio Salvador References: <5225F779.3060103@vtkloud.com> <52261207.1000606@vtkloud.com> <52262330.4090601@vtkloud.com> <522626E1.3060800@vtkloud.com> <5226272A.7000603@freescale.com> <52262B6E.70008@vtkloud.com> In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: (SOLVED) Re: create custom package from local files X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Sep 2013 19:20:30 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 03/09/2013 20:43, Otavio Salvador wrote: > Hello, > > Please don't top post as it makes harder to follow the discussion > (http://en.wikipedia.org/wiki/Posting_style#Top-posting). Sorry... I usually don't :( > Please check the log.do_compile and log.do_install files so we can > understand what is going on. Gooosh... Since you asked me, I realized that in temp there were no do_compile & do_install logs.. But it helped me to find _one_ mistake. In my bb file there is : do_compile() { ${CC} ${CFLAGS} ${LDFLAGS} helloworld.c -o helloworld } do_install() { install -d ${D}${bindir} install -m 0755 helloworld ${D}${bindir} } notice the " }" instead of "}" ? That's the issue! I removed the space, ran a new "bitbake helloworld" and now I get a build & install. In my tmp work I now have the binary helloworld :) In the deploy-rpms directory I now have: helloworld-1.1-r0.armv7a_vfp_neon.rpm helloworld-dbg-1.1-r0.armv7a_vfp_neon.rpm helloworld-dev-1.1-r0.armv7a_vfp_neon.rpm After that I ran a bitbake core-image-minimal and it's been successful... Shouldn't I have checked the logs were non existent, I would never have found that **** space ! Thanks, again, all of you, for your help and patience Regards Jay