blob: 387367c6c363a2e22e235c00daaa19150a0a50a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PV .= "+git"
UBOOTURI ?= "git://github.com/Xilinx/u-boot-xlnx.git;protocol=https"
UBRANCH ?= ""
UBRANCHARG = "${@['nobranch=1', 'branch=${UBRANCH}'][d.getVar('UBRANCH', True) != '']}"
SRC_URI = "${UBOOTURI};${UBRANCHARG}"
S = "${UNPACKDIR}/git"
B = "${WORKDIR}/build"
UBOOT_MB_INC = ""
UBOOT_MB_INC:microblaze = "u-boot-xlnx-microblaze.inc"
require ${UBOOT_MB_INC}
|