TS-4900 Android Getting started: Difference between revisions

From embeddedTS Manuals
No edit summary
No edit summary
Line 1: Line 1:
Android must be run from the eMMC.  This can be written with the [[#Production_Mechanism|USB production tool]], or from the SD card.  To use the USB drive, follow the instructions [[##Production_Mechanism|here]], and download the image and copy it to the USB drive as emmcimage.dd.bz2.
Download the Android image here:
Download the Android image here:


* [ftp://ftp.embeddedarm.com/ts-socket-macrocontrollers/ts-4900-linux/distributions/android/android-4.4.3-latest.dd.bz2 android-4.4.3-latest.dd.bz2] ([ftp://ftp.embeddedarm.com/ts-socket-macrocontrollers/ts-4900-linux/distributions/android/android-4.4.3-latest.dd.bz2.md5 md5])
* [ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7990-linux/distributions/android/ android-7.1.1-tsimx6-tiwifi-latest.dd.bz2] ([ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7990-linux/distributions/android/android-7.1.1-tsimx6-tiwifi-latest.dd.bz2.md5 md5])


To write this to an SD card you can use a Linux workstation and ddAssuming your SD card is /dev/sdc:
To load from the SD card, boot up to any Linux distribution from the SD card such as the default YoctoOnce booted here, run:
<source lang=bash>
<source lang=bash>
bzip2 -d android-4.4.3-latest.dd.bz2
wget -qO- ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7990-linux\
sudo dd if=android-4.4.3-latest.dd bs=4M of=/dev/sdc
/distributions/android/android-7.1.1-tsimx6-tiwifi-\
latest.dd.bz2 | bzcat | dd bs=4M of=/dev/mmcblk2 conv=fsync
</source>
</source>
This will write the u-boot script, kernel, fpga, and the /system/ and /data/ partitions.
 
This will download it, decompress it, and write it to the eMMC drive.  Reboot and boot into Android.

Revision as of 16:22, 31 August 2017

Android must be run from the eMMC. This can be written with the USB production tool, or from the SD card. To use the USB drive, follow the instructions here, and download the image and copy it to the USB drive as emmcimage.dd.bz2.

Download the Android image here:

To load from the SD card, boot up to any Linux distribution from the SD card such as the default Yocto. Once booted here, run:

wget -qO- ftp://ftp.embeddedarm.com/ts-arm-sbc/ts-7990-linux\
/distributions/android/android-7.1.1-tsimx6-tiwifi-\
latest.dd.bz2 | bzcat | dd bs=4M of=/dev/mmcblk2 conv=fsync

This will download it, decompress it, and write it to the eMMC drive. Reboot and boot into Android.