From 40e3e9a6469c263fde5dcf298de720a1ef8a82b5 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Thu, 22 Jun 2017 18:12:14 +0200 Subject: [PATCH] Add omapconf recipe from aarago-project.org specifically, recipe was fetched via http://arago-project.org/git/?p=meta-arago.git;a=blob_plain;f=meta-arago-extras/recipes-devtools/omapconf/omapconf_git.bb;hb=master --- recipes-devtools/omapconf/omapconf_git.bb | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 recipes-devtools/omapconf/omapconf_git.bb diff --git a/recipes-devtools/omapconf/omapconf_git.bb b/recipes-devtools/omapconf/omapconf_git.bb new file mode 100644 index 0000000..8ae572c --- /dev/null +++ b/recipes-devtools/omapconf/omapconf_git.bb @@ -0,0 +1,25 @@ +SUMMARY = "Diagnostic tool for TI OMAP processors" +HOMEPAGE = "https://github.com/omapconf/omapconf" + +LICENSE = "GPLv2 | BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=205c83c4e2242a765acb923fc766e914" + +PV = "1.73" +PR = "r1" + +COMPATIBLE_MACHINE = "ti33x|ti43x|omap-a15|omap4" + +BRANCH ?= "master" +SRCREV = "a5dac6c5a65c672bd299b42ca495566a7cc137a4" + +SRC_URI = "git://github.com/omapconf/omapconf.git;protocol=git;branch=${BRANCH}" + +S = "${WORKDIR}/git" + +do_compile () { + oe_runmake CC="${CC}" all +} + +do_install () { + oe_runmake DESTDIR=${D}${bindir} install +}