blob: 2aae9a3fe0d8bfbb0b0aa8ceef4c2a8cfb8b4e4f [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001SUMMARY = "Tools to generate block map (AKA bmap) and flash images using bmap"
2DESCRIPTION = "Bmap-tools - tools to generate block map (AKA bmap) and flash images using \
3bmap. Bmaptool is a generic tool for creating the block map (bmap) for a file, \
4and copying files using the block map. The idea is that large file containing \
5unused blocks, like raw system image files, can be copied or flashed a lot \
6faster with bmaptool than with traditional tools like "dd" or "cp"."
7HOMEPAGE = "https://github.com/01org/bmap-tools"
8SECTION = "console/utils"
9LICENSE = "GPLv2"
10LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
11
Brad Bishop316dfdd2018-06-25 12:45:53 -040012SRC_URI = "https://github.com/intel/${BPN}/releases/download/v${PV}/${BP}.tgz"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013
Brad Bishop316dfdd2018-06-25 12:45:53 -040014SRC_URI[md5sum] = "883420183611aa137cbaf68a91ef0d7e"
15SRC_URI[sha256sum] = "0064891270c180c190f41925b0f6fb9cecac3056f1168d2592dbe90e5f226c0a"
16
17UPSTREAM_CHECK_URI = "https://github.com/intel/${BPN}/releases"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018
Brad Bishopd5ae7d92018-06-14 09:52:03 -070019RDEPENDS_${PN} = "python3-core python3-compression python3-mmap python3-setuptools python3-fcntl"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020
21inherit python3native
22inherit setuptools3
23
24BBCLASSEXTEND = "native"