]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-config-help.c
ui/ncurses: Increase timeout when waiting for pb-discover
[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: Specify which devices to autoboot from.\n"
5 "\n"
6 "By selecting the 'Add Device' button new devices can be added to the autoboot \
7 list, either by UUID, MAC address, or device type. Once added to the boot \
8 order, the priority of devices can be changed with the 'left' and 'right' keys \
9 Devices can be individually removed from the boot order with the minus key. \
10 Use this option if you have multiple operating system images installed.\n"
11 "\n"
12 "To autoboot from any device, select the 'Clear & Boot Any' button. \
13 In this case, any boot option that is marked as a default \
14 (by bootloader configuration) will be booted automatically after a \
15 timeout. Use this option if you want to quickly boot your system without \
16 changing any boot option settings. This is the typical configuration.\n"
17 "\n"
18 "To disable autoboot, select the 'Clear' button, which will clear the boot \
19 order. \
20 With autoboot disabled, user interaction will be required to continue past \
21 the petitboot menu. Use this option if you want the machine to wait for an \
22 explicit boot selection, or want to interact with petitboot before booting \
23 the system\n"
24 "\n"
25 "Timeout: Specify the length of time, in seconds, that the main menu will be \
26 displayed before the default boot option is started. This option is only \
27 displayed if autoboot is enabled.\n"
28 "\n"
29 "Network options:\n"
30 "\n"
31 "DHCP on all active interfaces: Automatically assigns IP addresses to each \
32 network interface. Use this option if you have a DHCP server on your \
33 network.\n"
34 "\n"
35 "DHCP on a specific interface: Automatically assigns IP addresses to the \
36 selected network interface. The other interfaces are not configured. Select \
37 this option if you have multiple DHCP servers on different interfaces, but \
38 only want to configure a single interface during boot.\n"
39 "\n"
40 "Static IP configuration: Allows you to specify an IPv4 address and network \
41 mask, gateway, and a DNS server or servers for a network interface. Select \
42 this option if you do not have a DHCP server, or want explicit control of \
43 network settings.\n"
44 "\n"
45 "Disk R/W: Certain bootloader configurations may request write access to \
46 disks to save information or update parameters (eg. GRUB2). "
47 "Use this option to control access to disks.\n");