Forum Discussion
Altera_Forum
Honored Contributor
16 years agomounting SD Card on uClinux
Hi everyone, I'm trying to implement a fat file system on sd card I followed the instructions for Altera SPI Core on this page http://www.nioswiki.com/operatingsystems/uclinux/mmcsd didn't w...
Altera_Forum
Honored Contributor
16 years ago(using the drivers as modules), to allow for Linux and Windows formatted cards, which uses different partition tables)I do this:
modprobe mmc_block modprobe mmc_spi# sd card formatted by Windows (no parition table) mount -t vfat /dev/mmcblk0 /mnt/sdcard# sd card formatted by Linux (first parition) mount -t vfat /dev/mmcblk0p1 /mnt/sdcard