diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-11-24 16:44:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-11-24 16:44:54 +0000 |
commit | 1b7dd931b55e516106b8f2dec9c319d415af5aa3 (patch) | |
tree | a174dddb30783c534d82b386dfc2722fd02c3a35 /perl-install | |
parent | d2e64f7f434ac1e6bcbf21df7dc37f8e61b7dc5a (diff) | |
download | drakx-1b7dd931b55e516106b8f2dec9c319d415af5aa3.tar drakx-1b7dd931b55e516106b8f2dec9c319d415af5aa3.tar.gz drakx-1b7dd931b55e516106b8f2dec9c319d415af5aa3.tar.bz2 drakx-1b7dd931b55e516106b8f2dec9c319d415af5aa3.tar.xz drakx-1b7dd931b55e516106b8f2dec9c319d415af5aa3.zip |
fix 'id' description for SCSI devices
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 71fe661a9..ace758232 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -102,6 +102,7 @@ my %fields = { channel => [ N("Channel"), N("EIDE/SCSI channel") ], info => [ N("Disk identifier"), N("usually the disk serial number") ], + id => [ N("Target id number"), N("the SCSI target identifier") ], lun => [ N("Logical unit number"), N("the SCSI Logical Unit Number (LUN). SCSI devices connected to a host are uniquely identified by a channel number, a target id and a logical unit number") ], }, @@ -148,7 +149,7 @@ my %groups = ( HARDDISK => { N("Identification") => [ qw(Vendor Model description info media_type) ], - N("Connection") => [ qw(bus channel lun) ], + N("Connection") => [ qw(bus channel lun id) ], N("Bus identification") => [ qw(vendor id subvendor subid) ], N("Device") => [ qw(device) ], N("Partitions") => [ qw(primary_partitions extended_partitions) ], |