]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/nc-boot-editor-help.c
ui: Fix typo: 'deamon' -> 'daemon'
[petitboot] / ui / ncurses / nc-boot-editor-help.c
1 #include "nc-helpscreen.h"
2
3 struct help_text boot_editor_help_text = define_help_text("\
4 This screen allows you to edit or create boot options.\n\
5 \n\
6 Device: This is a list of block devices available on the system. Select \
7 the device which contains your boot resources (kernel, initrd and device \
8 tree), or \"Specify paths/URLs manually\" to use full URLs to the boot \
9 resources.\n\
10 \n\
11 Kernel: enter the path to the kernel to boot. This field is mandatory. \
12 This should be a kernel image that the kexec utility can handle. Generally, \
13 this will be a 'vmlinux'-type image.\n\
14 Example: /boot/vmlinux\n\
15 \n\
16 Initrd: enter the path to the initial RAM disk image. This is optional.\n\
17 Example: /boot/initrd.img\n\
18 \n\
19 Device tree: enter the path to the device tree blob file (.dtb). \
20 This is optional; if not specified, and your platform currently provides \
21 a device tree, the current one will be used.\n\
22 Example: /boot/device-tree.dtb\n\
23 \n\
24 Boot arguments: enter the kernel command-line arguments. This is optional.\n\
25 Example: root=/dev/sda1 console=hvc0\n\
26 \n");