base.bbclass: Minor performance tweak, add base_get_srcrev()

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2249 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2007-08-01 11:24:50 +00:00
parent 841d5dc1e0
commit 09e3f98f7e
1 changed files with 10 additions and 1 deletions

View File

@ -723,8 +723,11 @@ def base_after_parse(d):
if (old_arch == mach_arch):
# Nothing to do
return
if (bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1) == '0'):
override = bb.data.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', d, 1)
if not override or override == '0':
return
paths = []
for p in [ "${FILE_DIRNAME}/${PF}", "${FILE_DIRNAME}/${P}", "${FILE_DIRNAME}/${PN}", "${FILE_DIRNAME}/files", "${FILE_DIRNAME}" ]:
paths.append(bb.data.expand(os.path.join(p, mach_arch), d))
@ -742,6 +745,12 @@ python () {
base_after_parse(d)
}
def base_get_srcrev(d):
import bb
if bb.fetch.get_srcrev:
return bb.fetch.get_srcrev(d)
return "NOT IMPLEMENTED"
# Patch handling
inherit patch