Merge pull request #555 from netbootxyz/septor

adding septor to the live menu
This commit is contained in:
Antony Messerli
2020-01-22 19:43:07 -06:00
committed by GitHub
3 changed files with 39 additions and 0 deletions
+1
View File
@@ -141,6 +141,7 @@ In addition to being able to host netboot.xyz locally, you can also create your
|Red Hat Enterprise Linux|https://www.redhat.com| User supplied media | No |
|Regolith|https://regolith-linux.org| No | Yes |
|Scientific Linux|https://scientificlinux.org| Yes | No |
|Septor|https://septor.sourceforge.io| No | Yes |
|Slackware|https://www.slackware.com| Yes | No |
|SparkyLinux|https://sparkylinux.org/| No | Yes |
|Tails|https://tails.boum.org | No | Yes |
@@ -0,0 +1,37 @@
#!ipxe
goto ${menu} ||
:live_menu
set os Septor
menu ${os} - Current Arch [ ${arch} ]
iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
item --gap ${os} Versions
{% for key, value in endpoints.items() | sort %}
{% if value.os == "septor" %}
item {{ value.version }} ${space} ${os} {{ value.version }}
{% endif %}
{% endfor %}
choose live_version || goto live_exit
goto ${live_version}
{% for key, value in endpoints.items() | sort %}
{% if value.os == "septor" %}
:{{ value.version }}
set squash_url ${live_endpoint}{{ value.path }}filesystem.squashfs
set kernel_url ${live_endpoint}{{ value.path }}
goto boot
{% endif %}
{% endfor %}
:boot
imgfree
kernel ${kernel_url}vmlinuz boot=live fetch=${squash_url} initrd=initrd
initrd ${kernel_url}initrd
boot
:live_exit
clear menu
exit 0
@@ -28,6 +28,7 @@ item live-peppermint ${space} Peppermint
item live-popos ${space} Pop OS
item live-q4os ${space} Q4OS
item live-regolith ${space} Regolith
item live-septor ${space} Septor
item live-sparky ${space} SparkyLinux
item live-tails ${space} Tails
item tinycore ${space} Tiny Core Linux