You've already forked meta-qcom-extras
mirror of
https://github.com/linux-msm/meta-qcom-extras.git
synced 2026-02-25 13:14:43 -08:00
debugcc: package Bjorn's debugcc tool
The debugcc tool can be useful on the target platforms. Add a recipe to build corresponding package. Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
This commit is contained in:
26
recipes-devtools/debugcc/debugcc_git.bb
Normal file
26
recipes-devtools/debugcc/debugcc_git.bb
Normal file
@@ -0,0 +1,26 @@
|
||||
SUMMARY = "A tool to debug Qualcomm clock controllers."
|
||||
HOMEPAGE = "https://github.com/andersson/debugcc/"
|
||||
SECTION = "devel"
|
||||
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://debugcc.c;beginline=5;endline=29;md5=5598b6b886a3af944e4d19bb7d947095"
|
||||
|
||||
SRC_URI = "\
|
||||
git://github.com/andersson/debugcc.git;branch=master;protocol=https \
|
||||
"
|
||||
|
||||
SRCREV = "9e99460893852fab26ab09ef25ed299f53fb1390"
|
||||
|
||||
PV = "0.0+git${SRCPV}"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
EXTRA_OEMAKE = "CC='${CC}' CPPFLAGS='${CPPFLAGS}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 ${B}/debugcc ${D}${bindir}
|
||||
for f in ${B}/*-debugcc ; do
|
||||
ln -r -s -T ${D}${bindir}/debugcc ${D}${bindir}/`basename $f`
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user