Add fsidbg tool. Remove iicmaster.
iicmaster no longer works with the (soon to be) upstreamed FSI-based
I2C driver.
fsidbg is one tool to access FSI engines and perform client driver
operations, including SCOM, SBEFIFO, OCC, and I2C.
Change-Id: I1802977d1b812d42213b38462596ee49838cfd3b
Signed-off-by: Edward A. James <eajames@us.ibm.com>
diff --git a/common/recipes-bsp/fsidbg/fsidbg.bb b/common/recipes-bsp/fsidbg/fsidbg.bb
new file mode 100644
index 0000000..b6fed55
--- /dev/null
+++ b/common/recipes-bsp/fsidbg/fsidbg.bb
@@ -0,0 +1,18 @@
+SUMMARY = "FSI debug tool"
+DESCRIPTION = "fsidbg is a tool to access remote FSI engines and perform client driver operations"
+LICENSE = "GPLv3"
+LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=84dcc94da3adb52b53ae4fa38fe49e5d"
+
+SRC_URI += "git://github.com/eddiejames/fsidbg.git"
+
+SRCREV = "dfe278065c877724242dfae15a4c627fd2e3611c"
+PV = "git${SRCREV}"
+
+S = "${WORKDIR}/git"
+
+do_install() {
+ install -d ${D}${bindir}
+ install -m 0755 fsidbg ${D}${bindir}
+}
+
+TARGET_CC_ARCH += "${LDFLAGS}"
diff --git a/common/recipes-bsp/iicmaster/iicmaster.bb b/common/recipes-bsp/iicmaster/iicmaster.bb
deleted file mode 100644
index 2511e45..0000000
--- a/common/recipes-bsp/iicmaster/iicmaster.bb
+++ /dev/null
@@ -1,19 +0,0 @@
-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}
-}
-
-#TODO: openbmc/openbmc#1362 - Fix GNU_HASH warnings in iic2master
-TARGET_CC_ARCH += "${LDFLAGS}"