|
@@ -10,6 +10,7 @@ set os Fedora Live
|
|
|
menu ${os} - Current Arch [ ${arch} ]
|
|
|
iseq ${arch} x86_64 && set arch_a amd64 || set arch_a ${arch}
|
|
|
item --gap ${os} Versions
|
|
|
+item 33 ${space} ${os} 33
|
|
|
item 32 ${space} ${os} 32
|
|
|
item 31 ${space} ${os} 31
|
|
|
choose live_version || goto live_exit
|
|
@@ -17,6 +18,14 @@ menu ${os} ${live_version}
|
|
|
item --gap ${os} Flavors
|
|
|
goto ${live_version}
|
|
|
|
|
|
+:33
|
|
|
+{% for key, value in endpoints.items() | sort %}
|
|
|
+{% if value.os == "fedora" and value.version == 33 %}
|
|
|
+item {{ key }} ${space} {{ value.os | title }} {{ value.version }} {{ value.flavor | title}}
|
|
|
+{% endif %}
|
|
|
+{% endfor %}
|
|
|
+goto flavor_select
|
|
|
+
|
|
|
:32
|
|
|
{% for key, value in endpoints.items() | sort %}
|
|
|
{% if value.os == "fedora" and value.version == 32 %}
|
|
@@ -55,4 +64,3 @@ boot
|
|
|
:live_exit
|
|
|
clear menu
|
|
|
exit 0
|
|
|
-
|