1*4882a593SmuzhiyunSUMMARY = "Tools to generate block map (AKA bmap) and flash images using bmap" 2*4882a593SmuzhiyunDESCRIPTION = "Bmap-tools - tools to generate block map (AKA bmap) and flash images using \ 3*4882a593Smuzhiyunbmap. Bmaptool is a generic tool for creating the block map (bmap) for a file, \ 4*4882a593Smuzhiyunand copying files using the block map. The idea is that large file containing \ 5*4882a593Smuzhiyununused blocks, like raw system image files, can be copied or flashed a lot \ 6*4882a593Smuzhiyunfaster with bmaptool than with traditional tools like "dd" or "cp"." 7*4882a593SmuzhiyunHOMEPAGE = "https://github.com/01org/bmap-tools" 8*4882a593SmuzhiyunSECTION = "console/utils" 9*4882a593SmuzhiyunLICENSE = "GPL-2.0-only" 10*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" 11*4882a593Smuzhiyun 12*4882a593SmuzhiyunSRC_URI = "git://github.com/intel/${BPN};branch=main;protocol=https" 13*4882a593Smuzhiyun 14*4882a593SmuzhiyunSRCREV = "c0673962a8ec1624b5189dc1d24f33fe4f06785a" 15*4882a593SmuzhiyunS = "${WORKDIR}/git" 16*4882a593SmuzhiyunBASEVER = "3.6" 17*4882a593SmuzhiyunPV = "${BASEVER}+git${SRCPV}" 18*4882a593Smuzhiyun 19*4882a593SmuzhiyunUPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" 20*4882a593Smuzhiyun 21*4882a593Smuzhiyun# Need df from coreutils 22*4882a593SmuzhiyunRDEPENDS:${PN} = "python3-core python3-compression python3-mmap python3-setuptools python3-fcntl python3-six coreutils" 23*4882a593Smuzhiyun 24*4882a593Smuzhiyuninherit setuptools3 25*4882a593Smuzhiyun 26*4882a593SmuzhiyunBBCLASSEXTEND = "native nativesdk" 27