From c478ad2ca46134da68702caa2eeece0b1333ec20 Mon Sep 17 00:00:00 2001 From: Michael Winters Date: Sep 06 2025 20:51:38 +0000 Subject: rm bfo The most recent commit here was >6 years ago, and https://boot.fedoraproject.org currently redirects to https://fedoraproject.org/wiki/Infrastructure/graveyard/ Signed-off-by: Michael Winters --- diff --git a/bfo/README b/bfo/README deleted file mode 100644 index 342b094..0000000 --- a/bfo/README +++ /dev/null @@ -1,39 +0,0 @@ -boot.fedoraproject.org uses ipxe for it's boot images. -http://ipxe.org/ - -From time to time we want to refresh the ipxe images used. -This is to update for new hardware enablement or fix bugs. -Where possible, such updates should be done outside of any -release freezes. - -To rebuild the ipxe images, check out the latest upstream tree from git: - -git clone git://git.ipxe.org/ipxe.git -cd ipxe/src - -make a script0.ipxe there, containing: - ---cut here-- -#!ipxe -set 209:string pxelinux.cfg/default -set 210:string http://dl.fedoraproject.org/pub/alt/bfo/ -dhcp || goto manualnet -chain http://dl.fedoraproject.org/pub/alt/bfo/pxelinux.0 -:manualnet -echo Please provide, IP address, Netmask, Gateway and Router -ifopen net0 -config net0 -chain http://dl.fedoraproject.org/pub/alt/bfo/pxelinux.0 ---cut here-- - -Then, make the images with: - -make EMBED=script0.ipxe - -Copy the resulting binaries to secondary01: - -bin/ipxe.iso -bin/ipxe.dsk -bin/ipxe.lkrn -bin/ipxe.usb - diff --git a/bfo/README.rst b/bfo/README.rst deleted file mode 100644 index c3853b9..0000000 --- a/bfo/README.rst +++ /dev/null @@ -1,130 +0,0 @@ -iPXE Booting Fedora aka BFO -=========================== -boot.fedoraproject.org (BFO) is a way to boot hosts in order to run installers -or other types of media via the network. It works similarly to a pxeboot environment. - -Core Components ---------------- -- iPXE (http://ipxe.org) -- Fedora pxe images (vmlinuz, initrd) -- Embedded iPXE boot script in the BFO images -- Network loaded boot menus and options -- Public install trees for Fedora - -Updating iPXE Images --------------------- -To update the boot images follow this manual process. - -Ensure the following dependencies are installed: - -:: - - dnf groupinstall 'Development Tools' - dnf install syslinux-nonlinux xz-devel - -Clone the repos, patch for https and build: - -:: - - git clone ssh://git@pagure.io/fedora-infrastructure.git - cd fedora-infrastructure/bfo - git clone git://git.ipxe.org/ipxe.git - patch -p0 < ipxe_enable_https.patch - cd ipxe/src - make EMBED=../../script0.ipxe - -Update the alt images from the following build artifacts: - -:: - - bin/ipxe.iso - bin/ipxe.dsk - bin/ipxe.lkrn - bin/ipxe.usb - -Making Menu Changes --------------------- -Periodically we need to update the menu items. To update menu items follow this manual process. - -Clone the repo: - -:: - - git clone ssh://git@pagure.io/fedora-infrastructure.git - cd fedora-infrastructure/bfo/pxelinux.cfg - -Make the needed changes to the menu configurations in this directory. -The menus are loaded in the following order (check default for the latest): - -:: - - default - - fedora_install.conf - - fedora_rescue.conf - - fedora_rawhide.conf - - fedora_prerelease.conf - - fedora_eol.conf - - utilities.conf - - bfo.conf - -Commit and push your changes: - -:: - - git commit -a - git push origin - -XXX: Need info on how to publish the menu changes to alt. - -Testing Changes ---------------- -To be able to test changes before publishing them, you can use Fedora People hosting and KVM. - -Clone the repos, patch for https, configure for your Fedora People and build: - -:: - - git clone ssh://git@pagure.io/fedora-infrastructure.git - cd fedora-infrastructure/bfo - git clone git://git.ipxe.org/ipxe.git - patch -p0 < ipxe_enable_https.patch - cd ipxe/src - cat << EOF > script0.ipxe - #!ipxe - set 209:string pxelinux.cfg/default - set 210:string https://fasusername.fedorapeople.org/bfo/ - dhcp || goto manualnet - chain https://fasusername.fedorapeople.org/bfo/pxelinux.0 - :manualnet - echo Please provide, IP address, Netmask, Gateway and Router - ifopen net0 - config net0 - chain https://fasusername.fedorapeople.org/bfo/pxelinux.0 - EOF - make EMBED=script0.ipxe - -Prepare your BFO dist: - -:: - - mkdir bfo - wget -P bfo https://alt.fedoraproject.org/pub/alt/bfo/pxelinux.0 \ - https://alt.fedoraproject.org/pub/alt/bfo/vesainfo.c32 \ - https://alt.fedoraproject.org/pub/alt/bfo/vesamenu.c32 \ - https://alt.fedoraproject.org/pub/alt/bfo/bfo.png \ - https://alt.fedoraproject.org/pub/alt/bfo/hdt.c32 - cp -r ../../pxelinux.cfg ../../fedora.conf bfo - -Copy your BFO dist to Fedora People: - -:: - - scp -r bfo fasusername@fedorapeople.org:public_html/ - -Boot the ipxe.iso: - -:: - - qemu-kvm -m 2048 bin/ipxe.iso - -Interact with the menu items as needed for testing your changes. diff --git a/bfo/bfo.png b/bfo/bfo.png deleted file mode 100644 index 7782a31..0000000 Binary files a/bfo/bfo.png and /dev/null differ diff --git a/bfo/dhcp.gpxe b/bfo/dhcp.gpxe deleted file mode 100644 index 5e4b935..0000000 --- a/bfo/dhcp.gpxe +++ /dev/null @@ -1,17 +0,0 @@ -#!gpxe -echo Attempting to start boot.fedoraproject.org -echo Setting up networking... -echo -imgload static.gpxe -imgstat -echo Opening first network interface ... -ifopen net0 -echo If you don't have DHCP, then hit Control+C to cancel -dhcp net0 -set 209:string pxelinux.cfg/default -set 210:string http://dl.fedoraproject.org/pub/alt/bfo/ -echo Here we go! -chain http://dl.fedoraproject.org/pub/alt/bfo/pxelinux.0 -dhcp net0 -kernel http://dl.fedoraproject.org/pub/alt/bfo/fedora.gpxe -boot fedora.gpxe diff --git a/bfo/fedora.conf b/bfo/fedora.conf deleted file mode 100644 index 63284e0..0000000 --- a/bfo/fedora.conf +++ /dev/null @@ -1,2 +0,0 @@ -MENU BACKGROUND bfo.png - diff --git a/bfo/ipxe_enable_https.patch b/bfo/ipxe_enable_https.patch deleted file mode 100644 index cd25037..0000000 --- a/bfo/ipxe_enable_https.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up ipxe/src/config/general.h.orig ipxe/src/config/general.h ---- ipxe/src/config/general.h.orig 2016-01-17 20:12:33.400371659 -0700 -+++ ipxe/src/config/general.h 2016-01-17 20:12:40.262362583 -0700 -@@ -53,7 +53,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); - - #define DOWNLOAD_PROTO_TFTP /* Trivial File Transfer Protocol */ - #define DOWNLOAD_PROTO_HTTP /* Hypertext Transfer Protocol */ --#undef DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */ -+#define DOWNLOAD_PROTO_HTTPS /* Secure Hypertext Transfer Protocol */ - #undef DOWNLOAD_PROTO_FTP /* File Transfer Protocol */ - #undef DOWNLOAD_PROTO_SLAM /* Scalable Local Area Multicast */ - #undef DOWNLOAD_PROTO_NFS /* Network File System Protocol */ diff --git a/bfo/pxelinux.cfg/bfo.conf b/bfo/pxelinux.cfg/bfo.conf deleted file mode 100644 index f7a4fc2..0000000 --- a/bfo/pxelinux.cfg/bfo.conf +++ /dev/null @@ -1,25 +0,0 @@ -PROMPT 0 -MENU TITLE About BFO -MENU LABEL ^About BFO - -TEXT HELP - Information about this system and BKO -ENDTEXT - - -label uplvl - MENU LABEL ^Back - TEXT HELP -boot.fedoraproject.org is based on the work done by the BKO -(http://boot.kernel.org/) people. It is our hope that this network based -install method will replace the large ISO images that are still quite -popular. While still useful, it's likely that as Internet speeds get faster -and faster that network based booting over remote links will become more -feasible. boot.fedoraproject.org uses images from the ipxe project. -See: http://ipxe.org/ for more information. - ENDTEXT - MENU EXIT - -label spacer - MENU LABEL - diff --git a/bfo/pxelinux.cfg/default b/bfo/pxelinux.cfg/default deleted file mode 100644 index 1692933..0000000 --- a/bfo/pxelinux.cfg/default +++ /dev/null @@ -1,21 +0,0 @@ -DEFAULT vesamenu.c32 -MENU INCLUDE fedora.conf -PROMPT 0 -MENU TITLE boot.fedoraproject.org (version 2018-05-01) - -LABEL bootlocal - MENU DEFAULT - MENU LABEL Local ^Boot - TEXT HELP - This will exit from the network boot menu and attempt - to boot from local media (hard disk, DVD, etc) - ENDTEXT - localboot 0x80 - -menu include pxelinux.cfg/fedora_install.conf Install -menu include pxelinux.cfg/fedora_rescue.conf Rescue -menu include pxelinux.cfg/fedora_rawhide.conf Rawhide -menu include pxelinux.cfg/fedora_prerelease.conf Prerelease -menu include pxelinux.cfg/fedora_eol.conf EndOfLife -menu include pxelinux.cfg/utilities.conf Utilities -menu include pxelinux.cfg/bfo.conf About BFO diff --git a/bfo/pxelinux.cfg/fedora_eol.conf b/bfo/pxelinux.cfg/fedora_eol.conf deleted file mode 100644 index ebb4725..0000000 --- a/bfo/pxelinux.cfg/fedora_eol.conf +++ /dev/null @@ -1,231 +0,0 @@ -PROMPT 0 -MENU TITLE End of Life Fedora releases install (unsupported) -MENU LABEL ^End of Life Fedora releases install (unsupported) - -TEXT HELP - Install end of life and no longer supported versions of Fedora from the archives -ENDTEXT - -label Fedora-24-x86_64 - MENU LABEL Fedora-24-x86_64 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 24 x86_64 Server installer. - ENDTEXT - -label Fedora-24-i386 - MENU LABEL Fedora-24-i386 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 24 i386 Server installer. - ENDTEXT - -label Fedora-23-x86_64 - MENU LABEL Fedora-23-x86_64 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 23 x86_64 Server installer. - ENDTEXT - -label Fedora-23-i386 - MENU LABEL Fedora-23-i386 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 23 i386 Server installer. - ENDTEXT - -label Fedora-22-x86_64 - MENU LABEL Fedora-22-x86_64 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 22 x86_64 Server installer. - ENDTEXT - -label Fedora-22-i386 - MENU LABEL Fedora-22-i386 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 22 i386 Server installer. - ENDTEXT - -label Fedora-21-x86_64 - MENU LABEL Fedora-21-x86_64 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 21 x86_64 Server installer. - ENDTEXT - -label Fedora-21-i386 - MENU LABEL Fedora-21-i386 - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/archive/fedora/linux/releases/21/Server/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 21 i386 Server installer. - ENDTEXT - -label Fedora-20-x86_64 - MENU LABEL Fedora-20-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 20 x86_64 installer. - ENDTEXT - -label Fedora-20-i386 - MENU LABEL Fedora-20-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 20 i386 installer. - ENDTEXT - -label Fedora-19-x86_64 - MENU LABEL Fedora-19-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 19 x86_64 installer. - ENDTEXT - -label Fedora-19-i386 - MENU LABEL Fedora-19-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/19/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 19 i386 installer. - ENDTEXT - -label Fedora-18-x86_64 - MENU LABEL Fedora-18-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 18 x86_64 installer. - ENDTEXT - -label Fedora-18-i386 - MENU LABEL Fedora-18-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/18/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 18 i386 installer. - ENDTEXT - -label Fedora-17-x86_64 - MENU LABEL Fedora-17-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 17 x86_64 installer. - ENDTEXT - -label Fedora-17-i386 - MENU LABEL Fedora-17-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/17/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 17 i386 installer. - ENDTEXT - -label Fedora-16-x86_64 - MENU LABEL Fedora-16-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 16 x86_64 installer. - ENDTEXT - -label Fedora-16-i386 - MENU LABEL Fedora-16-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/16/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 16 i386 installer. - ENDTEXT - -label Fedora-15-x86_64 - MENU LABEL Fedora-15-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 15 x86_64 installer. - ENDTEXT - -label Fedora-15-i386 - MENU LABEL Fedora-15-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/i386/os/images/pxeboot/initrd.img - APPEND repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/15/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 15 i386 installer. - ENDTEXT - -label Fedora-14-x86_64 - MENU LABEL Fedora-14-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/x86_64/os/images/pxeboot/initrd.img - append stage2=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/x86_64/os/images/install.img repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 14 x86_64 installer. - ENDTEXT - -label Fedora-14-i386 - MENU LABEL Fedora-14-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/i386/os/images/pxeboot/initrd.img - append stage2=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/i386/os/images/install.img repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/14/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 14 i386 installer. - ENDTEXT - -label Fedora-13-x86_64 - MENU LABEL Fedora-13-x86_64 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/x86_64/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/x86_64/os/images/pxeboot/initrd.img - append stage2=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/x86_64/os/images/install.img repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/x86_64/os/ - TEXT HELP - Selecting this will boot the Fedora 13 x86_64 installer. - ENDTEXT - -label Fedora-13-i386 - MENU LABEL Fedora-13-i386 - kernel http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/i386/os/images/pxeboot/vmlinuz - initrd http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/i386/os/images/pxeboot/initrd.img - append stage2=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/i386/os/images/install.img repo=http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/13/Fedora/i386/os/ - TEXT HELP - Selecting this will boot the Fedora 13 i386 installer. - ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL - diff --git a/bfo/pxelinux.cfg/fedora_install.conf b/bfo/pxelinux.cfg/fedora_install.conf deleted file mode 100644 index afe8349..0000000 --- a/bfo/pxelinux.cfg/fedora_install.conf +++ /dev/null @@ -1,393 +0,0 @@ -PROMPT 0 -MENU TITLE Install currently supported Fedora releases -MENU LABEL ^Install currently supported Fedora releases - -TEXT HELP - Install currently supported Fedora releases -ENDTEXT - -label Fedora-29-x86_64-Everything - MENU LABEL Fedora-29-x86_64-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 x86_64 Everything installer. - ENDTEXT - -label Fedora-29-armhfp-Everything - MENU LABEL Fedora-29-armhfp-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Everything/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 armhfp Everything installer. - ENDTEXT - -label Fedora-29-i386-Everything - MENU LABEL Fedora-29-i386-Everything - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 i386 Everything installer. - ENDTEXT - -label Fedora-29-x86_64-Workstation - MENU LABEL Fedora-29-x86_64-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 x86_64 Workstation installer. - ENDTEXT - -label Fedora-29-armhfp-Workstation - MENU LABEL Fedora-29-armhfp-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Workstation/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 armhfp Workstation installer. - ENDTEXT - -label Fedora-29-i386-Workstation - MENU LABEL Fedora-29-i386-Workstation - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Workstation/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Workstation/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Workstation/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 i386 Workstation installer. - ENDTEXT - -label Fedora-29-x86_64-Server - MENU LABEL Fedora-29-x86_64-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 x86_64 Server installer. - ENDTEXT - -label Fedora-29-armhfp-Server - MENU LABEL Fedora-29-armhfp-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/29/Server/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 armhfp Server installer. - ENDTEXT - -label Fedora-29-i386-Server - MENU LABEL Fedora-29-i386-Server - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/29/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 29 i386 Server installer. - ENDTEXT - -label Fedora-28-x86_64-Everything - MENU LABEL Fedora-28-x86_64-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 x86_64 Everything installer. - ENDTEXT - -label Fedora-28-armhfp-Everything - MENU LABEL Fedora-28-armhfp-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Everything/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 armhfp Everything installer. - ENDTEXT - -label Fedora-28-i386-Everything - MENU LABEL Fedora-28-i386-Everything - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 i386 Everything installer. - ENDTEXT - -label Fedora-28-x86_64-Workstation - MENU LABEL Fedora-28-x86_64-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 x86_64 Workstation installer. - ENDTEXT - -label Fedora-28-armhfp-Workstation - MENU LABEL Fedora-28-armhfp-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Workstation/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 armhfp Workstation installer. - ENDTEXT - -label Fedora-28-i386-Workstation - MENU LABEL Fedora-28-i386-Workstation - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Workstation/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Workstation/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Workstation/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 i386 Workstation installer. - ENDTEXT - -label Fedora-28-x86_64-Server - MENU LABEL Fedora-28-x86_64-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 x86_64 Server installer. - ENDTEXT - -label Fedora-28-armhfp-Server - MENU LABEL Fedora-28-armhfp-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 armhfp Server installer. - ENDTEXT - -label Fedora-28-i386-Server - MENU LABEL Fedora-28-i386-Server - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 i386 Server installer. - ENDTEXT - -label Fedora-27-x86_64-Everything - MENU LABEL Fedora-27-x86_64-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 x86_64 Everything installer. - ENDTEXT - -label Fedora-27-armhfp-Everything - MENU LABEL Fedora-27-armhfp-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Everything/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 armhfp Everything installer. - ENDTEXT - -label Fedora-27-i386-Everything - MENU LABEL Fedora-27-i386-Everything - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 i386 Everything installer. - ENDTEXT - -label Fedora-27-x86_64-Workstation - MENU LABEL Fedora-27-x86_64-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 x86_64 Workstation installer. - ENDTEXT - -label Fedora-27-armhfp-Workstation - MENU LABEL Fedora-27-armhfp-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Workstation/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 armhfp Workstation installer. - ENDTEXT - -label Fedora-27-i386-Workstation - MENU LABEL Fedora-27-i386-Workstation - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Workstation/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Workstation/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Workstation/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 i386 Workstation installer. - ENDTEXT - -label Fedora-27-x86_64-Server - MENU LABEL Fedora-27-x86_64-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 x86_64 Server installer. - ENDTEXT - -label Fedora-27-armhfp-Server - MENU LABEL Fedora-27-armhfp-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 armhfp Server installer. - ENDTEXT - -label Fedora-27-i386-Server - MENU LABEL Fedora-27-i386-Server - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 i386 Server installer. - ENDTEXT - -label Fedora-26-x86_64-Everything - MENU LABEL Fedora-26-x86_64-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 x86_64 Everything installer. - ENDTEXT - -label Fedora-26-armhfp-Everything - MENU LABEL Fedora-26-armhfp-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Everything/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 armhfp Everything installer. - ENDTEXT - -label Fedora-26-i386-Everything - MENU LABEL Fedora-26-i386-Everything - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 i386 Everything installer. - ENDTEXT - -label Fedora-26-x86_64-Workstation - MENU LABEL Fedora-26-x86_64-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 x86_64 Workstation installer. - ENDTEXT - -label Fedora-26-armhfp-Workstation - MENU LABEL Fedora-26-armhfp-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Workstation/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 armhfp Workstation installer. - ENDTEXT - -label Fedora-26-i386-Workstation - MENU LABEL Fedora-26-i386-Workstation - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Workstation/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Workstation/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Workstation/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 i386 Workstation installer. - ENDTEXT - -label Fedora-26-x86_64-Server - MENU LABEL Fedora-26-x86_64-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 x86_64 Server installer. - ENDTEXT - -label Fedora-26-armhfp-Server - MENU LABEL Fedora-26-armhfp-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 armhfp Server installer. - ENDTEXT - -label Fedora-26-i386-Server - MENU LABEL Fedora-26-i386-Server - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 i386 Server installer. - ENDTEXT - -label Fedora-25-x86_64-Everything - MENU LABEL Fedora-25-x86_64-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 x86_64 Everything installer. - ENDTEXT - -label Fedora-25-i386-Everything - MENU LABEL Fedora-25-i386-Everything - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 i386 Everything installer. - ENDTEXT - -label Fedora-25-x86_64-Workstation - MENU LABEL Fedora-25-x86_64-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 x86_64 Workstation installer. - ENDTEXT - -label Fedora-25-i386-Workstation - MENU LABEL Fedora-25-i386-Workstation - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Workstation/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 i386 Workstation installer. - ENDTEXT - -label Fedora-25-x86_64-Server - MENU LABEL Fedora-25-x86_64-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 x86_64 Server installer. - ENDTEXT - -label Fedora-25-i386-Server - MENU LABEL Fedora-25-i386-Server - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 i386 Server installer. - ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL - diff --git a/bfo/pxelinux.cfg/fedora_prerelease.conf b/bfo/pxelinux.cfg/fedora_prerelease.conf deleted file mode 100644 index 07fd65a..0000000 --- a/bfo/pxelinux.cfg/fedora_prerelease.conf +++ /dev/null @@ -1,14 +0,0 @@ -PROMPT 0 -MENU TITLE Install Pre-release versions of Fedora -MENU LABEL Install ^Pre-release versions of Fedora - -TEXT HELP - Install latest Pre-release versions of Fedora (Alpha, Beta). (when available) -ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL diff --git a/bfo/pxelinux.cfg/fedora_rawhide.conf b/bfo/pxelinux.cfg/fedora_rawhide.conf deleted file mode 100644 index 1af9010..0000000 --- a/bfo/pxelinux.cfg/fedora_rawhide.conf +++ /dev/null @@ -1,74 +0,0 @@ -PROMPT 0 -MENU TITLE Fedora Rawhide (development) -MENU LABEL Fedora Rawhide (^development) - -TEXT HELP - Fedora Rawhide (development) -ENDTEXT - -label Fedora-rawhide-x86_64 - MENU LABEL Fedora-rawhide-x86_64 - kernel http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide x86_64 Everything installer. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label Fedora-rawhide-armhfp - MENU LABEL Fedora-rawhide-armhfp - kernel http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide armhfp Everything installer. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label Fedora-rawhide-i386 - MENU LABEL Fedora-rawhide-i386 - kernel http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/ rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide i386 Everything installer. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label Fedora-rawhide-x86_64-rescue - MENU LABEL Fedora-rawhide-x86_64-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/ rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide x86_64 Everything installer in rescue mode. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label Fedora-rawhide-armhfp-rescue - MENU LABEL Fedora-rawhide-armhfp-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/armhfp/os/ rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide armhfp Everything installer in rescue mode. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label Fedora-rawhide-i386-rescue - MENU LABEL Fedora-rawhide-i386-rescue - kernel http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/images/pxeboot/initrd.img - APPEND repo=http://download.fedoraproject.org/pub/fedora-secondary/development/rawhide/Everything/i386/os/ rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora Rawhide i386 Everything installer in rescue mode. - See: http://fedoraproject.org/wiki/Releases/Rawhide for more info - ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL diff --git a/bfo/pxelinux.cfg/fedora_rescue.conf b/bfo/pxelinux.cfg/fedora_rescue.conf deleted file mode 100644 index 59fbf75..0000000 --- a/bfo/pxelinux.cfg/fedora_rescue.conf +++ /dev/null @@ -1,169 +0,0 @@ -MENU INCLUDE bko-gui.conf -PROMPT 0 -MENU TITLE Rescue -MENU LABEL ^Rescue - -TEXT HELP - Rescue currently supported versions of Fedora -ENDTEXT - -label Fedora-28-x86_64-rescue - MENU LABEL Fedora-28-x86_64-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-28-armhfp-rescue - MENU LABEL Fedora-28-armhfp-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/28/Server/armhfp/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 armhfp installer in rescue mode - ENDTEXT - -label Fedora-28-i386-rescue - MENU LABEL Fedora-28-i386-rescue - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/28/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 28 i386 installer in rescue mode - ENDTEXT - -label Fedora-27-x86_64-rescue - MENU LABEL Fedora-27-x86_64-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-27-armhfp-rescue - MENU LABEL Fedora-27-armhfp-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/27/Server/armhfp/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 armhfp installer in rescue mode - ENDTEXT - -label Fedora-27-i386-rescue - MENU LABEL Fedora-27-i386-rescue - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/27/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 27 i386 installer in rescue mode - ENDTEXT - -label Fedora-26-x86_64-rescue - MENU LABEL Fedora-26-x86_64-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-26-armhfp-rescue - MENU LABEL Fedora-26-armhfp-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/armhfp/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/26/Server/armhfp/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 armhfp installer in rescue mode - ENDTEXT - -label Fedora-26-i386-rescue - MENU LABEL Fedora-26-i386-rescue - kernel http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora-secondary/releases/26/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 26 i386 installer in rescue mode - ENDTEXT - -label Fedora-25-x86_64-rescue - MENU LABEL Fedora-25-x86_64-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-25-i386-rescue - MENU LABEL Fedora-25-i386-rescue - kernel http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/fedora/linux/releases/25/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 25 i386 installer in rescue mode - ENDTEXT - -label Fedora-24-x86_64-rescue - MENU LABEL Fedora-24-x86_64-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 24 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-24-i386-rescue - MENU LABEL Fedora-24-i386-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/24/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 24 i386 installer in rescue mode - ENDTEXT - -label Fedora-23-x86_64-rescue - MENU LABEL Fedora-23-x86_64-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 23 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-23-i386-rescue - MENU LABEL Fedora-23-i386-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/23/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 23 i386 installer in rescue mode - ENDTEXT - -label Fedora-22-x86_64-rescue - MENU LABEL Fedora-22-x86_64-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/x86_64/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/x86_64/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 22 x86_64 installer in rescue mode. - ENDTEXT - -label Fedora-22-i386-rescue - MENU LABEL Fedora-22-i386-rescue - kernel http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/i386/os/images/pxeboot/vmlinuz - initrd http://download.fedoraproject.org/pub/archive/fedora/linux/releases/22/Server/i386/os/images/pxeboot/initrd.img - APPEND rescue rd.timeout=60 - TEXT HELP - Selecting this will boot the Fedora 22 i386 installer in rescue mode - ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL - diff --git a/bfo/pxelinux.cfg/utilities.conf b/bfo/pxelinux.cfg/utilities.conf deleted file mode 100644 index c0ec9f8..0000000 --- a/bfo/pxelinux.cfg/utilities.conf +++ /dev/null @@ -1,35 +0,0 @@ -PROMPT 0 -MENU TITLE Utilities -MENU LABEL ^Utilities - -TEXT HELP - Various pre-boot utilities -ENDTEXT - -label hdt - menu label Hardware Detection Tool (hdt) - kernel hdt.c32 - TEXT HELP - This is a quick and dirty Hardware Detection Tool - written by Erwan Velu with help from Pierre-Alexandre Meyer - and contributions from H. Peter Anvin all of the Syslinux - project. - ENDTEXT - -label memtest86+-4.20 - menu memtest86+-4.20 - kernel http://download.fedoraproject.org/pub/alt/bfo/memtest86+-4.20 - append - - TEXT HELP - Memtest86+ is a thorough stand-alone memory test for x86 and x86-64 - architecture computers. BIOS based memory tests are only a quick - check and often miss many of the failures that are detected by - Memtest86+. - ENDTEXT - -label uplvl - MENU LABEL ^Back - MENU EXIT - -label spacer - MENU LABEL diff --git a/bfo/script0.ipxe b/bfo/script0.ipxe deleted file mode 100644 index 5ee550a..0000000 --- a/bfo/script0.ipxe +++ /dev/null @@ -1,10 +0,0 @@ -#!ipxe -set 209:string pxelinux.cfg/default -set 210:string https://dl.fedoraproject.org/pub/alt/bfo/ -dhcp || goto manualnet -chain https://dl.fedoraproject.org/pub/alt/bfo/pxelinux.0 -:manualnet -echo Please provide, IP address, Netmask, Gateway and Router -ifopen net0 -config net0 -chain https://dl.fedoraproject.org/pub/alt/bfo/pxelinux.0 diff --git a/bfo/static.gpxe b/bfo/static.gpxe deleted file mode 100644 index a8a1e8b..0000000 --- a/bfo/static.gpxe +++ /dev/null @@ -1,11 +0,0 @@ -#!gpxe -echo Please provide, IP address, Netmask, Gateway and Router -ifopen net0 -set net0/ip 10.0.2.15 -set net0/netmask 255.255.255.0 -set net0/gateway 10.0.2.2 -set net0/dns 10.0.2.3 -config net0 -set 209:string pxelinux.cfg/default -set 210:string http://download.fedoraproject.org/pub/alt/bfo/ -chain ${210:string}pxelinux.0