30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File '../../src/include/reipl/helps.rb', line 30
def initialize_reipl_helps(include_target)
textdomain "reipl"
@HELPS = {
"read" => _(
"<p><b><big>Initializing reipl Configuration</big></b><br>\n</p>\n"
) +
_(
"<p><b><big>Aborting Initialization:</big></b><br>\nSafely abort the configuration utility by pressing <b>Abort</b> now.</p>\n"
),
"write" => _(
"<p><b><big>Saving reipl Configuration</big></b><br>\n</p>\n"
) +
_(
"<p><b><big>Aborting Saving:</big></b><br>\n" +
"Abort the save procedure by pressing <b>Abort</b>.\n" +
"An additional dialog informs whether it is safe to do so.\n" +
"</p>\n"
),
"configure" => _(
"<p><b><big>s390 reIPL Configuration</big></b></p>"
) +
_(
"<p>Choose one of the methods for rebooting your machine with the radio buttons\n" +
"listed inside <b>reipl methods</b>. Depending on what your machine supports,\n" +
"choose between CCW (channel command word) devices and SCSI devices,\n" +
"which are attached through zFCP (fibre channel protocol). Then fill out the\n" +
"necessary parameter entry fields for the respective method.</p>\n"
) +
_(
"<p>The <b>device</b> must be a valid device bus ID with lower case letters\n" +
"in a sysfs compatible format 0.<i><subchannel set ID></i>.<i><device ID></i>,\n" +
"such as 0.0.5c51. Depending on the chosen method, this can either refer to a DASD or to\n" +
"an FCP adapter.</p>"
) +
_(
"<p>The <b>loadparm</b> must be a maximum of 8 characters and selects a boot\n" +
"configuration from the menu of the zipl bootloader. Use one blank character\n" +
"to select the default configuration.</p>"
) +
_(
"<p>The <b>worldwide port number</b> (WWPN) must be entered with lowercase\nletters as a 16-digit hex value, such as 0x5005076300c40e5a.</p>\n"
) +
_(
"<p>The <b>logical unit number</b> (LUN) must be entered with lowercase letters\nas a 16-digit hex value with all trailing zeros, such as 0x52ca000000000000.</p>"
) +
_(
"<p>The <b>boot program selector</b> must be a non-negative integer choosing\n" +
"a boot configuration from the menu of the zipl bootloader. Use 0 to select\n" +
"the default configuration.</p>"
) +
_(
"<p>The <b>boot record logical block address</b> (LBA) specifies the master\nboot record and is currently always 0.</p>"
) +
_(
"<p>After confirmation of this dialog, you may trigger a reboot, e.g. by shutdown,\nand the system will automatically restart from your specified device.</p>"
)
}
end
|