summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSipke Vriend <sipke.vriend@xilinx.com>2013-09-03 15:04:20 +1000
committerSipke Vriend <sipke.vriend@xilinx.com>2013-09-03 15:13:11 +1000
commit3889c6ac108987aa8b6307a2b57c6471dfa3c4e6 (patch)
treeeb286d4c33e28362c35f651ce0bff5acd7cdb82d
parent4bc918d84beca73e11b0937a21d4f38e2dabbd79 (diff)
downloadmeta-xilinx-3889c6ac108987aa8b6307a2b57c6471dfa3c4e6.tar.gz
recipes-bsp:u-boot: Add u-boot-xlnx_2013.07 and bleeding edge recipe.
Add u-boot-xlnx_2013.07.bb and point to latest master next on u-boot-xlnx.git Also add u-boot-xlnx_git.bb as a bleeding edge recipe for u-boot. The bleeding edge version defaults to master-next latest commit, but can be changed to build any branch in the u-boot-xlnx.git repository. Signed-off-by: Sipke Vriend <sipke.vriend@xilinx.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-xlnx_2013.07.bb7
-rw-r--r--recipes-bsp/u-boot/u-boot-xlnx_git.bb27
2 files changed, 34 insertions, 0 deletions
diff --git a/recipes-bsp/u-boot/u-boot-xlnx_2013.07.bb b/recipes-bsp/u-boot/u-boot-xlnx_2013.07.bb
new file mode 100644
index 00000000..af0b459e
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-xlnx_2013.07.bb
@@ -0,0 +1,7 @@
1# Revision corresponds to commit after 2013.07 merge
2# in u-boot-xlnx.git
3SRCREV = "f40924452f947fbd6886eaa677c1b0bd47edfcf5"
4PV = "v2013.07${XILINX_EXTENSION}+git${SRCPV}"
5PR = "r1"
6
7include u-boot-xlnx.inc
diff --git a/recipes-bsp/u-boot/u-boot-xlnx_git.bb b/recipes-bsp/u-boot/u-boot-xlnx_git.bb
new file mode 100644
index 00000000..5544ef30
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-xlnx_git.bb
@@ -0,0 +1,27 @@
1# This recipe allows for a 'bleeding edge' u-boot-xlnx build.
2# Since this tree is frequently updated, AUTOREV is used to track its contents.
3#
4# To enable this recipe, set
5# PREFERRED_VERSION_u-boot-xlnx ?= "${UBOOT_XLNX_DEV_BRANCH}"
6# Alternatively to track and build master branch instead, set
7# UBOOT_XLNX_DEV_BRANCH ?= "master"
8# PREFERRED_VERSION_u-boot-xlnx ?= "${UBOOT_XLNX_DEV_BRANCH}"
9
10UBOOT_XLNX_DEV_BRANCH ?= "master-next"
11
12include u-boot-xlnx.inc
13
14SRC_URI = "git://github.com/Xilinx/u-boot-xlnx.git;protocol=git;branch=${UBOOT_XLNX_DEV_BRANCH}"
15
16# Set default SRCREVs. SRCREVs statically set to prevent network access during
17# parsing.
18# AUTOREV is set in the anonymous python routine and resolved when the variables
19# are finalized.
20SRCREV="f40924452f947fbd6886eaa677c1b0bd47edfcf5"
21
22python () {
23 d.setVar("SRCREV", "${AUTOREV}")
24}
25
26PR = "r0"
27PV = "${UBOOT_XLNX_DEV_BRANCH}${XILINX_EXTENSION}+git${SRCPV}"