aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-applications/smbus-test/smbus-test_1.0.bb
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-applications/smbus-test/smbus-test_1.0.bb')
-rw-r--r--common/recipes-applications/smbus-test/smbus-test_1.0.bb22
1 files changed, 0 insertions, 22 deletions
diff --git a/common/recipes-applications/smbus-test/smbus-test_1.0.bb b/common/recipes-applications/smbus-test/smbus-test_1.0.bb
deleted file mode 100644
index 24f9b5b8..00000000
--- a/common/recipes-applications/smbus-test/smbus-test_1.0.bb
+++ /dev/null
@@ -1,22 +0,0 @@
-DESCRIPTION = "Sample application for AMD SMBUS driver"
-SECTION = "applications"
-LICENSE = "BSD | GPLv2"
-DEPENDS = "readline"
-LIC_FILES_CHKSUM = "file://smbus-test.c;endline=29;md5=8e7a9706367d146e5073510a6e176dc2"
-
-SRC_URI = "file://smbus-test.c \
- file://i2c-dev.h \
- "
-
-S = "${WORKDIR}"
-
-TARGET_CC_ARCH += "${LDFLAGS}"
-
-do_compile() {
- ${CC} smbus-test.c -o smbus-test -lreadline
-}
-
-do_install() {
- install -d ${D}${bindir}
- install -m 0755 smbus-test ${D}${bindir}
-}