diff options
Diffstat (limited to 'perl-install/devices.pm')
-rw-r--r-- | perl-install/devices.pm | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/perl-install/devices.pm b/perl-install/devices.pm index c5ee94c04..9404481a8 100644 --- a/perl-install/devices.pm +++ b/perl-install/devices.pm @@ -205,18 +205,6 @@ sub to_devfs { readlink("/dev/" . $dev); } -sub read_proc_partitions_raw() { - my (undef, undef, @all) = cat_("/proc/partitions"); - grep { - $_->{size} != 1 && # skip main extended partition - $_->{size} != 0x3fffffff; # skip cdroms (otherwise stops cd-audios) - } map { - my %l; - @l{qw(major minor size dev)} = split; - \%l; - } @all; -} - sub simple_partition_scan { my ($part) = @_; $part->{device} =~ /([hs]d[a-z])(\d+)$/; |