summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Backlund <tmb@mageia.org>2015-05-28 10:21:30 +0200
committerThomas Backlund <tmb@mageia.org>2015-05-28 10:21:30 +0200
commit62645b8ddc107a13151f2a30297aefda4c16f790 (patch)
treed14baed629a1c802a3e0c3f801884dea13c7375b
parent0e4d18138b94b9fddbc8a8fec32b2c5e19736b6b (diff)
downloaddrakx-62645b8ddc107a13151f2a30297aefda4c16f790.tar
drakx-62645b8ddc107a13151f2a30297aefda4c16f790.tar.gz
drakx-62645b8ddc107a13151f2a30297aefda4c16f790.tar.bz2
drakx-62645b8ddc107a13151f2a30297aefda4c16f790.tar.xz
drakx-62645b8ddc107a13151f2a30297aefda4c16f790.zip
ignore special 'Packard_Bell' and 'Push_Button_Reset' partitions (mga#15999)
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/type.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index c961faba7..13974e78a 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- diskdrake:
+ o ignore special 'Packard_Bell' and 'Push_Button_Reset' partitions (mga#15999)
- harddrake2:
o set min width for left panel (mga#16026)
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index 70627be37..c4dc8387b 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -308,7 +308,7 @@ sub isRecovery {
member($_[0]{device_LABEL} ,
# Extracted from /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi
# Hopefuly we'll ask to hal/udev someday
- 'RECOVERY', 'PQSERVICE', 'HP_RECOVERY', 'Lenovo_Recovery', 'SYSTEM_DRV', 'Recovery Partition', 'DellUtility', 'DellRestore', 'IBM_SERVICE', 'SERVICEV001', 'SERVICEV002')
+ 'RECOVERY', 'PQSERVICE', 'HP_RECOVERY', 'Lenovo_Recovery', 'SYSTEM_DRV', 'Recovery Partition', 'DellUtility', 'DellRestore', 'IBM_SERVICE', 'SERVICEV001', 'SERVICEV002' 'Packard_Bell', 'Push_Button_Reset')
);
}