Module: Yast::BootloaderGrub2HelpsInclude

Defined in:
src/include/bootloader/grub2/helps.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) initialize_bootloader_grub2_helps(include_target)



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'src/include/bootloader/grub2/helps.rb', line 19

def initialize_bootloader_grub2_helps(include_target)
  textdomain "bootloader"

  @grub2_help_messages = {
    "append"          => _(
      "<p><b>Optional Kernel Command Line Parameter</b> lets you define additional parameters to pass to the kernel.</p>"
    ),
    "vgamode"         => _(
      "<p><b>Vga Mode</b> defines the VGA mode the kernel should set the <i>console</i> to when booting.</p>"
    ),
    "append_failsafe" => _(
      "<p><b>Failsafe Kernel Command Line Parameter</b> lets you define failsafe parameters to pass to the kernel.</p>"
    ),
    "os_prober"       => _(
      "<p><b>Probe Foreign OS</b> by means of os-prober for multiboot with other foreign distribution </p>"
    ),
    "pmbr"            => _(
      "<p><b>Protective MBR flag</b> is expert only settings, that is needed only on exotic hardware. For details see Protective MBR in GPT disks. Do not touch if you are not sure.</p>"
    ),
    "distribution"    => _(
      "<p><b>Distributor</b> specifies name of distributor of kernel used to create boot entry name. </p>"
    )
  }

  @grub2_descriptions = {
    "append"          => _("O&ptional Kernel Command Line Parameter"),
    "distributor"     => _("D&istributor"),
    "vgamode"         => _("&Vga Mode"),
    "append_failsafe" => _("&Failsafe Kernel Command Line Parameter"),
    "os_prober"       => _("Probe Foreign OS"),
    "pmbr"            => _("Protective MBR flag")
  }
end