From 7f8e116d63f4b5047c6b0a271d11cd54afc3211f Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Mon, 21 Oct 2024 09:22:16 -0500 Subject: bootgen: Move to 2024.2 branch Signed-off-by: Mark Hatle --- .../recipes-devtools/bootgen/bootgen_2024.1.bb | 31 ---------------------- .../recipes-devtools/bootgen/bootgen_2024.2.bb | 31 ++++++++++++++++++++++ 2 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.1.bb create mode 100644 meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.2.bb (limited to 'meta-xilinx-core') diff --git a/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.1.bb b/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.1.bb deleted file mode 100644 index 3c68f10d..00000000 --- a/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.1.bb +++ /dev/null @@ -1,31 +0,0 @@ -SUMMARY = "Building and installing bootgen" -DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" - -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" - -S = "${WORKDIR}/git" - -DEPENDS += "openssl" -RDEPENDS:${PN} += "openssl" - -REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" -BRANCH = "xlnx_rel_v2024.1" -SRCREV = "92e09bf37ea17d7b1f0e102a2548f27fb768651c" - -BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" -SRC_URI = "${REPO};${BRANCHARG}" - -EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' -CXXFLAGS:append = " -std=c++0x" - -TARGET_CC_ARCH += "${LDFLAGS}" - -do_install() { - install -d ${D}${bindir} - install -Dm 0755 ${S}/bootgen ${D}${bindir} -} - -FILES:${PN} = "${bindir}/bootgen" - -BBCLASSEXTEND = "native nativesdk" diff --git a/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.2.bb b/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.2.bb new file mode 100644 index 00000000..9a88f53a --- /dev/null +++ b/meta-xilinx-core/recipes-devtools/bootgen/bootgen_2024.2.bb @@ -0,0 +1,31 @@ +SUMMARY = "Building and installing bootgen" +DESCRIPTION = "Building and installing bootgen, a Xilinx tool that lets you stitch binary files together and generate device boot images" + +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=d526b6d0807bf263b97da1da876f39b1" + +S = "${WORKDIR}/git" + +DEPENDS += "openssl" +RDEPENDS:${PN} += "openssl" + +REPO ?= "git://github.com/Xilinx/bootgen.git;protocol=https" +BRANCH = "xlnx_rel_v2024.2" +SRCREV = "92e09bf37ea17d7b1f0e102a2548f27fb768651c" + +BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != '']}" +SRC_URI = "${REPO};${BRANCHARG}" + +EXTRA_OEMAKE += 'CROSS_COMPILER="${CXX}" -C ${S}' +CXXFLAGS:append = " -std=c++0x" + +TARGET_CC_ARCH += "${LDFLAGS}" + +do_install() { + install -d ${D}${bindir} + install -Dm 0755 ${S}/bootgen ${D}${bindir} +} + +FILES:${PN} = "${bindir}/bootgen" + +BBCLASSEXTEND = "native nativesdk" -- cgit v1.2.3-54-g00ecf