From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 65719E00B43; Wed, 14 Oct 2015 07:20:46 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [74.55.86.74 listed in list.dnswl.org] * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from smtp.webfaction.com (mail6.webfaction.com [74.55.86.74]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id F2C68E00A71 for ; Wed, 14 Oct 2015 07:20:42 -0700 (PDT) Received: from [192.168.1.10] (c-73-194-208-34.hsd1.nj.comcast.net [73.194.208.34]) by smtp.webfaction.com (Postfix) with ESMTP id AD8BB2088108; Wed, 14 Oct 2015 14:20:40 +0000 (UTC) To: Otavio Salvador , Edward Wingate References: From: Bob Cochran Message-ID: <561E64B5.6080702@mindchasers.com> Date: Wed, 14 Oct 2015 10:20:37 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: Re: remoteproc module 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: Wed, 14 Oct 2015 14:20:46 -0000 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit On 10/14/2015 08:52 AM, Otavio Salvador wrote: > On Wed, Oct 14, 2015 at 4:08 AM, Edward Wingate wrote: >> On Tue, Oct 13, 2015 at 5:37 AM, Otavio Salvador >> wrote: >>> You need to adjust the search path for the files; check other bbappend >>> files for an example on this. >> >> I think my defconfig is being used, but then there is something else >> that goes on to overwrite my defconfig. My defconfig is copied to >> .../tmp/work/wandboard-poky-linux-gnueabi/linux-wandboard/3.14.28-r0. >> Then I believe it is being used to generate a .config. But then in >> the kernel build directory, I see my defconfig in a .config.old, while >> another .config takes its place. Any idea what could be doing this? > > So it is lacking a dependency in the config chain or something. Check > kernel configuration and if it does provide the remoteproc feature > that you are looking for (I guess it does not). > Have you looked at run.do_configure in your temp directory? You should be able to find the lines that copy the defconfig and figure it out from there. Also, as Otavio previously pointed out, make sure you understand your file search path. Grep on ^FILESPATH= after running a $ bitbake virtual/kernel -e It can be helpful to redirect this to a file for further examination: $ bitbake virtual/kernel -e > linux.out Bob