summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGregor <danismostlikely@gmail.com>2013-12-10 08:45:34 -0600
committerOtavio Salvador <otavio@ossystems.com.br>2013-12-10 14:09:23 -0200
commitc9284f1668f33d5c6a9b2bcc7fc869642a0e4b92 (patch)
tree364bc658dfd9d66cc029bd71638c438034f73aff
parentdaea0e2bb3b42bf5ebb3a676f27e2fa08e87520b (diff)
downloadmeta-fsl-arm-c9284f1668f33d5c6a9b2bcc7fc869642a0e4b92.tar.gz
u-boot-fslc: Add branch to SRC_URI and separate recipe files
Separate the recipe into two files in the same fashion as the kernel recipes. A u-boot-fslc.inc file contains the common settings for the recipe, and a .bb file contains the settings specific to the version of u-boot to be built (e.g. SRCREV, branch name). In addition, new versions of bitbake require that a branch be specified and that the SRCREV be in the specified branch. Set the branch in the SRC_URI. Branch code based on patch from Dan McGregor <danismostlikely@gmail.com> Change-Id: I89d017fa4cc3e7addbea89d49605f78e3d84e246 Signed-off-by: John Weber <rjohnweber@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r--recipes-bsp/u-boot/u-boot-fslc.inc29
-rw-r--r--recipes-bsp/u-boot/u-boot-fslc_2013.10.bb24
2 files changed, 32 insertions, 21 deletions
diff --git a/recipes-bsp/u-boot/u-boot-fslc.inc b/recipes-bsp/u-boot/u-boot-fslc.inc
new file mode 100644
index 0000000..485c252
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-fslc.inc
@@ -0,0 +1,29 @@
1# Copyright (C) 2012, 2013 O.S. Systems Software LTDA.
2# Released under the MIT license (see COPYING.MIT for the terms)
3
4require recipes-bsp/u-boot/u-boot.inc
5
6DESCRIPTION = "U-boot bootloader for Freescale ARM platforms"
7LICENSE = "GPLv2+"
8LIC_FILES_CHKSUM = "file://Licenses/README;md5=025bf9f768cbcb1a165dbe1a110babfb"
9COMPATIBLE_MACHINE = "(mxs|mx3|mx5|mx6|vf60)"
10
11DEPENDS_mxs += "elftosb-native openssl-native"
12
13PROVIDES += "u-boot"
14
15SRCBRANCH ??= "master"
16
17SRC_URI = "git://github.com/Freescale/u-boot-imx.git;branch=${SRCBRANCH}"
18
19S = "${WORKDIR}/git"
20
21# FIXME: Allow linking of 'tools' binaries with native libraries
22# used for generating the boot logo and other tools used
23# during the build process.
24EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CPPFLAGS}" \
25 HOSTLDFLAGS="-L${STAGING_BASE_LIBDIR_NATIVE} -L${STAGING_LIBDIR_NATIVE}" \
26 HOSTSTRIP=true'
27
28PACKAGE_ARCH = "${MACHINE_ARCH}"
29
diff --git a/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb b/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb
index 73d4371..ea42c74 100644
--- a/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb
+++ b/recipes-bsp/u-boot/u-boot-fslc_2013.10.bb
@@ -1,25 +1,7 @@
1require recipes-bsp/u-boot/u-boot.inc 1include u-boot-fslc.inc
2
3LICENSE = "GPLv2+"
4LIC_FILES_CHKSUM = "file://Licenses/README;md5=025bf9f768cbcb1a165dbe1a110babfb"
5COMPATIBLE_MACHINE = "(mxs|mx3|mx5|mx6|vf60)"
6
7DEPENDS_mxs += "elftosb-native openssl-native"
8
9PROVIDES += "u-boot"
10 2
11PV = "v2013.10" 3PV = "v2013.10"
12 4
13SRCREV = "079e214888279518ce061c71238a74a0c3db2c28" 5SRCBRANCH = "patches-2013.10"
14SRC_URI = "git://github.com/Freescale/u-boot-imx.git"
15 6
16S = "${WORKDIR}/git" 7SRCREV = "079e214888279518ce061c71238a74a0c3db2c28"
17
18# FIXME: Allow linking of 'tools' binaries with native libraries
19# used for generating the boot logo and other tools used
20# during the build process.
21EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CPPFLAGS}" \
22 HOSTLDFLAGS="-L${STAGING_BASE_LIBDIR_NATIVE} -L${STAGING_LIBDIR_NATIVE}" \
23 HOSTSTRIP=true'
24
25PACKAGE_ARCH = "${MACHINE_ARCH}"