ACC SHELL
/**
* File:
* include/bootloader/elilo/helps.ycp
*
* Module:
* Bootloader installation and configuration
*
* Summary:
* Help and label strings for bootloader installation and configuration
*
* Authors:
* Joachim Plack <jplack@suse.de>
* Olaf Dabrunz <od@suse.de>
*
* $Id: helps.ycp 57028 2009-04-29 10:58:09Z lslezak $
*
*/
{
textdomain "bootloader";
global map<string,string> elilo_help_messages = $[
"boot-loader-location" : _("<p><big><b>Boot Loader Location</b></big><br>"),
"boot" : _("<p><b>Boot Image Location</b></p>"),
"verbose" :
_("<p><b>Set level of verbosity [0-5]</b><br> Increase verbosity of ELILO
in case of boot problems.</p>"),
"append" :
_("<p><b>Append string for.global options to pass to kernel command line</b><br>
Lets you define additional global parameters to pass to the kernel. These are
used if no 'append' appears in a given section.</p>
"),
"initrd" :
_("<p><b>Name of the default initrd file</b>, if not empty, defines the initial
ramdisk to use. Either enter the path and file name directly or choose by using
<b>Browse</b></p>
"),
"image" :
_("<p><b>Name of default image file</b>, if not empty, defines the image
file to use. Either enter the path and file name directly or choose by using
<b>Browse</b></p>"),
"chooser" :
_("<p><b>Specify user interface for ELILO ('simple' or 'textmenu')</b><br>
Beware: 'textmenu' has occasionally caused problems on some machines.</p>"),
"noedd30" :
_("<p><b>Prevent EDD30 mode</b><br>
By default, if EDD30 is off, ELILO will try and set the variable to TRUE.
However, some controllers do not support EDD30 and forcing the variable
may cause problems. Therefore, as of elilo-3.2, there is an option to
avoid forcing the variable.</p>
"),
"relocatable" :
_("<p><b>Allow attempt to relocate</b><br>
In case of memory allocation error at initial load point of
kernel, allow attempt to relocate (assume this kernel is relocatable).
</p>"),
"prompt" :
_("<p><b>Force Interactive Mode</b>
Force interactive mode during booting</p>"),
"root" :
_("<p><b>Set Default Root Filesystem</b>
Set global root filesystem for Linux/ia64</p>"),
"chooser" :
_("<p><b>Set the User Interface for ELILO</b>
Specify kernel chooser to use: \"simple\" or \"textmenu\"</p>"),
"fX" :
_("<p><b>Display the Content of a File by Function Keys</b>
Some choosers may take advantage of this option to
display the content of a file when a certain function
key X is pressed. X can vary from 1-12 to cover
function keys F1 to F12</p>"),
"fpswa" :
_("<p><b>Specify the Filename for a Specific FPSWA to Load</b>
Specify the filename for a specific FPSWA to load.
If this option is used then no other file will be tried.</p>"),
"message" :
_("<p><b>Message Printed on Main Screen (If Supported)</b>
A message that is printed on the main screen if supported by
the chooser.</p>"),
"delay" :
_("<p><b>Delay to Wait before Auto Booting in Seconds</b>
The number of 10th of seconds to wait before
auto booting when not in interactive mode.
Default is 0</p>"),
];
global map<string,string> elilo_descriptions = $[
"boot" : _("Boot Image Location"),
"delay" : _("Delay to wait before auto booting in seconds (used if not in interactive mode)"),
"prompt" : _("Force interactive mode"),
"verbose" : _("Set level of verbosity [0-5]"),
"root" : _("Set default root filesystem"),
"readonly" : _("Force rootfs to be mounted read-only"),
"append" : _("Global append string of options to kernel command line"),
"initrd" : _("Name of default initrd file"),
"image" : _("Name of default image file"),
"chooser" : _("Specify user interface for ELILO ('simple' or 'textmenu')"),
"message" : _("Message printed on main screen (if supported)"),
"fX" : _("Display the content of a file by function keys"),
"noedd30" : _("Prevent EDD30 mode"),
"fpswa" : _("Specify the filename for a specific FPSWA to load"),
"relocatable" : _("Allow attempt to relocate"),
"boot_custom" : _("Custom Boot Partition"),
];
} //EOF
/*
* Local variables:
* mode: ycp
* mode: font-lock
* mode: auto-fill
* indent-level: 4
* fill-column: 78
* End:
*/
ACC SHELL 2018