summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-devtools
diff options
context:
space:
mode:
authorJason M. Bills <jason.m.bills@linux.intel.com>2019-10-23 00:01:54 +0300
committerJason M. Bills <jason.m.bills@linux.intel.com>2019-10-23 00:48:48 +0300
commit456380bb272d3a301c887eee513a3937cc1f48e1 (patch)
tree124399167d539582befbe35ad28377eaea6cc8bc /meta-openbmc-mods/meta-common/recipes-devtools
parent9722c6ee87766a45a337c094d1293de81cdcb106 (diff)
downloadopenbmc-456380bb272d3a301c887eee513a3937cc1f48e1.tar.xz
Update to internal 10-22-19
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Diffstat (limited to 'meta-openbmc-mods/meta-common/recipes-devtools')
-rw-r--r--meta-openbmc-mods/meta-common/recipes-devtools/dtoverlay/dtoverlay.bb31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta-openbmc-mods/meta-common/recipes-devtools/dtoverlay/dtoverlay.bb b/meta-openbmc-mods/meta-common/recipes-devtools/dtoverlay/dtoverlay.bb
deleted file mode 100644
index 66107d81b..000000000
--- a/meta-openbmc-mods/meta-common/recipes-devtools/dtoverlay/dtoverlay.bb
+++ /dev/null
@@ -1,31 +0,0 @@
-SUMMARY = "dtoverlay"
-DESCRIPTION = "device tree overlay application"
-
-SRC_URI = "git://github.com/raspberrypi/userland.git"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENCE;md5=0448d6488ef8cc380632b1569ee6d196"
-
-SRCREV = "11389772c79685442e0ab8aa9be8ad0e32703f68"
-requires = "chrpath-native"
-
-S = "${WORKDIR}/git"
-
-PV = "1"
-
-inherit cmake
-
-FILES_${PN} += "${libdir} ${libdir}libdtovl.so.${PV}"
-
-do_compile_append(){
- chrpath -d ${S}/build/bin/dtoverlay
-}
-
-do_install() {
- install -d ${D}${libdir}
- install -m 0644 ${S}/build/lib/libdtovl.so ${D}${libdir}/libdtovl.so.${PV}
- install -d ${D}${bindir}
- install -m 0755 ${S}/build/bin/dtoverlay ${D}${bindir}/dtoverlay
-
- ln -sf libdtovl.so.${PV} ${D}{libdir}libdtovl.so
-}
-