aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2007-03-10 14:10:06 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2007-03-10 14:10:06 +0000
commit1b661974e3f8f844f6ec4cdb7bb42cef9595b626 (patch)
tree664de5364fc8c9b9da9460b3a2c9f9b90bbb0400
parent4e1b3553413ad9c600123f6e3acd1468cf4760cb (diff)
downloadopenembedded-1b661974e3f8f844f6ec4cdb7bb42cef9595b626.tar.gz
own-mirrors.bbclass: added class which can be used to set PREMIRRORS from config
- SOURCE_MIRROR_URL is new variable which point to source mirror which will be used before fetching from original SRC_URI location.
-rw-r--r--classes/own-mirrors.bbclass4
-rw-r--r--conf/documentation.conf1
2 files changed, 5 insertions, 0 deletions
diff --git a/classes/own-mirrors.bbclass b/classes/own-mirrors.bbclass
new file mode 100644
index 0000000000..32763ed24f
--- /dev/null
+++ b/classes/own-mirrors.bbclass
@@ -0,0 +1,4 @@
+PREMIRRORS() {
+http://.*/.* ${SOURCE_MIRROR_URL}
+ftp://.*/.* ${SOURCE_MIRROR_URL}
+}
diff --git a/conf/documentation.conf b/conf/documentation.conf
index 84533e69a1..4782a053ba 100644
--- a/conf/documentation.conf
+++ b/conf/documentation.conf
@@ -105,6 +105,7 @@ COMPATIBLE_HOST[doc] = "A regular expression which matches the HOST_SYS names su
COMPATIBLE_MACHINE[doc] = "A regular expression which matches the MACHINES support by the package/file. Failure to match will cause the file to be skipped by the parser."
SOURCE_MIRROR_FETCH[doc] = "Switch marking build as source fetcher. Used to skip COMPATIBLE_* checking."
+SOURCE_MIRROR_URL[doc] = "URL to source mirror which will be used before fetching from original SRC_URI."
BBINCLUDELOGS[doc] = "Boolean switch to get log printed on failure."
BBINCLUDELOGS_LINES[doc] = "Amount of log lines printed on failure."