[yocto] AUTOREV problems

2012-10-22 Thread Seth Bollinger
Hello All, I've been having some serious problems trying to get my image to rebuild recipes when their upstream repositories have changed. I have SRCREV = ${AUTOREV} in my recipe and in bitbake -e I see these 2 lines: # SRCREV=${AUTOREV} SRCREV=AUTOINC I've found BB_SRCREV_POLICY and I've set

Re: [yocto] AUTOREV problems

2012-10-22 Thread Tomas Frydrych
Hi, On 22/10/12 12:56, Seth Bollinger wrote: 1. What is the expected operation of bitbake builds for recipes using autorev? It should just work (and FWIW, it's working here). 2. How can I get my autorev recipes to rebuild when their repositories change? 3. If this is working for

Re: [yocto] AUTOREV problems

2012-10-22 Thread Jerrod Peach
Seth, Like Tomas said, it's hard to say for sure without seeing the recipe in question, but I know one way this could happen: AUTOREV, by itself, does not permute your hash. It ends up just resolving to the string AUTOINC every time. You *also *need the SRCPV variable somewhere in your recipe,

Re: [yocto] AUTOREV problems

2012-10-22 Thread Jerrod Peach
Correction: I'm wrong on the standard for PV. The standard (after looking through some BB files) appears to be this: PV = version number+vcs${SRCPV} On Mon, Oct 22, 2012 at 8:46 AM, Jerrod Peach pea...@lexmark.com wrote: Seth, Like Tomas said, it's hard to say for sure without seeing the