1Running Android on pandaboard: 2 3This assumes that you have all the proper drivers. For Googlers working in 4Google's full internal tree (i.e. with vendor/ti/proprietary and related projects) 5or in equivalent situations, this is done automatically. Other situations TBD. 6 7Board setup: 8Power supply 9Mini-USB to the PC 10USB keyboard and mouse 11Ethernet, on a network that supports DHCP 12HDMI-to-DVI-D on the P1 DVI-D connector 13 14# Initial setup, part 1: build fastboot 15source build/envsetup.sh 16lunch full_panda-eng 17make fastboot 18 19# Initial setup, part 2: 20# With no SD card inserted, plug USB first, then the power cord, 21# and load fastboot over USB: 22device/ti/panda/usbboot device/ti/panda/bootloader.bin 23 24# Initial setup, part 3: 25# Once in fastboot, insert and initialize an SD card (4GB or greater): 26fastboot oem format 27fastboot flash xloader device/ti/panda/xloader.bin 28fastboot flash bootloader device/ti/panda/bootloader.bin 29 30# Build and flash, part 1: Do a build 31source build/envsetup.sh 32lunch full_panda-eng 33make 34 35# Build and flash, part 2: Flash 36# Reboot into the SD card's fastboot (hold GPIO_121 and press PWRON_RESET) 37# and flash the system: 38fastboot erase cache 39fastboot flash userdata 40fastboot flashall 41 42# Post-boot setup, part 1: Set the date on the board: 43adb shell date $(date +%s) 44 45# Post-boot setup, part 2: Configure Ethernet 46adb shell dhcpcd eth0 47 48================================= 49 50KNOWN ISSUES 51 52fastboot -w doesn't work. Neither does fastboot erase userdata. They don't 53write a valid filesystem. 54 55adb reboot bootloader doesn't work. 56 57Networking is hardcoded to use 8.8.8.8 and 8.8.4.4 DNS. 58 59The connectivity manager doesn't know that the network is available. As 60a result, the browser complains that the network is down, and the download 61manager refuses to download anything. 62 63Everything camera-related crashes. 64 65Grass live wallpaper crashes. 66 67Language selection crashes. 68 69No audio. 70 71No wifi. 72