-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
43 lines (32 loc) · 1.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Setup build envoronment
https://source.android.com/setup/build/initializing
$ sudo apt install libssl-dev python3-setuptools
# Download Android source
https://github.com/android-rpi/local_manifests
# Build Android
Refer to http://source.android.com/source/building.html
$ source build/envsetup.sh
$ lunch rpi5-ap1a-eng
$ make ramdisk systemimage vendorimage
Use -j[n] option with make, if build host has a good number of CPU cores.
# Prepare sd card
Partitions of the card should be set-up like followings.
p1 128MB for boot : Do fdisk, set W95 FAT32(LBA) & Bootable type, mkfs.vfat
p2 1152MB for /system : Do fdisk, new primary partition
p3 128MB for /vendor : Do fdisk, new primary partition
p4 remainings for /data : Do fdisk, mkfs.ext4
Set volume label of /data partition as userdata
: use -L option for mkfs.ext4
# Write system & vendor partition
$ cd out/target/product/rpi5
$ sudo dd if=system.img of=/dev/<p2> bs=1M
$ sudo dd if=vendor.img of=/dev/<p3> bs=1M
# Copy firmware & ramdisk to boot partition
device/arpi/rpi5/boot/* to p1:/
out/target/product/rpi5/ramdisk.img to p1:/
# Download & Build kernel source
https://github.com/android-rpi/kernel_manifest
# Copy kernel binaries to boot partition
<kernel directory>/out/arpi5/dist/Image.gz to p1:/
<kernel directory>/out/arpi5/dist/bcm2712-rpi-5-b.dtb to p1:/
<kernel directory>/out/arpi5/dist/vc4-kms-v3d-pi5.dtbo to p1:/overlays/