mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. I tried backporting Richard's master change but there where many merge conflicts. I went the lazy route and ran the script. This is work based on "b402a3076 recipes: Update SRC_URI branch and protocols" Signed-off-by: Armin Kuster <akuster808@gmail.com>
25 lines
732 B
BlitzBasic
25 lines
732 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 = "GPLv2"
|
|
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 \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_install () {
|
|
install -d ${D}${bindir}
|
|
install -m 0755 agent-proxy ${D}${bindir}
|
|
}
|