Ubuntu1804 + 树莓派3b + AOSP9

原文出处:https://github.com/brobwind/pie-device-brobwind-rpi3

原文基于Ubuntu1604,在Ubuntu1804下需要把mkfs.fat 版本降低为3.0.28,否则会报错:AssertionError: Can only handle FAT with 1 reserved sector。

本人使用的是VMware虚拟机的Ubuntu1804,虚拟机分配了16G内存。

安装mkfs.fat 3.0.28

sudo apt remove dosfstools
git clone https://github.com/dosfstools/dosfstools.git
cd dosfstools/
git checkout v3.0.28
make
sudo apt install checkinstall
sudo checkinstall

 

Android 9 Pie device configuration for Raspbery Pi 3 Model B & B+

Setup build environment

The build host is x86_64 platform run ubuntu-16.04 (refer: https://source.android.com/sgyetup/build/initializing)

  1. Install JDK
$ sudo apt-get update
$ sudo apt-get install openjdk-8-jdk
  1. Install other tools
$ sudo apt-get install git-core gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z-dev libgl1-mesa-dev libxml2-utils xsltproc unzip
  1. Install repo command to download Android 9 Pie project source code
$ mkdir ~/bin
$ PATH=~/bin:$PATH
$ curl -sSL 'https://gerrit-googlesource.proxy.ustclug.org/git-repo/+/master/repo?format=TEXT' | base64 -d > ~/bin/repo
$ chmod a+x ~/bin/repo

Download source code

  1. Download The Android 9 Pie official source code The source code can download either from https://android.googlesource.com or https://lug.ustc.edu.cn/wiki/mirrors/help/aosp Run following command to download from ustc.edu.cn
$ repo init -u git://mirrors.ustc.edu.cn/aosp/platform/manifest -b android-9.0.0_r8 --repo-url=git://mirrors.ustc.edu.cn/aosp/tools/repo
  1. Download Raspbery Pi 3 device configuration files
$ mkdir -pv device/brobwind
$ git clone git://github.com/brobwind/pie-device-brobwind-rpi3 device/brobwind/rpi3
  1. Add local manifest file
$ mkdir -p .repo/local_manifests
$ ln -sv ../../device/brobwind/rpi3/local_manifest.xml .repo/local_manifests/
  1. Downloading
$ repo sync

Apply patch to Android framework

The following patch must be applyed:

diff --git a/services/core/java/com/android/server/wm/DisplayContent.java b/services/core/java/com/android/server/wm/DisplayContent.java
index cd8fdbf..6918bc3 100644
--- a/services/core/java/com/android/server/wm/DisplayContent.java
+++ b/services/core/java/com/android/server/wm/DisplayContent.java
@@ -769,7 +769,7 @@ class DisplayContent extends WindowContainer<DisplayContent.DisplayChildWindowCo
         // appropriately arbitrary number. Eventually we would like to give SurfaceFlinger
         // layers the ability to match their parent sizes and be able to skip
         // such arbitrary size settings.
-        mSurfaceSize = Math.max(mBaseDisplayHeight, mBaseDisplayWidth) * 2;
+        mSurfaceSize = (int)(Math.max(mBaseDisplayHeight, mBaseDisplayWidth) * 1.4);
 
         final SurfaceControl.Builder b = mService.makeSurfaceBuilder(mSession)
                 .setSize(mSurfaceSize, mSurfaceSize)

Configure build environment

$ . build/envsetup.sh
$ lunch rpi3-eng

Build target

$ m -j

It will take about 1 hour 32 minutes for CPU: intel I5 8500T; RAM: 8G DDR42666; HDD: 1TB

Then you will get following images in the out/target/product/rpi3 folder:

  1. rpiboot.img
  2. boot.img
  3. system.img
  4. vendor.img
  5. userdata.img

Flash images

  1. Flash images to sdcard directly

It requires sgdisk and gdisk to create GPT partition table.

$ sudo OUT=${OUT} device/brobwind/rpi3/boot/create_partition_table.sh /path/to/sdcard

After executing the command, it will also install following images to sdcard:

  • out/target/product/rpi3/rpiboot.img
  • out/target/product/rpi3/boot.img
  • out/target/product/rpi3/system.img
  • out/target/product/rpi3/vendor.img
  • device/brobwind/rpi3/boot/images/oem_bootloader_a.img
  • device/brobwind/rpi3/boot/images/zero_4k.bin
  1. Using fastboot command

Please refer to https://github.com/brobwind/pie-device-brobwind-rpi3-u-boot/blob/pie-device-brobwind-rpi3/README.md

For detail info, please refer:

  1. https://www.brobwind.com/archives/1575
  2. https://www.brobwind.com/archives/1541
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值