diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-07-22 02:39:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-07-22 02:39:06 +0000 |
commit | 03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5 (patch) | |
tree | 8c3b96ddccea76e1f49ccef6ebac0ca689e8f9a8 /perl-install/fsedit.pm | |
parent | 1603594e5d31c28a244424d498a6ba208fcf301f (diff) | |
download | drakx-03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5.tar drakx-03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5.tar.gz drakx-03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5.tar.bz2 drakx-03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5.tar.xz drakx-03ff5f3c5f6b7911b1cd4a10ce6f956124e997d5.zip |
set {is_removable} directly in fsedit::hds()
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 69a6bcb88..ce5c0cdee 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -239,6 +239,10 @@ sub hds { $_->{device_LABEL} = $label if $label; } + if ($hd->{usb_media_type}) { + $_->{is_removable} = 1 foreach partition_table::get_normal_parts($hd); + } + push @hds, $hd; } |