• Good morning,


    how do I mount the SD card on Picomod7 starter board? I'm able to mount a USB stick with

    Code
    1. mount -t vfat /dev/sda1 /media/usb


    but I don't find a device for the SD card. When I insert the card the debugging console is showing me:

    Code
    1. mmc0: new high speed SD card at address b368
    2. mmcblk0: mmc0:b368 MS 1.88 GiB
    3. mmcblk0:<7>mmc0: starting CMD18 agr 00000000 flags 000000b5
    4. p1


    In my /dev folder there's no mmc or mmcblk device. sda1 seems to be the only existing device from all the sda and sdb devices (checked with #cat sdaX). Any idea?


    Thanks.

  • you should find in /dev


    Code
    1. # ls -lah /dev/mmcplk0*
    2. brw-r--r-- 1 root root 179, 0 Mar 15 2012 /dev/mmcplk0
    3. brw-r--r-- 1 root root 179, 1 Mar 15 2012 /dev/mmcplk0p1


    then simple do:


    Code
    1. mount /dev/mmcblk0p1 /mnt

    F&amp;S Elektronik Systeme GmbH
    As this is an international forum, please try to post in English.
    Da dies ein internationales Forum ist, bitten wir darum, Beiträge möglichst in Englisch zu verfassen.

  • Code
    1. mknod /dev/mmcblk0 b 179 0
    2. mknod /dev/mmcblk0p1 b 179 1


    in v0.1 root-file-system these are set by default.

    F&amp;S Elektronik Systeme GmbH
    As this is an international forum, please try to post in English.
    Da dies ein internationales Forum ist, bitten wir darum, Beiträge möglichst in Englisch zu verfassen.