Hi Paul,

That's a better answer than I was fearing. I was starting to think that 
Yocto/Poky was only intended to build/assemble versioned or released code.

We are still using Edison. I started going through the cycles of trying to 
upgrade us to Dylan a month or so ago, but ran into an assortment of issues 
regarding udev (at runtime) and some issues with do_fetch/do_unpack not 
executing on an image re-build like they do in Edison. My priority list got 
adjusted a bit, and I had to abandon that effort for a while. This information 
definitely adds a little more to the benefit column of moving us forward.

Are you saying that if I were to move our build system forward to danny or 
Dylan that the dependency behavior I'm looking for in these recipes would start 
to work as intended? Would this behavior survive the use of the rm_work 
directive?

I found this reply in my SPAM this morning. While I was in there, I found your 
response to the fetch/unpack issue that you sent a couple weeks back. I'll be 
replying to that shortly.

Thanks,
Brian



-----Original Message-----
From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] 
Sent: Wednesday, July 31, 2013 5:52 AM
To: Brian Karcz
Cc: yocto@yoctoproject.org
Subject: Re: [yocto] recipe dependency on externally built binaries?

Hi Brian,

On Monday 29 July 2013 19:05:04 Brian Karcz wrote:
> I'm curious if there is a way to tell a package recipe that its 
> resulting package output is dependent on the pieces it's assembling. 
> The scenario I have is as follows. I created a series of recipes that 
> assemble an externally built executable, and some configurations files 
> that are local to the recipe:
> 
> xyz-app.bb
> 
>     SRC_URI = "file://<path to xyz-app executable> \
>                File://xyz-app.config<File:///\\xyz-app.config>"
> 
>     do_install () {
>         <make the required directories>
>         <put the files in their places>
>     }
> 
> abc-image.bb
> 
>     POKY_EXTRA_INSTALL += "xyz-app"
> 
> This setup works for assembling all the pieces I need, but unless the 
> app recipe revision gets bumped, it's not able to tell when the 
> xyz-app executable or xyz-app.config get changed and create a new 
> xyz-app package file. Is there a way to tell the recipe that there is 
> a dependency for its output package on the contents of the SRC_URI 
> line without having to bump the revision?

It depends on which version of the build system you are using. In danny (1.3) 
and later a checksum is performed on every local file referred to in SRC_URI 
(and the checksum will be refreshed if the file's mtime changes); if the 
checksum is different then do_fetch for the recipe and all tasks that depend 
upon it should be re-executed.

However, the fact that you refer to POKY_EXTRA_INSTALL suggests you might be 
using an older version of the build system - the current equivalent variable is 
called CORE_IMAGE_EXTRA_INSTALL. Which version are you currently working with?

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
_______________________________________________
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto

Reply via email to