From 65712be7369c20d7577f563167c49dd4fd466da6 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 8 Feb 2011 10:35:53 +0000 Subject: 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 --- meta/classes/kernel-yocto.bbclass | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'meta/classes') diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 2e01948eb1..4c52bca43a 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -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} -- cgit v1.2.3-54-g00ecf