]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame_incremental - templates/netboot/menu-config.cfg
netboot: Allow booting multiple architectures
[people/shoehn/ipfire.org.git] / templates / netboot / menu-config.cfg
... / ...
CommitLineData
1menu begin {{ release.sname }}
2 menu title {{ release.name }}
3
4 label {{ release.sname }}.default
5 menu label Start installation!
6
7 text help
8{{ _("Install %s...") % release.name }}
9 endtext
10
11 kernel {{ release.netboot_kernel_url(arch, platform) }}
12 initrd {{ release.netboot_initrd_url(arch, platform) }}
13 append {{ release.netboot_args(arch, platform) }} vga=791
14
15 {% module NetBootMenuSeparator() %}
16
17 label {{ release.sname }}.novga
18 menu label {{ _("Install in text mode") }}
19
20 text help
21{{ _("Install in text mode.") }}
22 endtext
23
24 kernel {{ release.netboot_kernel_url(arch, platform) }}
25 initrd {{ release.netboot_initrd_url(arch, platform) }}
26 {% if release.netboot_args(arch, platform) %}append {{ release.netboot_args(arch, platform) }}{% end %}
27
28{% if release.id >= 75 %}
29 label {{ release.sname }}.scon
30 menu label {{ _("Install with serial console") }}
31
32 text help
33{{ _("Install with serial console.") }}
34 endtext
35
36 kernel {{ release.netboot_kernel_url(arch, platform) }}
37 initrd {{ release.netboot_initrd_url(arch, platform) }}
38 append {{ release.netboot_args(arch, platform) }} console=ttyS0,115200 novga
39{% end %}
40
41 {% module NetBootMenuSeparator() %}
42
43 label {{ release.sname }}.back
44 menu label {{ _("Back...") }}
45 menu exit
46menu end
47{% comment new line %}