• Home
Name Date Size #Lines LOC

..--

overlay/frameworks/base/core/res/res/03-May-2024-10223

self-extractors/03-May-2024-447318

Android.mkD03-May-20241.1 KiB292

AndroidProducts.mkD03-May-2024653 181

BoardConfig.mkD03-May-20241.7 KiB5722

CleanSpec.mkD03-May-20242.3 KiB512

READMED03-May-20241.9 KiB7251

bootloader.binD03-May-2024159.1 KiB

device.mkD03-May-20242 KiB5831

egl.cfgD03-May-202434 22

extract-files.shD03-May-20245.6 KiB10068

full_panda.mkD03-May-20241.5 KiB4516

init.omap4pandaboard.rcD03-May-20241.3 KiB4032

init.omap4pandaboard.usb.rcD03-May-2024314 76

kernelD03-May-20243 MiB

media_profiles.xmlD03-May-20247.5 KiB204148

recovery.fstabD03-May-2024339 119

setup-makefiles.shD03-May-20242.4 KiB5936

ueventd.omap4pandaboard.rcD03-May-20240

unzip-files.shD03-May-20245.7 KiB10068

usbbootD03-May-202443.1 KiB

vendorsetup.shD03-May-2024636 181

xloader.binD03-May-202421.2 KiB

README

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