mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
eb5c84436d
Add PACKAGECONFIG for libkcapi to optionally enable kernel crypto API support. Changelog: https://github.com/embetrix/bmap-writer/releases/tag/1.0.4 Signed-off-by: Ayoub Zaki <ayoub.zaki@embetrix.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
23 lines
902 B
BlitzBasic
23 lines
902 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;tag=${PV}"
|
|
SRCREV = "52919b145d04953a91cf846f3db3d8cee8d989ac"
|
|
|
|
DEPENDS = "libtinyxml2 libarchive"
|
|
inherit cmake pkgconfig
|
|
|
|
PACKAGECONFIG ?= ""
|
|
PACKAGECONFIG[libkcapi] = "-DUSE_KERNEL_CRYPTO_API=ON, -DUSE_KERNEL_CRYPTO_API=OFF, libkcapi"
|
|
|
|
FILES:${PN} = "${bindir}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|