diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-13 07:22:07 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-04-13 17:46:15 +0200 |
commit | 146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0 (patch) | |
tree | 6b5302567360110b6060777bec5c5018c3873fea /perl-install | |
parent | ee148c3c1b667be9ef3c86c8678ab66bce35159f (diff) | |
download | drakx-146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0.tar drakx-146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0.tar.gz drakx-146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0.tar.bz2 drakx-146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0.tar.xz drakx-146c308e0801adb9bb97a5ce83ceeb9d7cffe0f0.zip |
detect Lenovo recovery as such
also ignore 'SYSTEM_DRV'
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/fs/type.pm | 2 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index dc566c936..fc97acf75 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,4 +1,5 @@ - diskdrake: + o detect Lenovo recovery & 'SYSTEM_DRV' as such (mga#1371) o do add a ESP if it was removed by "Clear All" Version 16.81 - 12 April 2015 diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 06992c936..19725a82d 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', 'Recovery Partition', 'DellUtility', 'DellRestore', 'IBM_SERVICE', 'SERVICEV001', 'SERVICEV002') + 'RECOVERY', 'PQSERVICE', 'HP_RECOVERY', 'Lenovo_Recovery', 'SYSTEM_DRV', 'Recovery Partition', 'DellUtility', 'DellRestore', 'IBM_SERVICE', 'SERVICEV001', 'SERVICEV002') ); } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 0d33052cf..a75732e8f 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,5 @@ - partionning: + o detect Lenovo recovery & 'SYSTEM_DRV' as such (mga#1371) o do add a ESP if it was removed by "Clear All" Version 16.81 - 12 April 2015 |