diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-07-04 16:54:15 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-17 10:23:16 +0100 |
commit | 5a5f67e5486837b4d7e5a89cc27a5c8f8c8598ef (patch) | |
tree | 5bd39d7abfd4dcefaa48228c996cd2d6592bd4d1 /meta/classes/mirrors.bbclass | |
parent | fbf22dfe1a0dca3fc7ac56e4fd274c0145efbc70 (diff) | |
download | openembedded-core-5a5f67e5486837b4d7e5a89cc27a5c8f8c8598ef.tar.gz openembedded-core-5a5f67e5486837b4d7e5a89cc27a5c8f8c8598ef.tar.bz2 openembedded-core-5a5f67e5486837b4d7e5a89cc27a5c8f8c8598ef.zip |
mirrors: Add debian archive snapshot mirrors to search list
I ran across this problem when apt 0.7.14 was not fetchable
from regular debian mirrors and existing snapshot mirror
did not have it either since we did not use proper syntax
so it was not hitting that.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/mirrors.bbclass')
-rw-r--r-- | meta/classes/mirrors.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/mirrors.bbclass b/meta/classes/mirrors.bbclass index 86ccd7a766..1a9a531762 100644 --- a/meta/classes/mirrors.bbclass +++ b/meta/classes/mirrors.bbclass @@ -1,5 +1,7 @@ MIRRORS += "\ -${DEBIAN_MIRROR}/main http://snapshot.debian.org/archive/debian-archive/20120328T092752Z/debian/pool/ \n \ +${DEBIAN_MIRROR} http://snapshot.debian.org/archive/debian-archive/20120328T092752Z/debian/pool \n \ +${DEBIAN_MIRROR} http://snapshot.debian.org/archive/debian-archive/20110127T084257Z/debian/pool \n \ +${DEBIAN_MIRROR} http://snapshot.debian.org/archive/debian-archive/20090802T004153Z/debian/pool \n \ ${DEBIAN_MIRROR} ftp://ftp.de.debian.org/debian/pool \n \ ${DEBIAN_MIRROR} ftp://ftp.au.debian.org/debian/pool \n \ ${DEBIAN_MIRROR} ftp://ftp.cl.debian.org/debian/pool \n \ |