diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2023-08-29 17:08:45 -0500 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2023-08-29 17:08:45 -0500 |
| commit | 6e4cb5e2fdf3007c2841d22bc4019c111332a4ec (patch) | |
| tree | 5ac2b527be6466e766e15eb2def1f9a17a425cc8 /meta-xilinx-core | |
| parent | 979bb9939a8628752b9c9f37ca191a5478c923d5 (diff) | |
| download | meta-xilinx-6e4cb5e2fdf3007c2841d22bc4019c111332a4ec.tar.gz | |
bootgen: Update branch to xlnx_rel_v2023.2
Changelog:
(none)
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core')
| -rw-r--r-- | meta-xilinx-core/recipes-bsp/bootgen/bootgen_2023.2.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-xilinx-core/recipes-bsp/bootgen/bootgen_2023.2.bb b/meta-xilinx-core/recipes-bsp/bootgen/bootgen_2023.2.bb new file mode 100644 index 00000000..cd4b1e36 --- /dev/null +++ b/meta-xilinx-core/recipes-bsp/bootgen/bootgen_2023.2.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "Building and installing bootgen" | ||
| 2 | DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" | ||
| 3 | |||
| 4 | LICENSE = "Apache-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" | ||
| 6 | |||
| 7 | S = "${WORKDIR}/git" | ||
| 8 | |||
| 9 | DEPENDS += "openssl" | ||
| 10 | RDEPENDS:${PN} += "openssl" | ||
| 11 | |||
| 12 | REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" | ||
| 13 | BRANCH = "xlnx_rel_v2023.2" | ||
| 14 | SRCREV = "4f1e1caf2c09cdeacc35cbeedaf2550c6e44c7fd" | ||
| 15 | |||
| 16 | BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" | ||
| 17 | SRC_URI = "${REPO};${BRANCHARG}" | ||
| 18 | |||
| 19 | EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' | ||
| 20 | CXXFLAGS:append = " -std=c++0x" | ||
| 21 | |||
| 22 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | install -d ${D}${bindir} | ||
| 26 | install -Dm 0755 ${S}/bootgen ${D}${bindir} | ||
| 27 | } | ||
| 28 | |||
| 29 | FILES:${PN} = "${bindir}/bootgen" | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
