久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<tfoot id='S3Ywd'></tfoot>
    <bdo id='S3Ywd'></bdo><ul id='S3Ywd'></ul>
<i id='S3Ywd'><tr id='S3Ywd'><dt id='S3Ywd'><q id='S3Ywd'><span id='S3Ywd'><b id='S3Ywd'><form id='S3Ywd'><ins id='S3Ywd'></ins><ul id='S3Ywd'></ul><sub id='S3Ywd'></sub></form><legend id='S3Ywd'></legend><bdo id='S3Ywd'><pre id='S3Ywd'><center id='S3Ywd'></center></pre></bdo></b><th id='S3Ywd'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='S3Ywd'><tfoot id='S3Ywd'></tfoot><dl id='S3Ywd'><fieldset id='S3Ywd'></fieldset></dl></div>

<small id='S3Ywd'></small><noframes id='S3Ywd'>

    1. <legend id='S3Ywd'><style id='S3Ywd'><dir id='S3Ywd'><q id='S3Ywd'></q></dir></style></legend>

      1. 如何編譯 Android AOSP 內核并使用 Android Emulator 對其

        How to compile the Android AOSP kernel and test it with the Android Emulator?(如何編譯 Android AOSP 內核并使用 Android Emulator 對其進行測試?)

          <i id='fFmS6'><tr id='fFmS6'><dt id='fFmS6'><q id='fFmS6'><span id='fFmS6'><b id='fFmS6'><form id='fFmS6'><ins id='fFmS6'></ins><ul id='fFmS6'></ul><sub id='fFmS6'></sub></form><legend id='fFmS6'></legend><bdo id='fFmS6'><pre id='fFmS6'><center id='fFmS6'></center></pre></bdo></b><th id='fFmS6'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='fFmS6'><tfoot id='fFmS6'></tfoot><dl id='fFmS6'><fieldset id='fFmS6'></fieldset></dl></div>
              <tbody id='fFmS6'></tbody>
              <tfoot id='fFmS6'></tfoot>

                • <bdo id='fFmS6'></bdo><ul id='fFmS6'></ul>
                • <small id='fFmS6'></small><noframes id='fFmS6'>

                • <legend id='fFmS6'><style id='fFmS6'><dir id='fFmS6'><q id='fFmS6'></q></dir></style></legend>
                • 本文介紹了如何編譯 Android AOSP 內核并使用 Android Emulator 對其進行測試?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  有沒有人成功編譯安卓內核并在安卓模擬器中測試過,如果有,有什么特別需要做的嗎?

                  Has anyone successfully compiled the android kernel and tested it in the Android emulator, and if so is there anything that special that needs to be done?

                  SDK 的文檔非常好,但是我很難找到編譯內核和在模擬器中設置自定義機器的文檔.

                  Documentation for the SDK is excellent, however documentation for compiling the kernel and setting up a custom machine in the emulator has been hard for me to find.

                  推薦答案

                  自 2009 年 8 月起,當您按照說明下載 android 開源項目的源代碼時,內核不再是標準 repo 清單的一部分.在模擬器上成功下載、構建和運行特定內核所需的步驟如下:

                  Since August 2009 the kernel is no longer part of the standard repo manifest that you get when you follow the instructions to download the source code for the android open source project. The steps that are needed to successfully download, build and run a specific kernel on the emulator are as follows:

                  • 通過將 Android 內核添加到您的存儲庫清單或通過運行手動獲取 Android 內核:
                    git clone https://android.googlesource.com/kernel/goldfish.git
                  • 查看使用模擬器的正確分支,即金魚:
                    git checkout -t origin/android-goldfish-2.6.29 -b goldfish
                  • 生成模擬器配置(qemu模擬器運行arm代碼,即arm配置):
                    制作 ARCH=arm goldfish_defconfig
                    • 如果這不起作用,請嘗試 make ARCH=arm goldfish_armv7_defconfig

                    請注意,我在上述說明中使用了默認路徑,您需要將它們更改為適用于您的設置的路徑.自從我上次測試以來已經有一段時間了,但我認為它應該可以工作.

                    Note that I have used the default paths in the above description, you need to change them to what applies to your setup. It has been a some time since last time I tested this but I think it should work.

                    一些額外的信息:在標準的 Android 開源分發中,內核作為預構建的二進制文件分發在 mydroid/prebuilt/android-arm/kernel 文件夾中,并且不包含源代碼.我認為內核源代碼已從默認清單中刪除,原因有兩個.一個是大多數人不會使用的平臺組件需要大量帶寬和磁盤空間.另一個原因是,由于內核是使用內核構建系統構建的,而不是作為 aosp 構建系統的一部分,因此將其分開是有意義的.內核的公共分支是模擬器使用的分支.還有experimental、msm(Qualcomm 平臺)和Omap(TI 平臺)等分支.如果您想將 Android 內核與硬件一起使用,您可能會更感興趣.

                    Some extra information: In the standard Android open source distribution the kernel is distributed as a pre-built binary in the mydroid/prebuilt/android-arm/kernel folder and the source code is not included. The kernel source was removed from the default manifest for two reasons as I take it. One is that it takes a lot of bandwith and diskspace for a platform component that most people will not work with much. The other reason is that since the kernel is built with the kernel build system and not as part of the aosp build system it makes sense to keep it separated. The common branch for the kernel is the one used by the emulator. There are also branches for experimental, msm (Qualcomm platforms) and Omap (TI platform) and maybe some more. If you want to use the Android kernel with hardware these may be more interesting to you.

                    這篇關于如何編譯 Android AOSP 內核并使用 Android Emulator 對其進行測試?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                    【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Get user#39;s current location using GPS(使用 GPS 獲取用戶的當前位置)
                  IllegalArgumentException thrown by requestLocationUpdate()(requestLocationUpdate() 拋出的 IllegalArgumentException)
                  How reliable is LocationManager#39;s getLastKnownLocation and how often is it updated?(LocationManager 的 getLastKnownLocation 有多可靠,多久更新一次?)
                  How to detect Location Provider ? GPS or Network Provider(如何檢測位置提供者?GPS 或網絡提供商)
                  Get current location during app launch(在應用啟動期間獲取當前位置)
                  locationManager.getLastKnownLocation() return null(locationManager.getLastKnownLocation() 返回 null)

                  <legend id='7Quaa'><style id='7Quaa'><dir id='7Quaa'><q id='7Quaa'></q></dir></style></legend>

                    <tfoot id='7Quaa'></tfoot>
                      <bdo id='7Quaa'></bdo><ul id='7Quaa'></ul>

                      <i id='7Quaa'><tr id='7Quaa'><dt id='7Quaa'><q id='7Quaa'><span id='7Quaa'><b id='7Quaa'><form id='7Quaa'><ins id='7Quaa'></ins><ul id='7Quaa'></ul><sub id='7Quaa'></sub></form><legend id='7Quaa'></legend><bdo id='7Quaa'><pre id='7Quaa'><center id='7Quaa'></center></pre></bdo></b><th id='7Quaa'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='7Quaa'><tfoot id='7Quaa'></tfoot><dl id='7Quaa'><fieldset id='7Quaa'></fieldset></dl></div>

                            <small id='7Quaa'></small><noframes id='7Quaa'>

                              <tbody id='7Quaa'></tbody>
                            主站蜘蛛池模板: 亚洲成人综合网站 | 国产亚洲精品综合一区 | 成人片免费看 | 午夜天堂精品久久久久 | 第四色狠狠 | 久久69精品久久久久久久电影好 | 国产精品久久久久久久久动漫 | 国产精品99久久久久久久久久久久 | 日韩一区二区三区在线观看视频 | 精品国产乱码久久久久久老虎 | 一区二区视频 | 欧美簧片 | 91精品国产91久久久久久最新 | 在线一区二区三区 | 超级乱淫av片免费播放 | 亚洲一区二区三区视频 | 国产在线a | 国产精品久久久久久二区 | 国产精品激情在线 | 国产h视频| 国产精品久久久久久久午夜片 | 欧美手机在线 | 国产精品电影网 | 国产一区2区 | 国产精品久久久久久久粉嫩 | 成人欧美一区二区三区黑人孕妇 | 91深夜福利视频 | 亚洲成人在线免费 | 九九热在线免费视频 | 日韩欧美在线播放 | 精品一区二区三区在线视频 | 涩爱av一区二区三区 | 亚洲成人999| 国产线视频精品免费观看视频 | 亚洲欧美在线观看 | 欧美在线视频观看 | 欧美日韩精品一区二区三区蜜桃 | 精品日韩一区 | 国产精品中文字幕在线观看 | 亚洲一区国产 | 91视频大全 |