summaryrefslogtreecommitdiff
path: root/recipes-bsp/u-boot/u-boot-toradex_2016.11.bb
blob: e8d50bd1e945b89d4eeedf787bd0e5b66fd9c20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require recipes-bsp/u-boot/u-boot-toradex.inc
include conf/tdx_version.conf

PV = "2016.11"
PR = "${TDX_VER_INT}-gitr${@d.getVar("SRCREV", False)[0:7]}"

LIC_FILES_CHKSUM = "file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6"

SRCREV = "c77a50386f672d6846df1a20295129fb66044779"
SRCBRANCH = "2016.11-toradex-next"
COMPATIBLE_MACHINE = "(mx6|mx7|vf)"


# Hack around building two U-Boot configurations, one with, one without SPL
# if using UBOOT_CONFIG to build more than one configuration, the current code in
# u-boot.inc assumes all are either with or without SPL.
do_compile_append_mx6() {
    for config in ${UBOOT_MACHINE}; do
        touch ${B}/${config}/${SPL_BINARY}
    done
}
do_deploy_append_mx6() {
    # if SPL is zero sized file, remove all deployed artefacts
    if [ -n "${SPL_BINARY}" ]
    then
        if [ -n "${UBOOT_CONFIG}" ]
        then
            for config in ${UBOOT_MACHINE}; do
                i=$(expr $i + 1);
                for type in ${UBOOT_CONFIG}; do
                    j=$(expr $j + 1);
                    if [ $j -eq $i ]
                    then
                        if [ ! -s ${DEPLOYDIR}/${SPL_IMAGE}-${type}-${PV}-${PR} ]
                        then
                            rm -f ${DEPLOYDIR}/${SPL_IMAGE}-${type}-${PV}-${PR}
                            rm -f ${DEPLOYDIR}/${SPL_BINARYNAME}-${type}
                            rm -f ${DEPLOYDIR}/${SPL_SYMLINK}-${type}
                            rm -f ${DEPLOYDIR}/${SPL_SYMLINK}
                        else
                            ln -sf ${SPL_IMAGE}-${type}-${PV}-${PR} ${SPL_BINARYNAME}
                        fi
                    fi
                done
                unset  j
            done
            unset  i
        fi
    fi
}