mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

If accepted, this patch should merge with the corresponding BitBake patch titled "fetch2: add Google Cloud Platform (GCP) fetcher". (From OE-Core rev: 1e2e596bcdff031d7d7dc1d6f6adbb03d9ec2995) Signed-off-by: Emil Ekmečić <eekmecic@snap.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
PREMIRRORS:prepend = " \
|
|
cvs://.*/.* ${SOURCE_MIRROR_URL} \
|
|
svn://.*/.* ${SOURCE_MIRROR_URL} \
|
|
git://.*/.* ${SOURCE_MIRROR_URL} \
|
|
gitsm://.*/.* ${SOURCE_MIRROR_URL} \
|
|
hg://.*/.* ${SOURCE_MIRROR_URL} \
|
|
bzr://.*/.* ${SOURCE_MIRROR_URL} \
|
|
p4://.*/.* ${SOURCE_MIRROR_URL} \
|
|
osc://.*/.* ${SOURCE_MIRROR_URL} \
|
|
https?://.*/.* ${SOURCE_MIRROR_URL} \
|
|
ftp://.*/.* ${SOURCE_MIRROR_URL} \
|
|
npm://.*/?.* ${SOURCE_MIRROR_URL} \
|
|
s3://.*/.* ${SOURCE_MIRROR_URL} \
|
|
crate://.*/.* ${SOURCE_MIRROR_URL} \
|
|
gs://.*/.* ${SOURCE_MIRROR_URL} \
|
|
"
|