[yocto] AUTOREVing with legacy recipe fetching from cvs
Trevor Woerner
twoerner at gmail.com
Sat Dec 15 07:50:39 PST 2012
I apologize if I'm pointing out the obvious and/or something you've
already tried.
On Thu, Dec 13, 2012 at 11:22 AM, Andrea Galbusera <gizero at gmail.com> wrote:
> After reading the manual I understand that the ${AUTOREV} method is
> not working with cvs. Is there an alternative approach to instruct the
> fetcher to always perform an update/checkout from the repository?
According to the bitbake documentation, if you specify a revision of
"now" will cause a fresh checkout on every build. Is that the same as
the "AUTOREV method"?
poky/bitbake/lib/bb/fetch2/cvs.py:
def need_update(self, url, ud, d):
if (ud.date == "now"):
return True
if not os.path.exists(ud.localpath):
return True
return False
More information about the yocto
mailing list