Difference between revisions of "Transclusion: Debian: CL-SOM-iMX7: MMC"
(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...) |
(No difference)
|
Revision as of 10:56, 15 February 2017
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 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