mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-17 06:50:07 +00:00
8bdd4740b2
* 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>
23 lines
872 B
BlitzBasic
23 lines
872 B
BlitzBasic
SUMMARY = "bmaptool alternative written in C++"
|
|
DESCRIPTION = "bmap-writer is a command-line utility designed to efficiently write disk images \
|
|
to storage devices using block mapping (BMAP). It serves as \
|
|
a lightweight alternative to the Yocto BMAP tool, \
|
|
bmap-writer is C++ based does not require Python and focuses solely on writing an image."
|
|
HOMEPAGE = "https://github.com/embetrix/bmap-writer"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e49f4652534af377a713df3d9dec60cb"
|
|
|
|
SRC_URI = "git://github.com/embetrix/${BPN};branch=master;protocol=https"
|
|
SRCREV = "fcc14ed4fc9083a4e7fc25045b99cb7323bae4fe"
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS = "libxml2 libarchive"
|
|
inherit cmake pkgconfig
|
|
|
|
EXTRA_OEMAKE += 'LIBXML2_HEADER_PATH="${STAGING_INCDIR}/libxml2"'
|
|
|
|
FILES:${PN} = "${bindir}/bmap-writer"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|