-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmirrors.yaml
42 lines (42 loc) · 1.83 KB
/
mirrors.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# /********************************************************************************
# * Copyright (c) 2022 Contributors to the Eclipse Foundation
# *
# * See the NOTICE file(s) distributed with this work for additional
# * information regarding copyright ownership.
# *
# * This program and the accompanying materials are made available under the
# * terms of the Apache License 2.0 which is available at
# * https://www.apache.org/licenses/LICENSE-2.0
# *
# * SPDX-License-Identifier: Apache-2.0
# ********************************************************************************/
# Every file needs to contain a header, that provides kas with information
# about the context of this file.
header:
# The `version` entry in the header describes for which configuration
# format version this file was created for. It is used by kas to figure
# out if it is compatible with this file. The version is an integer that
# is increased on every format change.
version: 12
# The machine as it is written into the `local.conf` of bitbake.
local_conf_header:
mirror: |
BB_HASHSERVE = "bitbake-hashserv.westeurope.azurecontainer.io:1234"
MIRROR_SERVER = "https://sdvyocto.azureedge.net/downloads/"
SSTATE_MIRRORS = "file://.* https://sdvyocto.azureedge.net/yocto-sstate-cache/sstate-cache/PATH"
BB_FETCH_PREMIRRORONLY = "0"
INHERIT += "own-mirrors"
SOURCE_MIRROR_URL = "${MIRROR_SERVER}"
UNINATIVE_URL = "${MIRROR_SERVER}"
PREMIRRORS ?= "\
bzr://.*/.\* ${MIRROR_SERVER} \
cvs://.*/.\* ${MIRROR_SERVER} \
git://.*/.\* ${MIRROR_SERVER} \
hg://.*/.\* ${MIRROR_SERVER} \
osc://.*/.\* ${MIRROR_SERVER} \
p4://.*/.\* ${MIRROR_SERVER} \
svn://.*/.\* ${MIRROR_SERVER}"
MIRRORS =+ "\
ftp://.*/.\* ${MIRROR_SERVER} \
http://.*/.\* ${MIRROR_SERVER} \
https://.*/.\* ${MIRROR_SERVER}"