mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-16 06:30:16 +00:00
d3cdd51235
oe-core has removed DEBUG_PREFIX_MAP from TARGET_LDFLAGS [1], restore it to fix the below error. ERROR: agent-proxy-1.97-r0.wr2600 do_package_qa: QA Issue: File /usr/bin/.debug/agent-proxy in package agent-proxy-dbg contains reference to TMPDIR [buildpaths] ERROR: agent-proxy-1.97-r0.wr2600 do_package_qa: Fatal QA errors were found, failing task. [1] https://git.openembedded.org/openembedded-core/commit/?id=1797741aad02b8bf429fac4b81e30cdda64b5448 Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
766 B
BlitzBasic
26 lines
766 B
BlitzBasic
SUMMARY = "Proxy for UDP/TCP debug connections"
|
|
DESCRIPTION = "The agent-proxy will forward tcp or udp connections as well as allow for script multiplexing of terminal sessions."
|
|
HOMEPAGE = "http://kgdb.wiki.kernel.org/"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
|
|
|
|
SECTION = "devel"
|
|
|
|
EXTRA_OEMAKE = "'CC=${CC}'"
|
|
|
|
SRCREV = "468fe4c31e6c62c9bbb328b06ba71eaf7be0b76a"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kgdb/agent-proxy.git;protocol=git;branch=master \
|
|
file://0001-Makefile-Add-LDFLAGS-variable.patch \
|
|
"
|
|
|
|
TARGET_LDFLAGS:append = " ${DEBUG_PREFIX_MAP}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 agent-proxy ${D}${bindir}
|
|
}
|