diff options
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/data.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/harddrake/data.pm b/perl-install/harddrake/data.pm index d7c5befff..bcc294d17 100644 --- a/perl-install/harddrake/data.pm +++ b/perl-install/harddrake/data.pm @@ -75,7 +75,7 @@ sub custom_id { my ($device, $str) = @_; defined($device->{device}) ? $device->{device} : (defined($device->{processor}) ? - "$device->{vendor_id} " . _("cpu number ") . $device->{processor} : + "$device->{vendor_id} $device->{name} " . _("cpu number ") . $device->{processor} : (defined($device->{description}) ? $device->{description} : $str)); } |