Jean-Baptiste Queru | 4c07af9 | 2011-06-22 16:41:01 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | Copyright 2010 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | # Known Issues # |
| 18 | |
| 19 | Even with our best care, small problems sometimes slip in. This page keeps |
| 20 | track of the known issues around using the Android source code. |
| 21 | |
Jean-Baptiste Queru | dc6e9ca | 2012-01-05 08:06:08 -0800 | [diff] [blame] | 22 | ## Missing CTS Native XML Generator ## |
| 23 | |
| 24 | **Symptom**: On some builds of IceCreamSandwich and later, the following |
| 25 | warning is printed early during the build: |
| 26 | `/bin/bash: line 0: cd: cts/tools/cts-native-xml-generator/src/res: No |
| 27 | such file or directory` |
| 28 | |
| 29 | **Cause**: Some makefile references that path, which doesn't exist. |
| 30 | |
| 31 | **Fix**: None. This is a harmless warning. |
| 32 | |
Jean-Baptiste Queru | 4c07af9 | 2011-06-22 16:41:01 -0700 | [diff] [blame] | 33 | ## Black Gingerbread Emulator ## |
| 34 | |
| 35 | **Symptom**: The emulator built directly from the gingerbread branch |
| 36 | doesn't start and stays stuck on a black screen. |
| 37 | |
| 38 | **Cause**: The gingerbread branch uses version R7 of the emulator, |
| 39 | which doesn't have all the features necessary to run recent versions |
| 40 | of gingerbread. |
| 41 | |
| 42 | **Fix**: Use version R12 of the emulator, and a newer kernel that matches |
| 43 | those tools. No need to do a clean build. |
| 44 | |
| 45 | $ repo forall external/qemu -c git checkout aosp/tools_r12 |
| 46 | $ make |
| 47 | $ emulator -kernel prebuilt/android-arm/kernel/kernel-qemu-armv7 |