Home | History | Annotate | Download | only in source
      1 page.title=Building for devices
      2 @jd:body
      3 
      4 <!--
      5     Copyright 2010 The Android Open Source Project
      6 
      7     Licensed under the Apache License, Version 2.0 (the "License");
      8     you may not use this file except in compliance with the License.
      9     You may obtain a copy of the License at
     10 
     11         http://www.apache.org/licenses/LICENSE-2.0
     12 
     13     Unless required by applicable law or agreed to in writing, software
     14     distributed under the License is distributed on an "AS IS" BASIS,
     15     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     16     See the License for the specific language governing permissions and
     17     limitations under the License.
     18 -->
     19 <div id="qv-wrapper">
     20   <div id="qv">
     21     <h2>In this document</h2>
     22     <ol id="auto-toc">
     23     </ol>
     24   </div>
     25 </div>
     26 
     27 <p>This page complements the main page about
     28 <a href="building-running.html">Building and Running</a> with
     29 information that is specific to individual devices.</p>
     30 
     31 <p>With the current release, it is possible to build for
     32 Nexus 4, Nexus 7, and for some variants of Galaxy Nexus.
     33 The exact level of functionality for each device depends on the availability
     34 of the relevant proprietary hardware-specific binaries.</p>
     35 <p>For Nexus 4 and Nexus 7, all configurations can be used,
     36 and all the hardware is functional.
     37 Due to hardware differences, do not use 4.1.1 on a Nexus 7 that
     38 was originally sold with 4.1.2 or newer.</p>
     39 <p>All configurations of Nexus 10 "manta" can be used with 4.2.2.
     40 On those devices, graphics, audio,
     41 Wi-Fi, Bluetooth, camera, NFC, GPS and orientation sensors are functional.</p>
     42 <p>The variants of Galaxy Nexus that can be used are the GSM/HSPA+ configuration
     43 "maguro" (only if it was originally sold with a "yakju" or "takju" operating
     44 system) and the VZW CDMA/LTE configuration "toro". On those devices, graphics
     45 and audio are functional, as well as Wi-Fi, Bluetooth, and access to the
     46 respective cellular networks. NFC and the orientation sensors are functional.</p>
     47 <p>The Sprint CDMA/LTE configuration "toroplus" of Galaxy Nexus is supported
     48 experimentally, in the jb-mr1-dev-plus-aosp branch. On that configuration,
     49 the cellular network is not functional,
     50 and the other peripherals work like they do on "toro".</p>
     51 <p>The Motorola Xoom can be used in the Wi-Fi configuration "wingray"
     52 sold in the USA, with Android 4.1.2. Graphics and audio are functional
     53 as well as Wi-Fi and Bluetooth and the orientation sensors.</p>
     54 <p>All configurations of Nexus S and Nexus S 4G can be used with Android 4.1.2.
     55 On those devices all the hardware is functional.</p>
     56 <p>In addition, <a href="http://pandaboard.org">PandaBoard</a> a.k.a. "panda" can be used
     57 in the jb-mr1-dev-plus-aosp branch, but is considered experimental.
     58 The specific details to use a PandaBoard with the Android Open-Source Project
     59 are in the file <code>device/ti/panda/README</code> in the source tree.</p>
     60 
     61 <h2 id="building-fastboot-and-adb">Building fastboot and adb</h2>
     62 <p>If you don't already have those tools, fastboot and adb can be built with
     63 the regular build system. Follow the instructions on the page about
     64 <a href="building-running.html">Building and Running</a>, and replace the main <code>make</code> command with</p>
     65 <pre><code>$ make fastboot adb
     66 </code></pre>
     67 <h2 id="booting-into-fastboot-mode">Booting into fastboot mode</h2>
     68 <p>During a cold boot, the following key combinations can be used to boot into fastboot mode,
     69 which is a mode in the bootloader that can be used to flash the devices:</p>
     70 <table>
     71 <thead>
     72 <tr>
     73 <th>Device</th>
     74 <th>Keys</th>
     75 </tr>
     76 </thead>
     77 <tbody>
     78 <tr>
     79 <td>flo</td>
     80 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
     81 </tr>
     82 <tr>
     83 <td>deb</td>
     84 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
     85 </tr>
     86 <tr>
     87 <td>manta</td>
     88 <td>Press and hold both <em>Volume Up</em> and <em>Volume Down</em>, then press and hold <em>Power</em></td>
     89 </tr>
     90 <tr>
     91 <td>mako</td>
     92 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
     93 </tr>
     94 <tr>
     95 <td>grouper</td>
     96 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
     97 </tr>
     98 <tr>
     99 <td>tilapia</td>
    100 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
    101 </tr>
    102 <tr>
    103 <td>phantasm</td>
    104 <td>Power the device, cover it with one hand after the LEDs light up and until they turn red</td>
    105 </tr>
    106 <tr>
    107 <td>maguro</td>
    108 <td>Press and hold both <em>Volume Up</em> and <em>Volume Down</em>, then press and hold <em>Power</em></td>
    109 </tr>
    110 <tr>
    111 <td>toro</td>
    112 <td>Press and hold both <em>Volume Up</em> and <em>Volume Down</em>, then press and hold <em>Power</em></td>
    113 </tr>
    114 <tr>
    115 <td>toroplus</td>
    116 <td>Press and hold both <em>Volume Up</em> and <em>Volume Down</em>, then press and hold <em>Power</em></td>
    117 </tr>
    118 <tr>
    119 <td>panda</td>
    120 <td>Press and hold <em>Input</em>, then press <em>Power</em></td>
    121 </tr>
    122 <tr>
    123 <td>wingray</td>
    124 <td>Press and hold <em>Volume Down</em>, then press and hold <em>Power</em></td>
    125 </tr>
    126 <tr>
    127 <td>crespo</td>
    128 <td>Press and hold <em>Volume Up</em>, then press and hold <em>Power</em></td>
    129 </tr>
    130 <tr>
    131 <td>crespo4g</td>
    132 <td>Press and hold <em>Volume Up</em>, then press and hold <em>Power</em></td>
    133 </tr>
    134 </tbody>
    135 </table>
    136 <p>Also, the command <code>adb reboot bootloader</code> can be used to reboot from
    137 Android directly into the bootloader with no key combinations.</p>
    138 <h2 id="unlocking-the-bootloader">Unlocking the bootloader</h2>
    139 <p>It's only possible to flash a custom system if the bootloader allows it.</p>
    140 <p>The bootloader is locked by default. With the device in fastboot mode, the
    141 bootloader is unlocked with</p>
    142 <pre><code>$ fastboot oem unlock
    143 </code></pre>
    144 <p>The procedure must be confirmed on-screen, and deletes the user data for
    145 privacy reasons. It only needs to be run once.</p>
    146 <p>All data on the phone is erased, i.e. both the applications' private data
    147 and the shared data that is accessible over USB, including photos and
    148 movies. Be sure to make a backup of any precious files you have before
    149 unlocking the bootloader.</p>
    150 <p>On Nexus 10, after unlocking the bootloader, the internal storage is
    151 left unformatted and must be formatted with</p>
    152 <pre><code>$ fastboot format cache
    153 $ fastboot format userdata
    154 </code></pre>
    155 <p>The bootloader can be locked back with</p>
    156 <pre><code>$ fastboot oem lock
    157 </code></pre>
    158 <p>Note that this erases user data on Xoom (including the shared USB data).</p>
    159 <h2 id="obtaining-proprietary-binaries">Obtaining proprietary binaries</h2>
    160 <p>The Android Open-Source Project can't be used
    161 from pure source code only, and requires additional hardware-related proprietary
    162 libraries to run, specifically for hardware graphics acceleration.</p>
    163 <p>Official binaries for the supported devices can be downloaded from
    164 <a href="https://developers.google.com/android/nexus/drivers">Google's Nexus driver page</a>,
    165 which add access to additional hardware capabilities with non-Open-Source code.</p>
    166 <p>When building the master branch for a device, the binaries for the most
    167 recent numbered release or with the most recent date
    168 are the ones that should be used.</p>
    169 <h3 id="extracting-the-proprietary-binaries">Extracting the proprietary binaries</h3>
    170 <p>Each set of binaries comes as a self-extracting script in a compressed archive.
    171 After uncompressing each archive, run the included self-extracting script
    172 from the root of the source tree, confirm that you agree to the terms of the
    173 enclosed license agreement, and the binaries and their matching makefiles
    174 will get installed in the <code>vendor/</code> hierarchy of the source tree.</p>
    175 <h3 id="cleaning-up-when-adding-proprietary-binaries">Cleaning up when adding proprietary binaries</h3>
    176 <p>In order to make sure that the newly installed binaries are properly
    177 taken into account after being extracted, the existing output of any previous
    178 build needs to be deleted with</p>
    179 <pre><code>$ make clobber
    180 </code></pre>
    181 <h2 id="picking-and-building-the-configuration-that-matches-a-device">Picking and building the configuration that matches a device</h2>
    182 <p>The steps to configure and build the Android Open-Source Project
    183 are described in the page about <a href="building.html">Building</a>.</p>
    184 <p>The recommended builds for the various devices are available through
    185 the lunch menu, accessed when running the <code>lunch</code> command with no arguments:</p>
    186 <table>
    187 <thead>
    188 <tr>
    189 <th>Device</th>
    190 <th>Branch</th>
    191 <th>Build configuration</th>
    192 </tr>
    193 </thead>
    194 <tbody>
    195 <tr>
    196 <td>flo</td>
    197 <td>android-4.3_r2.1 or master</td>
    198 <td>aosp_flo-userdebug</td>
    199 </tr>
    200 <tr>
    201 <td>deb</td>
    202 <td>android-4.3_r2.1 or master</td>
    203 <td>aosp_deb-userdebug</td>
    204 </tr>
    205 <tr>
    206 <td>manta</td>
    207 <td>android-4.2.2_r1</td>
    208 <td>full_manta-userdebug</td>
    209 </tr>
    210 <tr>
    211 <td>mako</td>
    212 <td>android-4.3_r1 or master</td>
    213 <td>aosp_mako-userdebug</td>
    214 </tr>
    215 <tr>
    216 <td>grouper</td>
    217 <td>android-4.3_r1 or master</td>
    218 <td>aosp_grouper-userdebug</td>
    219 </tr>
    220 <tr>
    221 <td>tilapia</td>
    222 <td>android-4.3_r1 or master</td>
    223 <td>aosp_tilapia-userdebug</td>
    224 </tr>
    225 <tr>
    226 <td>maguro</td>
    227 <td>android-4.3_r1 or master</td>
    228 <td>aosp_maguro-userdebug</td>
    229 </tr>
    230 <tr>
    231 <td>toro</td>
    232 <td>android-4.3_r1 or master</td>
    233 <td>aosp_toro-userdebug</td>
    234 </tr>
    235 <tr>
    236 <td>toroplus</td>
    237 <td>master</td>
    238 <td>aosp_toroplus-userdebug</td>
    239 </tr>
    240 <tr>
    241 <td>panda</td>
    242 <td>master</td>
    243 <td>aosp_panda-userdebug</td>
    244 </tr>
    245 <tr>
    246 <td>wingray</td>
    247 <td>android-4.1.2_r1</td>
    248 <td>full_wingray-userdebug</td>
    249 </tr>
    250 <tr>
    251 <td>crespo</td>
    252 <td>android-4.1.2_r1</td>
    253 <td>full_crespo-userdebug</td>
    254 </tr>
    255 <tr>
    256 <td>crespo4g</td>
    257 <td>android-4.1.2_r1</td>
    258 <td>full_crespo4g-userdebug</td>
    259 </tr>
    260 </tbody>
    261 </table>
    262 <p>Do not use 4.1.1 on a Nexus 7 that was originally sold with 4.1.2
    263 or newer.</p>
    264 <h2 id="flashing-a-device">Flashing a device</h2>
    265 <p>Set the device in fastboot mode if necessary (see above).</p>
    266 <p>An entire Android system can be flashed in a single command: this writes
    267 the boot, recovery and system partitions together after verifying that the
    268 system being flashed is compatible with the installed bootloader and radio,
    269 and reboots the system. This also erases all the user data, similarly to
    270 <code>fastboot oem unlock</code> mentioned earlier.</p>
    271 <pre><code>$ fastboot -w flashall
    272 </code></pre>
    273 <p>Note that filesystems created via fastboot on Motorola Xoom aren't working
    274 optimally, and it is strongly recommended to re-create them through recovery</p>
    275 <pre><code>$ adb reboot recovery
    276 </code></pre>
    277 <p>Once in recovery, open the menu (press Power + Volume Up), wipe the cache
    278 partition, then wipe data.</p>
    279 <h2 id="restoring-a-device-to-its-original-factory-state">Restoring a device to its original factory state</h2>
    280 <p>Factory images
    281 for Nexus 10,
    282 for Nexus 4,
    283 for Nexus Q,
    284 for Nexus 7,
    285 for Galaxy Nexus (GSM/HSPA+ "yakju" and "takju",
    286 and CDMA/LTE "mysid" and "mysidspr"),
    287 and
    288 for Nexus S and Nexus S 4G
    289 are available from
    290 <a href="https://developers.google.com/android/nexus/images">Google's factory image page</a>.</p>
    291 <p>Factory images for the Motorola Xoom are distributed directly by Motorola.</p>
    292