Difference between revisions of "Android Tutorials Unbox to App"
From eLinux.org
| Line 24: | Line 24: | ||
|- | |- | ||
|[[File:Android-build.png|400px]] | |[[File:Android-build.png|400px]] | ||
| − | | | + | |Download a release from android-build.linaro.org. |
|- | |- | ||
|[[File:Android-build-staging-10.png|400px]] | |[[File:Android-build-staging-10.png|400px]] | ||
| − | | | + | |The build page contains all the information necessary to program the build on an SD card. The following commands can be used to get and program a build. |
| + | |||
| + | wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/boot.tar.bz2 | ||
| + | wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/system.tar.bz2 | ||
| + | wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/userdata.tar.bz2 | ||
| + | bzr branch lp:linaro-image-tools | ||
| + | ./linaro-image-tools/linaro-android-media-create --mmc /dev/sdc --dev panda --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2 | ||
| + | |||
| + | A serial console thats logged to a file can be started to record boot: | ||
| + | |||
| + | minicom -D /dev/ttyUSB0 -w -C minicom.txt | ||
| + | |||
|- | |- | ||
|[[File:Android-build-staging-bottom.png|400px]] | |[[File:Android-build-staging-bottom.png|400px]] | ||
| − | | | + | |At the bottom of the build page is the build artifacts referenced in the instructions listed above. |
| + | |- | ||
| + | |[[File:Panda Full Set Up.jpg|400px]] | ||
| + | |Everything running. | ||
|- | |- | ||
|[[File:Panda ADB Cable.jpg|400px]] | |[[File:Panda ADB Cable.jpg|400px]] | ||
| Line 37: | Line 51: | ||
|[[File:ADB USB Board Connection.jpg|400px]] | |[[File:ADB USB Board Connection.jpg|400px]] | ||
|Connect the Mini-B plug. | |Connect the Mini-B plug. | ||
| − | |||
| − | |||
| − | |||
|- | |- | ||
|[[File:Android com.png|400px]] | |[[File:Android com.png|400px]] | ||
| Line 45: | Line 56: | ||
|- | |- | ||
|[[File:Android Ubuntu Linux Notes.png|400px]] | |[[File:Android Ubuntu Linux Notes.png|400px]] | ||
| − | | | + | |Check out the http://developer.android.com/sdk/installing.html for steps to install the SDK. |
|- | |- | ||
|[[File:Install android tools.png|400px]] | |[[File:Install android tools.png|400px]] | ||
| − | | | + | |Install android's SDK |
|- | |- | ||
|[[File:Disable suspend.png|400px]] | |[[File:Disable suspend.png|400px]] | ||
| − | | | + | |Open Disable Suspend. |
|} | |} | ||
Revision as of 08:41, 28 October 2011
* HDMI 1080p monitor * USB keyboard and mouse * 5V, 2A Power Supply * HDMI Cable * Monitor Power Supply | |
| A close up of the power supply. | |
| Unpack the Panda Board and connect the HDMI cable and the USB keyboard and mouse. | |
| Optionally connect a serial-to-USB converter. | |
| Connect an SD card reader | |
| Insert your SD card. | |
| Download a release from android-build.linaro.org. | |
The build page contains all the information necessary to program the build on an SD card. The following commands can be used to get and program a build.
wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/boot.tar.bz2 wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/system.tar.bz2 wget --no-check-certificate https://android-build.linaro.org/jenkins/job/linaro-android_staging-panda-11.10-release/4/artifact/build/out/target/product/pandaboard/userdata.tar.bz2 bzr branch lp:linaro-image-tools ./linaro-image-tools/linaro-android-media-create --mmc /dev/sdc --dev panda --system system.tar.bz2 --userdata userdata.tar.bz2 --boot boot.tar.bz2 A serial console thats logged to a file can be started to record boot: minicom -D /dev/ttyUSB0 -w -C minicom.txt | |
| At the bottom of the build page is the build artifacts referenced in the instructions listed above. | |
| Everything running. | |
| Panda uses a Mini-B plug for ADB | |
| Connect the Mini-B plug. | |
| Go to android.com and click on Developers. | |
| Check out the http://developer.android.com/sdk/installing.html for steps to install the SDK. | |
| Install android's SDK | |
| Open Disable Suspend. |