blob: 85c4fa95ae8214f7b612af63e62e105ce8112d11 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001SUMMARY = "Simple program to read & write to a pci device from userspace"
2HOMEPAGE = "https://github.com/billfarrow/pcimem"
3BUGTRACKER = "https://github.com/billfarrow/pcimem/issues"
4SECTION = "devel"
Andrew Geissler9aee5002022-03-30 16:27:02 +00005LICENSE = "GPL-2.0-only"
Andrew Geissler82c905d2020-04-13 13:39:40 -05006LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263"
7
Andrew Geisslereff27472021-10-29 15:35:00 -05008COMPATIBLE_HOST = "(x86_64|aarch64|arm|riscv64)"
Andrew Geissler82c905d2020-04-13 13:39:40 -05009
10SRCREV = "09724edb1783a98da2b7ae53c5aaa87493aabc9b"
Andrew Geissler595f6302022-01-24 19:11:47 +000011SRC_URI = "git://github.com/billfarrow/pcimem.git;branch=master;protocol=https"
Andrew Geissler82c905d2020-04-13 13:39:40 -050012
13S = "${WORKDIR}/git"
14
15do_install() {
16 install -D -m 0755 ${B}/pcimem ${D}${bindir}/pcimem
17}