Difference between revisions of "IoTGateway/BSP/Android/Gettingstarted/How to use SD/MMC Card"

From ESS-WIKI
Jump to: navigation, search
Line 30: Line 30:
 
<pre># cat /sys/block/mmcblk0/device/type
 
<pre># cat /sys/block/mmcblk0/device/type
 
MMC
 
MMC
# cat /sys/block/mmcblk1/device/type
+
# cat /sys/block/mmcblk2/device/type
 
SD
 
SD
 
</pre>
 
</pre>
Line 42: Line 42:
 
The kernel starts scanning once the SD card is inserted and&nbsp;create devices for each partition.&nbsp;
 
The kernel starts scanning once the SD card is inserted and&nbsp;create devices for each partition.&nbsp;
  
[[File:Sd04.JPG]]
+
[[File:Sd04.JPG|RTENOTITLE]]
  
 
== Write to SD ==
 
== Write to SD ==
Line 48: Line 48:
 
</pre>
 
</pre>
  
== Read and Verify ==
+
== Read from SD ==
 
<pre># dd if=/dev/block/mmcblk2 of=data1 bs=1 count=1024 skip=4096
 
<pre># dd if=/dev/block/mmcblk2 of=data1 bs=1 count=1024 skip=4096
# diff data data1
 
</pre>
 
 
If fail, it shows as below:
 
<pre>Binary files data1 and data differ
 
 
</pre>
 
</pre>

Revision as of 07:14, 26 January 2017

Adoptable Storage

Starting in Android 6.0, Android supports adoptable storage, which enables a user to set up the SD card as internal storage and store applications, their data, and media on an "adopted" SD card. Please refer to "Storage" section on the Android website https://source.android.com/devices/storage/index.html

Browse the SD

Android 6 Marshmallow includes a built-in file manager feature to browse the SD card.

  • Launch the Settings app.
  • Tap on Storage & USB.
  • Tap on SD card to explore the files.

RTENOTITLE

RTENOTITLE

RTENOTITLE


External storage (SD/MMC card) is managed by a combination of the vold init service and MountService system service. Mounting of physical external storage volumes is handled by vold, which performs staging operations to prepare the media before exposing it to apps. Please refer to "Device Configuration" section on the Andrid website http://source.android.com/devices/storage/config.html

fstab.device

/devices/soc0/soc/2100000.aips-bus/219c000.usdhc/mmc_host* auto auto defaults voldmanaged=sdcard:auto,encryptable=userdata

Check sysfs node

# cat /sys/block/mmcblk0/device/type
MMC
# cat /sys/block/mmcblk2/device/type
SD


SD/MMC Card insertion

The kernel starts scanning once the SD card is inserted and create devices for each partition. 

RTENOTITLE

Write to SD

# dd if=data of=/dev/block/mmcblk2 bs=1 seek=4096

Read from SD

# dd if=/dev/block/mmcblk2 of=data1 bs=1 count=1024 skip=4096