mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
agent-proxy: add new recipe
agent-proxy is a simple, small proxy which is intended for use with kgdb, or gdbserver type connections where you want to share a text console and a debug session. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
committed by
Martin Jansa
parent
d483a70d22
commit
e846a439f3
@@ -0,0 +1,25 @@
|
||||
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 = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
|
||||
|
||||
SECTION = "devel"
|
||||
|
||||
EXTRA_OEMAKE = "'CC=${CC}'"
|
||||
|
||||
SRCREV = "e6c9d3d996bd55e7ab14dbd74deb7841e0c3a4f1"
|
||||
PV = "1.96+git${SRCPV}"
|
||||
|
||||
SRC_URI = "git://git.kernel.org/pub/scm/utils/kernel/kgdb/agent-proxy.git;protocol=git \
|
||||
file://0001-Makefile-Add-LDFLAGS-variable.patch \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_install () {
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 agent-proxy ${D}${bindir}
|
||||
}
|
||||
Reference in New Issue
Block a user