Difference between revisions of "MultiMediaCard"

From ArmadeusWiki
Jump to: navigation, search
m (VFAT Code Page)
m (Card insertion)
Line 12: Line 12:
  
 
==Card insertion==
 
==Card insertion==
You should something like that:
+
You should something like that on the Linux console:
 +
<pre class="apf">
 
  # imx-mmc imx-mmc.0: card inserted
 
  # imx-mmc imx-mmc.0: card inserted
 
  mmc0: host does not support reading read-only switch. assuming write-enable.
 
  mmc0: host does not support reading read-only switch. assuming write-enable.
Line 18: Line 19:
 
  mmcblk0: mmc0:01b0 SD512 500224KiB
 
  mmcblk0: mmc0:01b0 SD512 500224KiB
 
   mmcblk0: p1
 
   mmcblk0: p1
 +
</pre>
  
 
==Mounting the MMC/SD==
 
==Mounting the MMC/SD==

Revision as of 08:57, 3 June 2009

Instructions to use the MultiMediaCard (MMC/SD) on your Armadeus board

Introduction

You can use standard MMC/SD/miniSD/microSD cards with your Armadeus board:

All needed drivers are included in the standard Armadeus Linux image.

Card insertion

You should something like that on the Linux console:

 # imx-mmc imx-mmc.0: card inserted
 mmc0: host does not support reading read-only switch. assuming write-enable.
 mmc0: new SD card at address 01b0
 mmcblk0: mmc0:01b0 SD512 500224KiB
  mmcblk0: p1

Mounting the MMC/SD

  • Just mount the MMC like you will do on your PC, for example (FAT32 formatted card):
# mount -t vfat /dev/mmcblk0p1 /mnt/mmc
  • Then, you can access the MMC's files from the /mnt/mmc directory

If you have problems with vfat code page click here

Booting from MMC/SD

When your rootfs is too big to be put on the APF Flash, you can always use a MMC/SD like a Hard Drive and boot from it (this is possible because standard Armadeus kernel is compiled with the MMC driver built in).

Prepare your card

  • On your APF board (to avoid to crash your Host HD), create a good partition table:
 # /sbin/fdisk /dev/mmcblk0
 Delete all existing partion with 'd'
 Create a primary partion: 'n' then 'p' then '1'
 Change bootflag to Linux: 't' then '83'
 Save partition table: 'w'
 (To quit without saving: 'm')
  • Then, on your PC, format your MMC with Ext2 filesystem (booting on FAT is bad :-) ):
[armadeus] $ sudo mkfs.ext2 /dev/sdX1   (replace X with your MMC reader drive letter, if your Laptop has an integrated
                                          MMC reader then use mmcblk0p1 instead of sdX1)
  • Mount your MMC/SD on your Host filesystem (for example in /media/mmc):
[armadeus] $ sudo mkdir -p /media/mmc
[armadeus] $ sudo mount /dev/sdX1 /media/mmc    (replace X with your MMC reader drive letter, if your Laptop has an integrated
                                                  MMC reader then use mmcblk0p1 instead of sdX1)

Put it your rootfs

  • Then put your rootfs on this MMC/SD: in Buildroot configure rootfs to be tar-ed (should be done by default).
[armadeus] $ make menuconfig
Target filesystem options  --->

Menuconfig tar rootfs.png

[armadeus] $ make
  • and then uncompress the rootfs to the SD card:
[armadeus] $ sudo tar xvf ./buildroot/binaries/apf9328/apf9328-rootfs.arm.tar -C /media/mmc
[armadeus] $ sudo umount /media/mmc

Boot

  • insert the MMC/SD/microSD on your Armadeus board and then in U-Boot use:
 BIOS> run mmcboot
  • if you want to automatically boot from SD at each startup, replace default bootcmd U-Boot macro:
 BIOS> setenv bootcmd run mmcboot
 BIOS> saveenv

(default bootcmd is run jffsboot)

Performances

Troubleshots

VFAT Code Page

If you encounter this message (or something similar):

Unable to load NLS charset cp437
FAT: codepage cp437 not found

you have to add the charset to the supported kernel ones:

$ make linux26-menuconfig
File systems  ---> 
    -*- Native language support  --->
        <*>   Codepage 437 (United States, Canada)
        ...
        <*>   NLS ISO 8859-1  (Latin 1; Western European Languages)
        ...

Links

Other languages:

English Flag.svg English  •  French Flag.svg Français