|
@@ -6,6 +6,7 @@ goto ${menu} ||
|
|
set os Debian Live
|
|
set os Debian Live
|
|
menu ${os}
|
|
menu ${os}
|
|
item --gap ${os} Versions
|
|
item --gap ${os} Versions
|
|
|
|
+item bookworm ${space} ${os} 12 (bookworm)
|
|
item bullseye ${space} ${os} 11 (bullseye)
|
|
item bullseye ${space} ${os} 11 (bullseye)
|
|
item buster ${space} ${os} 10 (buster)
|
|
item buster ${space} ${os} 10 (buster)
|
|
choose live_version || goto live_exit
|
|
choose live_version || goto live_exit
|
|
@@ -13,6 +14,14 @@ menu ${os} ${live_version}
|
|
item --gap ${os} Flavors
|
|
item --gap ${os} Flavors
|
|
goto ${live_version}
|
|
goto ${live_version}
|
|
|
|
|
|
|
|
+:bookworm
|
|
|
|
+{% for key, value in endpoints.items() | sort %}
|
|
|
|
+{% if value.os == "debian" and 'squash' in key and value.version == "12" %}
|
|
|
|
+item {{ key }} ${space} {{ value.os | title }} {{ value.version }} {{ value.flavor | title}}
|
|
|
|
+{% endif %}
|
|
|
|
+{% endfor %}
|
|
|
|
+goto flavor_select
|
|
|
|
+
|
|
:bullseye
|
|
:bullseye
|
|
{% for key, value in endpoints.items() | sort %}
|
|
{% for key, value in endpoints.items() | sort %}
|
|
{% if value.os == "debian" and 'squash' in key and value.version == "11" %}
|
|
{% if value.os == "debian" and 'squash' in key and value.version == "11" %}
|