ReferencePlatforms/mobile-imaging-android-tegra: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
** I extracted this into <tt>c:/android-tegra/usbdeview</tt> | ** I extracted this into <tt>c:/android-tegra/usbdeview</tt> | ||
== Fix the android_winusb.inf == | == Fix ADB == | ||
ADB doesn't work out of the box for the Tegras. The first two posts [http://developer.nvidia.com/tegra/forum/after-installing-froyo-adb-cant-see-device here] are very important. | |||
To allow the netbook to use ADB with the Tegras: | |||
# Create ~/.android/adb_usb.ini | |||
cd /cygdrive/c/Documents\ and\ Settings/Mozilla\ Corporation | |||
mkdir .android | |||
cd .android | |||
echo "0x955" > adb_usb.ini | |||
# Edit android_winusb.inf | |||
cd /cygdrive/c/android-tegra/android-sdk-windows/usb_driver | |||
cp android_winusb.inf android_winusb.orig | |||
Edit android_winusb.inf. For a 32 bit machine, in the <tt>[Google.NTx86]</tt> section, add the following lines: | |||
;NVIDIA Tegra | |||
%SingleAdbInterface% = USB_Install, USB\VID_0955&PID_7000 | |||
%CompositeAdbInterface% = USB_Install, USB\VID_0955&PID_7100&MI_01 | |||
== Create shortcuts == | == Create shortcuts == |
Revision as of 23:26, 16 November 2010
Set up Windows 7 imaging netbook for Android 2.2 Tegra 250
Basic first install steps
- Log in as an administrator.
- Install Cygwin (Choose full install).
- Create a base directory. I chose c:/android-tegra
- Download the Android SDK zip.
- I extracted this into c:/android-tegra/android-sdk-windows
- Download the Tegra 250 Support pack installer. The PDF is helpful; you need the MSI.
- I installed this into c:/android-tegra/android_tegra_250_FroyoOV5650
- Install USBDeview (search CNet for a newer or 64 bit version if necessary).
- I extracted this into c:/android-tegra/usbdeview
Fix ADB
ADB doesn't work out of the box for the Tegras. The first two posts here are very important.
To allow the netbook to use ADB with the Tegras:
# Create ~/.android/adb_usb.ini cd /cygdrive/c/Documents\ and\ Settings/Mozilla\ Corporation mkdir .android cd .android echo "0x955" > adb_usb.ini # Edit android_winusb.inf cd /cygdrive/c/android-tegra/android-sdk-windows/usb_driver cp android_winusb.inf android_winusb.orig
Edit android_winusb.inf. For a 32 bit machine, in the [Google.NTx86] section, add the following lines:
;NVIDIA Tegra %SingleAdbInterface% = USB_Install, USB\VID_0955&PID_7000 %CompositeAdbInterface% = USB_Install, USB\VID_0955&PID_7100&MI_01