]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-config-help.c
ui/ncurses: Warn if widget runs over horizontal pad width
[petitboot] / ui / ncurses / nc-config-help.c
1 #include "nc-helpscreen.h"
2
3 struct help_text config_help_text = define_help_text("\
4 Autoboot: There are three possible options for automatic-boot hehaviour:\n"
5 "\n"
6 "Don't autoboot: boot options will be listed in the petitboot menu, but none \
7 will be booted automatically. User interaction will be required to continue \
8 past the petitboot menu. Use this option if you want the machine to wait for \
9 an explicit boot selection, or want to interact with petitboot before \
10 booting the system\n"
11 "\n"
12 "Autoboot from any disk/network device: any boot option that is marked as a \
13 default (by bootloader configuration) will be booted automatically after a \
14 timeout. Use this option if you want to quickly boot your system without \
15 changing any boot option settings. This is the typical configuration.\n"
16 "\n"
17 "Only autoboot from a specific disk/network device: only boot options \
18 from a single device (specifed here) will be booted automatically after a \
19 timeout. Use this option if you have multiple operating system images \
20 installed.\n"
21 "\n"
22 "Timeout: Specify the length of time, in seconds, that the main menu will be \
23 displayed before the default boot option is started. This option is only \
24 displayed if autoboot is enabled.\n"
25 "\n"
26 "Network options:\n"
27 "\n"
28 "DHCP on all active interfaces: Automatically assigns IP addresses to each \
29 network interface. Use this option if you have a DHCP server on your \
30 network.\n"
31 "\n"
32 "DHCP on a specific interface: Automatically assigns IP addresses to the \
33 selected network interface. The other interfaces are not configured. Select \
34 this option if you have multiple DHCP servers on different interfaces, but \
35 only want to configure a single interface during boot.\n"
36 "\n"
37 "Static IP configuration: Allows you to specify an IPv4 address and network \
38 mask, gateway, and a DNS server or servers for a network interface. Select \
39 this option if you do not have a DHCP server, or want explicit control of \
40 network settings.");