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 +}