diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 63ac149ef..5f3fb3956 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -3,6 +3,8 @@ file name (#28772) - drakboot: o boot entrie list uses ellipsis rather than scroll bar +- harddrake2: + o display model & vendor for SCSI devices too Version 10.4.198 - 16 September 2007, by Thierry Vignaud diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 49690f23f..249f0df6a 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -220,6 +220,7 @@ sub getSCSI() { $raw_type =~ /Scanner|Processor/ && 'scanner'; push @l, { info => $get->('vendor') . ' ' . $get->('model'), host => $host, channel => $channel, id => $id, lun => $lun, + description => join('|', $get->('vendor'), $get->('model')), bus => 'SCSI', media_type => $media_type, device => $device, $usb_dir ? ( usb_vendor => hex($get_usb->('idVendor')), usb_id => hex($get_usb->('idProduct')), |