On Thu, Sep 12, 2013 at 7:06 AM, Gerald Coley <
ger...@beagleboard.org> wrote:
> I don't think it will fit into the eMMC. So, SD card is I believe your only
> option.
>
rootfs is about 300 MB, IIRC, so it fits.
To OP: you can boot Angstrom from the SD card, partition and format the
eMMC and the copy Android files. If you are using an SD card image as
the above, you need to unpack it end extract the files first.
You may have to modify `fstab.am335xevm' to match the device name,
but I think it ends up being /dev/block/mmcblk0 if there is not SD card.
Something like this (when booted from SD):
# mkfs.vfat -F 32 -n boot /dev/block/mmcblk1p1
# mkfs.ext4 -L rootfs /dev/block/mmcblk1p2
# mkfs.ext4 -L usrdata /dev/block/mmcblk1p3
# mkdir -p /mnt/1/
# mkdir -p /mnt/2/
# mount -t vfat /dev/block/mmcblk1p1 /mnt/1
# mount -t ext4 /dev/block/mmcblk1p2 /mnt/2
# cp MLO u-boot.img zImage uEnv.txt am335x-boneblack.dtb /mnt/1/
# tar jxvf rootfs.tar.bz2 -C /mnt/2/
# umount /mnt/1
# umount /mnt/2