From: Michael Tremer Date: Mon, 29 Oct 2018 19:06:33 +0000 (+0000) Subject: boot: Download boot images from boot.ipfire.org X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08ab0bfc77378aec940dc5711819bea8f6ed5beb;p=ipfire.org.git boot: Download boot images from boot.ipfire.org Signed-off-by: Michael Tremer --- diff --git a/src/backend/releases.py b/src/backend/releases.py index aae85ad6..491f9cf8 100644 --- a/src/backend/releases.py +++ b/src/backend/releases.py @@ -398,18 +398,18 @@ class Release(Object): assert self.supports_platform(platform) if self.sname >= "ipfire-2.19-core100": - return "https://downloads.ipfire.org/%s/images/%s/vmlinuz" % (self.path, arch) + return "https://boot.ipfire.org/%s/images/%s/vmlinuz" % (self.path, arch) - return "https://downloads.ipfire.org/%s/images/vmlinuz" % self.path + return "https://boot.ipfire.org/%s/images/vmlinuz" % self.path def netboot_initrd_url(self, arch, platform): assert self.supports_arch(arch) assert self.supports_platform(platform) if self.sname >= "ipfire-2.19-core100": - return "https://downloads.ipfire.org/%s/images/%s/instroot" % (self.path, arch) + return "https://boot.ipfire.org/%s/images/%s/instroot" % (self.path, arch) - return "https://downloads.ipfire.org/%s/images/instroot" % self.path + return "https://boot.ipfire.org/%s/images/instroot" % self.path def netboot_args(self, arch, platform): return ""