Add recipe for iicmaster tool
debug tool for fsp-based i2c driver
Change-Id: I73ae4d5ae6ded219d55ffd7ae30f2b2a24e296a1
Signed-off-by: Edward A. James <eajames@us.ibm.com>
diff --git a/common/recipes-bsp/iicmaster/iicmaster.bb b/common/recipes-bsp/iicmaster/iicmaster.bb
new file mode 100644
index 0000000..00e0feb
--- /dev/null
+++ b/common/recipes-bsp/iicmaster/iicmaster.bb
@@ -0,0 +1,16 @@
+SUMMARY = "I2C debug tool"
+DESCRIPTION = "iicmaster provides a debug interface for remote, FSI-based I2C engines"
+LICENSE = "GPLv3"
+LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=84dcc94da3adb52b53ae4fa38fe49e5d"
+
+SRC_URI += "git://github.com/eddiejames/iicmaster.git"
+
+SRCREV = "b71dbf99af495a631dc5f3564296903667bc516c"
+PV = "git${SRCREV}"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 iicmaster ${D}${bindir}
+}