Skip to content

Instantly share code, notes, and snippets.

@GroverChouT
Created April 18, 2018 15:17
Show Gist options
  • Save GroverChouT/e89ae2ef93a64387ba21acd91aa6917c to your computer and use it in GitHub Desktop.
Save GroverChouT/e89ae2ef93a64387ba21acd91aa6917c to your computer and use it in GitHub Desktop.
#!ipxe
dhcp
menu Please choose an openSUSE release to boot
item tumbleweed64 openSUSE Tumbleweed (64-bit)
item tumbleweed32 openSUSE Tumbleweed (32-bit)
item leap150 openSUSE Leap 15.0 (beta)
item leap423 openSUSE Leap 42.3
item leap422 openSUSE Leap 42.2
choose release && goto ${release}
:tumbleweed64
kernel http://download.opensuse.org/tumbleweed/repo/oss/boot/x86_64/loader/linux
initrd http://download.opensuse.org/tumbleweed/repo/oss/boot/x86_64/loader/initrd
boot
:tumbleweed32
kernel http://download.opensuse.org/tumbleweed/repo/oss/boot/i386/loader/linux
initrd http://download.opensuse.org/tumbleweed/repo/oss/boot/i386/loader/initrd
boot
:leap150
kernel http://download.opensuse.org/distribution/leap/15.0/repo/oss/boot/x86_64/loader/linux
initrd http://download.opensuse.org/distribution/leap/15.0/repo/oss/boot/x86_64/loader/initrd
boot
:leap423
kernel http://download.opensuse.org/distribution/leap/42.3/repo/oss/boot/x86_64/loader/linux
initrd http://download.opensuse.org/distribution/leap/42.3/repo/oss/boot/x86_64/loader/initrd
boot
:leap422
kernel http://download.opensuse.org/distribution/leap/42.2/repo/oss/boot/x86_64/loader/linux
initrd http://download.opensuse.org/distribution/leap/42.2/repo/oss/boot/x86_64/loader/initrd
boot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment