diff options
author | Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com> | 2018-10-03 00:10:10 +0200 |
---|---|---|
committer | gunnarx <gunnarx@users.noreply.github.com> | 2018-10-31 16:01:27 +0100 |
commit | ebf6fea99b671b0beb11dbed9ac620f3df9a996c (patch) | |
tree | db1e5f6e0fdaecbfd08b3ef0492d176d9eddfb80 | |
parent | c30e16c566734f52750d2b8b0e9f70e05b30cbe4 (diff) | |
download | meta-ivi-ebf6fea99b671b0beb11dbed9ac620f3df9a996c.tar.gz meta-ivi-ebf6fea99b671b0beb11dbed9ac620f3df9a996c.tar.bz2 meta-ivi-ebf6fea99b671b0beb11dbed9ac620f3df9a996c.zip |
ci-build: remove ftp from PREMIRROR
FTP mirrors are not supported by Yocto anymore.
Signed-off-by: Oleksandr Kravchuk <oleksandr.kravchuk@pelagicore.com>
-rw-r--r-- | meta-ivi/conf/local.conf.sample | 2 | ||||
-rwxr-xr-x | scripts/ci-build.sh | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/meta-ivi/conf/local.conf.sample b/meta-ivi/conf/local.conf.sample index 848e483..8d73501 100644 --- a/meta-ivi/conf/local.conf.sample +++ b/meta-ivi/conf/local.conf.sample @@ -199,7 +199,7 @@ BB_DISKMON_DIRS = "\ # the system to search other mirror locations for these objects # before it builds the data itself. # -# This can be a filesystem directory, or a remote url such as http or ftp. +# This can be a filesystem directory, or a remote url such as http. # These would contain the sstate-cache results from previous builds (possibly # from other machines). This variable works like fetcher MIRRORS/PREMIRRORS and # points to the cache locations to check for the shared objects. diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index a543769..bfd4783 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -457,7 +457,6 @@ if [[ -n "$PREMIRROR" ]]; then append_local_conf PREMIRRORS_prepend " PREMIRRORS_prepend = \"\\ git://.*/.* $PREMIRROR \\n \\ - ftp://.*/.* $PREMIRROR \\n \\ http://.*/.* $PREMIRROR \\n \\ https://.*/.* $PREMIRROR \\n \\ \" @@ -471,7 +470,6 @@ if [[ -n "$MIRROR" ]]; then append_local_conf MIRRORS_append " MIRRORS_append = \"\\ git://.*/.* $MIRROR \\n \\ - ftp://.*/.* $MIRROR \\n \\ http://.*/.* $MIRROR \\n \\ https://.*/.* $MIRROR \\n \\ \" |