diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-20 23:30:55 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-20 23:30:55 +0000 |
commit | a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a (patch) | |
tree | 06bd619370538ea20e7a7f5ddea0edc90d37448a /perl-install/standalone/harddrake2 | |
parent | fad0b5310f6728db2caaab9b3906af5883293dde (diff) | |
download | drakx-a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a.tar drakx-a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a.tar.gz drakx-a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a.tar.bz2 drakx-a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a.tar.xz drakx-a5b157ae3ebc6402d4deeabf7c75468f1a0cda8a.zip |
display better info for hard disks
Diffstat (limited to 'perl-install/standalone/harddrake2')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index dad12df21..55fb0af93 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -22,7 +22,6 @@ my %fields = "bus" => [ N("Bus"), N("this is the physical bus on which the device is plugged (eg: PCI, USB, ...)") ], - "channel" => [ N("Channel"), N("EIDE/SCSI channel") ], "bus_id" => [ N("Bus identification"), N("- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids") ], @@ -90,7 +89,10 @@ my %fields = }, HARDDISK => { + channel => [ N("Channel"), N("EIDE/SCSI channel") ], info => [ N("Disk identifier"), N("usually the disk serial number") ], + lun => [ N("Logical unit number"), N("the SCSI target number (LUN). SCSI devices connected to a host are uniquely identified by a +channel number, a target id and a logical unit number") ], }, MOUSE => { @@ -124,6 +126,8 @@ my %groups = ( HARDDISK => { N("Identification") => [ qw(Vendor Model description info media_type) ], + N("Connection") => [ qw(bus channel lun) ], + N("Bus identification") => [ qw(vendor id subvendor subid) ], N("Device") => [ qw(device devfs_device) ], N("Partitions") => [ qw(primary_partitions extended_partitions) ], }, |