diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-25 17:22:44 -0400 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-28 17:37:25 +0200 |
commit | ecee84c40b6a3d6daee350581877a80843465485 (patch) | |
tree | dc1428dd26d8ba79e313b9cb6fcdf985bb219fa4 /perl-install/fs | |
parent | 7f61a88cbf6e7617d0a7e100c25a57fe871e4dce (diff) | |
download | drakx-ecee84c40b6a3d6daee350581877a80843465485.tar drakx-ecee84c40b6a3d6daee350581877a80843465485.tar.gz drakx-ecee84c40b6a3d6daee350581877a80843465485.tar.bz2 drakx-ecee84c40b6a3d6daee350581877a80843465485.tar.xz drakx-ecee84c40b6a3d6daee350581877a80843465485.zip |
resync with udisk2
split those unknow from udisk2 on next line
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 9e7558501..b5b4b36f7 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -308,7 +308,10 @@ sub isRecovery { member($_[0]{device_LABEL} , # Extracted from /usr/lib/udev/rules.d/80-udisks2.rules # Hopefuly we'll ask to udev/udisk2 someday - 'RECOVERY', 'PQSERVICE', 'HP_RECOVERY', 'Lenovo_Recovery', 'SYSTEM_DRV', 'Recovery Partition', 'DellUtility', 'DellRestore', 'IBM_SERVICE', 'SERVICEV001', 'SERVICEV002', 'Packard_Bell', 'Push_Button_Reset') + # generated by grep Recovery /usr/lib/udev/rules.d/80-udisks2.rules : + qw(Recovery RECOVERY Lenovo_Recovery HP_RECOVERY Recovery_Partition DellUtility DellRestore IBM_SERVICE SERVICEV001 SERVICEV002 SYSTEM_RESERVED System_Reserved WINRE_DRV DIAGS IntelRST), + # gathered over the years (Hald, mga#1371, mga#15999): + qw(PQSERVICE Packard_Bell Push_Button_Reset SYSTEM_DRV)) ); } |