summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/mount.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-05-23 18:28:03 +0000
committerThierry Vignaud <tv@mageia.org>2012-05-23 18:28:03 +0000
commitba59d8bd1a5276c67d67ceb042cf086020c98a17 (patch)
treeccd6e26d950d203d2521a373c6054a0763818151 /perl-install/fs/mount.pm
parent168fa3e917a715bb0a139c03e699595ee5829228 (diff)
downloaddrakx-ba59d8bd1a5276c67d67ceb042cf086020c98a17.tar
drakx-ba59d8bd1a5276c67d67ceb042cf086020c98a17.tar.gz
drakx-ba59d8bd1a5276c67d67ceb042cf086020c98a17.tar.bz2
drakx-ba59d8bd1a5276c67d67ceb042cf086020c98a17.tar.xz
drakx-ba59d8bd1a5276c67d67ceb042cf086020c98a17.zip
no need to create /dev/zero and the like, udev already did it
quite a lot more remain as we either lack prope udev rules or rely on older style entries or are needed in drakx-in-chroot mode
Diffstat (limited to 'perl-install/fs/mount.pm')
-rw-r--r--perl-install/fs/mount.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm
index 4365c0caa..0bff5f06c 100644
--- a/perl-install/fs/mount.pm
+++ b/perl-install/fs/mount.pm
@@ -160,8 +160,6 @@ sub part {
set_loop($part);
$options = join(',', grep { !/^(encryption=|encrypted$|loop$)/ } split(',', $options)); #- we take care of this, don't let it mount see it
} elsif (isLoopback($part)) {
- #- mount will take care, but we must help it
- devices::make("loop$_") foreach 0 .. 7;
$options = join(',', uniq('loop', split(',', $options))); #- ensure the loop options is used
} elsif ($part->{options} =~ /encrypted/) {
log::l("skip mounting $part->{device} since we do not have the encrypt_key");