diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2010-12-15 16:19:25 -0500 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-21 09:29:12 +0000 |
commit | eb74a0506a2f17170254e62513db3451e0587d11 (patch) | |
tree | 58afa77c24cd376e744afefa1569b4bee4dbdde6 /meta/classes/kernel-yocto.bbclass | |
parent | 703148fde646ed8c207880a47be09b683b6f6303 (diff) | |
download | poky-eb74a0506a2f17170254e62513db3451e0587d11.tar.gz |
linux-yocto: remove or adjust to _ in branch names
The existing 2.6.34 kernel tree uses _ where poky typically
uses -. This is a historical artifact, since working with
gnu Make and shells means avoiding - is wise. The opposite
is true in Yocto.
To avoid using the _ reserved character wherever possible
we can simply remove it from the branch names in the
new 2.6.37 kernel, but to keep the content stable in the
0.9 2.6.34 kernel, we map _ to - for the purposes of
packaging.
To further faciliate this switch, the branch names no
longer need to be shortened in the KMACHINE mappings, but
can be fully specified and the tools/processing adapt as
required. This gives us the flexibility to map multiple
boards to a single branch for building.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 8e820122ec..f5418782b0 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -10,7 +10,7 @@ S = "${WORKDIR}/linux" | |||
10 | # and is used in the SRC_URI. The machine is then set back to ${MACHINE}, | 10 | # and is used in the SRC_URI. The machine is then set back to ${MACHINE}, |
11 | # since futher processing will use that to create local branches | 11 | # since futher processing will use that to create local branches |
12 | python __anonymous () { | 12 | python __anonymous () { |
13 | import bb, re | 13 | import bb, re, string |
14 | 14 | ||
15 | version = bb.data.getVar("LINUX_VERSION", d, 1) | 15 | version = bb.data.getVar("LINUX_VERSION", d, 1) |
16 | # 2.6.34 signifies the old-style tree, so we need some temporary | 16 | # 2.6.34 signifies the old-style tree, so we need some temporary |
@@ -29,12 +29,14 @@ python __anonymous () { | |||
29 | # The branch for a build is: | 29 | # The branch for a build is: |
30 | # yocto/<kernel type>/${KMACHINE} or | 30 | # yocto/<kernel type>/${KMACHINE} or |
31 | # yocto/<kernel type>/${KMACHINE}/base | 31 | # yocto/<kernel type>/${KMACHINE}/base |
32 | bb.data.setVar("KBRANCH", bb.data.expand("yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}",d), d) | 32 | bb.data.setVar("KBRANCH", bb.data.expand("${KMACHINE}",d), d) |
33 | bb.data.setVar("KMETA", "meta", d) | 33 | bb.data.setVar("KMETA", "meta", d) |
34 | 34 | ||
35 | mach = bb.data.getVar("KMACHINE", d, 1) | 35 | mach = bb.data.getVar("KMACHINE", d, 1) |
36 | # drop the "/base" if it was on the KMACHINE | 36 | # drop the "/base" if it was on the KMACHINE |
37 | kmachine = mach.replace('/base','') | 37 | kmachine = mach.replace('/base','') |
38 | # drop everything but the last segment | ||
39 | kmachine = os.path.basename( kmachine ) | ||
38 | # and then write KMACHINE back | 40 | # and then write KMACHINE back |
39 | bb.data.setVar('KMACHINE_' + bb.data.expand("${MACHINE}",d), kmachine, d) | 41 | bb.data.setVar('KMACHINE_' + bb.data.expand("${MACHINE}",d), kmachine, d) |
40 | 42 | ||
@@ -51,11 +53,7 @@ do_patch() { | |||
51 | defconfig=${WORKDIR}/defconfig | 53 | defconfig=${WORKDIR}/defconfig |
52 | fi | 54 | fi |
53 | 55 | ||
54 | if [ -n "${BOOTSTRAP}" ]; then | 56 | kbranch=${KBRANCH} |
55 | kbranch="yocto/${LINUX_KERNEL_TYPE}/${KMACHINE}" | ||
56 | else | ||
57 | kbranch=${KBRANCH} | ||
58 | fi | ||
59 | 57 | ||
60 | # simply ensures that a branch of the right name has been created | 58 | # simply ensures that a branch of the right name has been created |
61 | createme ${ARCH} ${kbranch} ${defconfig} | 59 | createme ${ARCH} ${kbranch} ${defconfig} |