Difference between revisions of "Transclusion: Debian: CL-SOM-iMX7: MMC"

From Compulab Mediawiki
Jump to: navigation, search
(New page: The support for MMC/SD card on CL-SOM-iMX7 is built into the Linux kernel. To mount a memory card, monitor ''/proc/partitions'' to see what partitions were detected on the MMC/SD card. For...)
 
 
Line 1: Line 1:
The support for MMC/SD card on CL-SOM-iMX7 is built into the Linux kernel.
+
The support for MMC/SD card on Compulab devices based on the NXP iMX7 SoC is built into the Linux kernel.
 
To mount a memory card, monitor ''/proc/partitions'' to see what partitions were detected on the MMC/SD card.
 
To mount a memory card, monitor ''/proc/partitions'' to see what partitions were detected on the MMC/SD card.
 
For example, suppose an MMC/SD partition you'd like to mount is ''mmcblk0p1'' then:
 
For example, suppose an MMC/SD partition you'd like to mount is ''mmcblk0p1'' then:

Latest revision as of 10:27, 14 June 2017

The support for MMC/SD card on Compulab devices based on the NXP iMX7 SoC is built into the Linux kernel. To mount a memory card, monitor /proc/partitions to see what partitions were detected on the MMC/SD card. For example, suppose an MMC/SD partition you'd like to mount is mmcblk0p1 then:

if [ ! -d /mnt/mmcblk0p1 ]; then mkdir /mnt/mmcblk0p1; fi
mount /dev/mmcblk0p1 /mnt/mmcblk0p1