summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2019-08-23 13:51:32 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-28 11:31:21 +0100
commitb259bd31eb741551d4687791ba4e3cb4ceea0508 (patch)
tree99f5ac5a712f4943709233203f10a6dcee3ab173 /meta/conf
parent4265f8f99c14ed3a6cd023f1ef9f84213fc6419e (diff)
downloadpoky-b259bd31eb741551d4687791ba4e3cb4ceea0508.tar.gz
bitbake.conf: drop FETCHCMD, GITDIR, etc fetcher over-rides
This completes cleanup originally proposed in 2012: http://lists.openembedded.org/pipermail/openembedded-core/2012-July/064224.html Current versions of bitbake have "sane" default fetcher commands so it's no longer necessary for bitbake.conf to over-ride them. (From OE-Core rev: 4ff058226cfc3e7d5bf9a873d1de4475f65ef2f2) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf12
1 files changed, 0 insertions, 12 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 1311e6b5fd..a0a7f4911e 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -360,12 +360,6 @@ CACHE = "${TMPDIR}/cache${@['', '/' + str(d.getVar('MACHINE'))][bool(d.getVar('M
360# The persistent cache should be shared by all builds 360# The persistent cache should be shared by all builds
361PERSISTENT_DIR = "${TOPDIR}/cache" 361PERSISTENT_DIR = "${TOPDIR}/cache"
362LOG_DIR = "${TMPDIR}/log" 362LOG_DIR = "${TMPDIR}/log"
363CO_DIR = "${DL_DIR}"
364CVSDIR = "${CO_DIR}/cvs"
365SVNDIR = "${CO_DIR}/svn"
366GITDIR = "${CO_DIR}/git2"
367BZRDIR = "${CO_DIR}/bzr"
368HGDIR = "${CO_DIR}/hg"
369 363
370STAMPS_DIR ?= "${TMPDIR}/stamps" 364STAMPS_DIR ?= "${TMPDIR}/stamps"
371STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}" 365STAMP = "${STAMPS_DIR}/${MULTIMACH_TARGET_SYS}/${PN}/${EXTENDPE}${PV}-${PR}"
@@ -676,12 +670,6 @@ SRC_URI[vardepsexclude] += "\
676# export DEBIAN_MIRROR = "http://ftp.de.debian.org/debian/pool" 670# export DEBIAN_MIRROR = "http://ftp.de.debian.org/debian/pool"
677# into your local.conf 671# into your local.conf
678 672
679FETCHCMD_svn = "/usr/bin/env svn --non-interactive --trust-server-cert"
680FETCHCMD_cvs = "/usr/bin/env cvs"
681FETCHCMD_wget = "/usr/bin/env wget -t 2 -T 30 --passive-ftp --no-check-certificate"
682FETCHCMD_bzr = "/usr/bin/env bzr"
683FETCHCMD_hg = "/usr/bin/env hg"
684
685SRCDATE = "${DATE}" 673SRCDATE = "${DATE}"
686SRCREV ??= "INVALID" 674SRCREV ??= "INVALID"
687AUTOREV = "${@bb.fetch2.get_autorev(d)}" 675AUTOREV = "${@bb.fetch2.get_autorev(d)}"