blob: e5ad5c8e2409daff9307651479913441e119a7f3 (
plain)
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
|
# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de
# License GPLv2
################################################################################
## auto.conf inclusion of mirrors
################################################################################
export DLHOST="http://download.automotivelinux.org/"
if test x"" = x"${GERRIT_BRANCH}"; then
export DISTROBRANCH="master"
else
export DISTROBRANCH="${GERRIT_BRANCH}"
fi
cat << EOF >> conf/auto.conf
PREMIRRORS = "\
git://.*/.* ${DLHOST}/AGL/mirror/ \n \
ftp://.*/.* ${DLHOST}/AGL/mirror/ \n \
http://.*/.* ${DLHOST}/AGL/mirror/ \n \
https://.*/.* ${DLHOST}/AGL/mirror/ \n \
"
EOF
if test x"YES" != x"${DISABLE_SSTATE_MIRROR}" ; then
cat << EOF >> conf/auto.conf
SSTATE_MIRRORS = " \
file://.* ${DLHOST}/sstate-mirror/${DISTROBRANCH}/\${DEFAULTTUNE}/PATH \n \
"
#
#file://.* file:///opt/AGL/sstate-mirror/\${MACHINE}/PATH \n
#
IMAGE_FSTYPES_remove = "ext3"
SSTATE_DIR = "\${TOPDIR}/sstate-cache/\${MACHINE}/"
EOF
fi
|