summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAyoub Zaki <ayoub.zaki@embetrix.com>2025-01-02 15:33:45 +0100
committerKhem Raj <raj.khem@gmail.com>2025-01-02 07:49:49 -0800
commit8bdd4740b264ea3f49a3a0dbabbf3e7f1c2a26ef (patch)
tree7681708dde386c6e54a86ea4d44d955823072328
parent33bc1313cff7b606988a9508f64b3aa5fd5536b8 (diff)
downloadmeta-openembedded-8bdd4740b264ea3f49a3a0dbabbf3e7f1c2a26ef.tar.gz
bmap-writer: update to latest git version
* switch to libarchive to handle a larger decompression schemes * implement own sha256 hashing and drop openssl dependency * compute maximum buffer size before writing each range * bmap file optional: if not provided, it will be searched in the same path as the input * print time/speed of the writing operation Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/bmap-writer/bmap-writer_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/bmap-writer/bmap-writer_git.bb b/meta-oe/recipes-support/bmap-writer/bmap-writer_git.bb
index fb310be035..3e8bd67e67 100644
--- a/meta-oe/recipes-support/bmap-writer/bmap-writer_git.bb
+++ b/meta-oe/recipes-support/bmap-writer/bmap-writer_git.bb
@@ -9,10 +9,10 @@ LICENSE = "GPL-3.0-only"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=e49f4652534af377a713df3d9dec60cb" 9LIC_FILES_CHKSUM = "file://LICENSE;md5=e49f4652534af377a713df3d9dec60cb"
10 10
11SRC_URI = "git://github.com/embetrix/${BPN};branch=master;protocol=https" 11SRC_URI = "git://github.com/embetrix/${BPN};branch=master;protocol=https"
12SRCREV = "06cf5263082ec3e9d54e8409f268240fc767b5d4" 12SRCREV = "fcc14ed4fc9083a4e7fc25045b99cb7323bae4fe"
13S = "${WORKDIR}/git" 13S = "${WORKDIR}/git"
14 14
15DEPENDS= "openssl libxml2 xz zlib zstd" 15DEPENDS = "libxml2 libarchive"
16inherit cmake pkgconfig 16inherit cmake pkgconfig
17 17
18EXTRA_OEMAKE += 'LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2"' 18EXTRA_OEMAKE += 'LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2"'