diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-03 09:39:24 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-03 09:40:42 +0100 |
commit | 8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd (patch) | |
tree | 2012af3c253f019aa848ad6b9fc4497edb33b6bf /perl-install/detect_devices.pm | |
parent | 539125d67d4261dbd7010695340cc3a6b0e8b478 (diff) | |
download | drakx-8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd.tar drakx-8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd.tar.gz drakx-8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd.tar.bz2 drakx-8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd.tar.xz drakx-8582508256cbd9e44d7acfdbf9ac2f9dc6fedfdd.zip |
detect eMMc block devices (Luc Menut, mga#11812)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 6f70c92d2..184a1db31 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -33,7 +33,7 @@ sub get() { #- 2. The first SCSI device if SCSI exists. Or #- 3. The first RAID device if RAID exists. - getIDE(), getSCSI(), getXenBlk(), getVirtIO(), getDAC960(), getCompaqSmartArray(), getATARAID(); + getIDE(), getSCSI(), getMmcBlk(), getXenBlk(), getVirtIO(), getDAC960(), getCompaqSmartArray(), getATARAID(); } sub hds() { grep { may_be_a_hd($_) } get() } sub tapes() { grep { $_->{media_type} eq 'tape' } get() } @@ -401,6 +401,14 @@ sub getVirtIO() { glob("/sys/bus/virtio/devices/*/block/*"); } +sub getMmcBlk() { + -d '/sys/bus/mmc/devices' or return; + map { + { device => basename($_), info => "MMC block device", media_type => 'hd', bus => 'mmc' }; + } + glob("/sys/bus/mmc/devices/*/block/*"); +} + # cpu_name : arch() =~ /^alpha/ ? "cpu " : # arch() =~ /^ppc/ ? "processor" : "vendor_id" |