diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/detect_devices.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 882d996b0..001da6edb 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- fix detecting Xen hard disks (mga#9546) + Version 15.31 - 21 March 2013 - do not show notification bubble in net_applet as they make it to diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 54d0f7bec..e9165471f 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -389,7 +389,7 @@ sub getXenBlk() { -d '/sys/bus/xen/devices' or return; map { s/block://; - { device => basename($_), info => "Xen block device", media_type => 'xvd', bus => 'xen' }; + { device => basename($_), info => "Xen block device", media_type => 'hd', bus => 'xen' }; } glob("/sys/bus/xen/devices/*/block*"); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index fd5864267..92f9b1445 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix detecting Xen hard disks (mga#9546) + Version 15.31 - 25 March 2013 - recognize more webcam & bluetooth devices (might help mga#5841) |