[PATCH release-tools 1/2] relnotes.py: use kernel mirrors edge network
Michael Halstead <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto |
|---|---|
| Message-ID | <[email protected]> |
mirrors.kernel.org always resolves to a single authorative host which may be quite far from the end user. mirrors.edge.kernel.or resolves to the mirror nearest the user resulting in a far better download experience. Signed-off-by: Michael Halstead <[email protected]> --- relnotes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/relnotes.py b/relnotes.py index 94f853f..951226a 100755 --- a/relnotes.py +++ b/relnotes.py @@ -141,7 +141,7 @@ if __name__ == '__main__': # copied into the release directory. i.e. Just RELEASENOTES, not RELEASENOTES.<release> RELEASE_NOTES = ".".join(["RELEASENOTES", RELEASE]) DL_BASE_URL = "https://downloads.yoctoproject.org/releases/yocto" - MIRROR_BASE_URL = "https://mirrors.kernel.org/yocto/yocto" + MIRROR_BASE_URL = "https://mirrors.edge.kernel.org/yocto/yocto" HOME = os.getcwd() POKY_REPO = os.path.join(HOME, "poky") outpath = os.path.join(HOME, RELEASE_NOTES) -- 2.51.1