kernel-yocto: Ensure python code has awlays run before SRCPV is expanded

The python code in this class file needs to run before SRCPV is expanded
and calls into the fetcher are made. To so this we create a python function
and prepend a call to it before SRCPV's get_srcrev() call.

Ugly, ugly, ugly but the ordering is guaranteed.

If this doesn't happen, the fetcher can end up in two different states and
there may be caching implications of this.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-02-08 10:35:53 +00:00
parent bd2fd821a3
commit 65712be736
1 changed files with 9 additions and 2 deletions

View File

@ -9,7 +9,13 @@ S = "${WORKDIR}/linux"
# branch that is always present 'standard'. This sets the KBRANCH variable
# and is used in the SRC_URI. The machine is then set back to ${MACHINE},
# since futher processing will use that to create local branches
python __anonymous () {
SRCPV_prepend = "${@yoctokernel_variables_fixup(d)}"
def yoctokernel_variables_fixup(d):
if d.getVar("PVFIXUPDONE", False) is "done":
return ""
import bb, re, string
version = bb.data.getVar("LINUX_VERSION", d, 1)
@ -47,7 +53,8 @@ python __anonymous () {
bb.data.setVar('KMACHINE_' + bb.data.expand("${MACHINE}",d), bb.data.expand("${MACHINE}",d), d)
bb.data.setVar("KBRANCH", "yocto/standard/base", d)
bb.data.setVar("BOOTSTRAP", "yocto/standard/" + bb.data.expand("${MACHINE}",d), d)
}
d.setVar("PVFIXUPDONE", "done")
return ""
do_patch() {
cd ${S}