Skip to content

Commit

Permalink
Update EFI files to use dl.fedoraproject.org
Browse files Browse the repository at this point in the history
Update the UEFI URLs to pull from the public information. This is better than
grabbing from the koji interface as it's where the downloads on iot.fp.o
originate from as well.

Signed-off-by: Peter Robinson <[email protected]>
  • Loading branch information
nullr0ute committed Apr 30, 2020
1 parent be06919 commit 110a669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zezere/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ def run_django_management():


EFI_FILE_URL_BASE = (
"https://kojipkgs.fedoraproject.org/compose/iot/latest-Fedora-IoT-32/compose/IoT"
"https://dl.fedoraproject.org/pub/alt/iot/32/IoT/"
)


EFI_FILES = [
{
"url": EFI_FILE_URL_BASE + "/x86_64/os/isolinux/initrd.img",
"url": EFI_FILE_URL_BASE + "/x86_64/os/images/pxeboot/initrd.img",
"destination": "netboot/x86_64/initrd",
},
{
"url": EFI_FILE_URL_BASE + "/x86_64/os/isolinux/vmlinuz",
"url": EFI_FILE_URL_BASE + "/x86_64/os/images/pxeboot/vmlinuz",
"destination": "netboot/x86_64/vmlinuz",
},
{
Expand Down

0 comments on commit 110a669

Please sign in to comment.