The ones I bought were CTeam 4GB micro-SD cards, class 4. They were
what was available when I went to buy them.
I think the ones that are shipped with the Bone are Kingston, again
class 4, but I am not quite sure.
I seem to recall that someone said on this list that class 2 or 4 was
fine, but class 10 microSD cards did not work properly.
Which brands and types have people found to be most compatible and reliable?
David
David
--
You received this message because you are subscribed to the Google Groups "Beagle Board" group.
To post to this group, send email to beagl...@googlegroups.com.
To unsubscribe from this group, send email to beagleboard...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/beagleboard?hl=en.
When I log into the system, it says (amongst other things that scrolled
off the screen rather quickly):-
[ 40.126301] Buffer I/O error on device mmcblk0p2, logical block 967
[ 40.132893] lost page write due to I/O error on mmcblk0p2
[ 41.586452] mmcblk0: error -110 transferring data, sector 145464, nr 8,
cmd response 0x900, card status 0xc00
[ 41.597222] end_request: I/O error, dev mmcblk0, sector 145465
[ 41.603367] Buffer I/O error on device mmcblk0p2, logical block 1164
[ 41.610051] lost page write due to I/O error on mmcblk0p2
[ 42.034668] mmcblk0: error -110 transferring data, sector 4731880, nr 8,
cmd response 0x900, card status 0xc00
[ 42.045585] end_request: I/O error, dev mmcblk0, sector 4731881
[ 42.051820] Buffer I/O error on device mmcblk0p2, logical block 574466
[ 42.058686] lost page write due to I/O error on mmcblk0p2
[ 42.447969] mmcblk0: error -110 transferring data, sector 4731960, nr 16,
cmd response 0x900, card status 0xc00
[ 42.458944] end_request: I/O error, dev mmcblk0, sector 4731961
[ 42.465179] Buffer I/O error on device mmcblk0p2, logical block 574476
[ 42.472045] lost page write due to I/O error on mmcblk0p2
[ 42.477740] end_request: I/O error, dev mmcblk0, sector 4731968
[ 42.483969] Buffer I/O error on device mmcblk0p2, logical block 574477
[ 42.490834] lost page write due to I/O error on mmcblk0p2
[ 43.944161] mmcblk0: error -110 transferring data, sector 4732008, nr 16,
cmd response 0x900, card status 0xc00
[ 43.955118] end_request: I/O error, dev mmcblk0, sector 4732009
[ 43.961314] Buffer I/O error on device mmcblk0p2, logical block 574482
[ 43.968134] lost page write due to I/O error on mmcblk0p2
[ 43.973807] end_request: I/O error, dev mmcblk0, sector 4732016
[ 43.979996] Buffer I/O error on device mmcblk0p2, logical block 574483
[ 43.986815] lost page write due to I/O error on mmcblk0p2
David
On Dec 19, 6:21 am, David Goodenough
<david.goodeno...@linkchoose.co.uk> wrote:
> On Monday 19 Dec 2011, Frank Hunleth wrote:
>
>
>
>
>
>
>
>
>
> > Hi David,
>
> > I have been using a Class 10 4GB MicroSD card with the BeagleBone, and it
> > has been working fine for me. It is a Transcend TS4GUSDHC10.
>
> > What are the errors that you are seeing?
>
> > Frank
>
> > On Mon, Dec 19, 2011 at 7:55 AM, David Goodenough <
>
I have a pair of SanDisk 8GB microSD mobile ultra cards that work well
for me with the BeagleBone and Debian 6. My Flashbench results and
part number info for them:
http://lists.linaro.org/pipermail/flashbench-results/2011-December/000240.html
A quick script to do partitioning (and blow away everything and align
partitions to 8MiB bounds), assuming your SD card reader shows up as /
dev/sdX (it will prevent you from using /dev/sda since that's probably
your host hard disk ;):
#!/bin/sh
if [ ! "$1" = "/dev/sda" ] ; then
DRIVE=$1
if [ -b "$DRIVE" ] ; then
dd if=/dev/zero of=$DRIVE bs=1024 count=1024
SIZE=`fdisk -l $DRIVE | grep Disk | awk '{print $5}'`
echo DISK SIZE - $SIZE bytes
CYLINDERS=`echo $SIZE/128/32/512 | bc`
echo CYLINDERS - $CYLINDERS
{
echo 4,32,0x0C,*
echo 36,,,-
} | sfdisk -D -H 128 -S 32 -C $CYLINDERS $DRIVE
mkfs.vfat -F 32 -n "boot" ${DRIVE}1
mke2fs -j -L "rootfs" ${DRIVE}2
fi
fi
A patch such as [1] fixes it, but I use class 4 Kingston 4GB microSD
cards which work great and don't require the patch.
Regards,
Joel
On Dec 19, 8:21 am, David Goodenough
<david.goodeno...@linkchoose.co.uk> wrote:
> On Monday 19 Dec 2011, Frank Hunleth wrote:
>
>
>
>
>
>
>
>
>
> > Hi David,
>
> > I have been using a Class 10 4GB MicroSD card with the BeagleBone, and it
> > has been working fine for me. It is a Transcend TS4GUSDHC10.
>
> > What are the errors that you are seeing?
>
> > Frank
>
> > On Mon, Dec 19, 2011 at 7:55 AM, David Goodenough <
>
David
Hi All,
A fresh from the box BeagleBone is giving me this error in the SPL -
"Could not probe the EEPROM; something fundamentally wrong on the I2C bus"
followed later after the kernel boot by other I2C errors -
[ 1.140463] omap_i2c omap_i2c.1: controller timed out
[ 2.180318] omap_i2c omap_i2c.1: controller timed out
[ 3.220459] omap_i2c omap_i2c.1: controller timed out
[ 4.260318] omap_i2c omap_i2c.1: controller timed out
and an inability to talk to the PMIC via I2C
[ 4.311770] omap2_set_init_voltage: unable to get clk dpll1_ck
[ 4.317926] omap2_set_init_voltage: unable to set vdd_mpu_iva
[ 4.324037] omap2_set_init_voltage: unable to get clk l3_ick
[ 4.330003] omap2_set_init_voltage: unable to set vdd_core
Is this normal or do I have a hardware problem?
Thanks
Dave.R.
Thanks
Dave.R.