]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/netboot/menu.cfg
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / netboot / menu.cfg
CommitLineData
6d6e4a1b
MT
1SERIAL 0 115200
2
5470bdf1 3menu hshift 0
a9bf3cbe
MT
4menu width 40
5menu margin 1
5470bdf1
MT
6menu color title * #FFFFFFFF *
7menu color border * #00000000 #00000000 none
a9bf3cbe
MT
8menu color sel * #ffffffff #ffe74c2e *
9menu color hotsel 1;7;37;40 #ffffffff #99e74c2e *
5470bdf1
MT
10menu color tabmsg * #ffffffff #00000000 *
11menu vshift 8
12menu rows 10
13menu helpmsgrow 16
5fb24f31 14menu background boot.png
5470bdf1 15prompt 0
5470bdf1 16
37b5c0cf 17menu title {{ _("IPFire boot menu") }} ({{ arch }})
5470bdf1 18
37b5c0cf
MT
19{% if latest_release %}
20 {% module NetBootMenuConfig(latest_release, arch=arch, platform=platform) %}
21 {% module NetBootMenuSeparator() %}
22{% end %}
5470bdf1 23
37b5c0cf
MT
24{% if stable_releases %}
25 {% module NetBootMenuHeader(_("Stable releases"), stable_releases, arch=arch, platform=platform) %}
26{% end %}
9068dba1 27
37b5c0cf
MT
28{% if development_releases %}
29 {% module NetBootMenuHeader(_("Development releases"), development_releases, arch=arch, platform=platform) %}
30{% end %}
31
32{% if arch == "x86_64" %}
33 menu separator
34
35 label change.to.i586
36 text help
37{{ _("You can as well install a 32-bit version of IPFire") }}
38 endtext
39 menu label {{ _("Change to i586") }}
40 kernel vesamenu.c32
41 append premenu.cfg?arch=i586&platform={{ platform }}
42{% end %}