Hi Davs,
I think it is more related to the number of partitions of the SD when it is inserted to the Linux PC. If the SD card has two partitions and is inserted with a USB-SD reader, the card as entire volume is listed as /dev/sdb, while its first partition will be /dev/sdc1 and /dev/sdc2 its second partition.
When accessing to the same SD card with an embedded SD slot, the entire volume is detected as /dev/mmcblk0, while the first and second partitions are detected as /dev/mmcblk0p1 and /dev/mmcblk0p2 respectively.
The “dd” command is typically applied on the entire volume. If you want to verify the volumes and/or partitions, you could use the following command:
cat /proc/partitions
Hope this will be useful for you.
Best regards!
/Carlos
-------------------------------------------------------------------------------
Note:
- If this post answers your question, please click the "Mark Correct" button. Thank you!
-------------------------------------------------------------------------------