├── README └── default.xml /README: -------------------------------------------------------------------------------- 1 | # Download Kernel source 2 | Refer to https://source.android.com/setup/build/building-kernels 3 | 4 | Make separate kernel directory apart from Android source. 5 | 6 | $ cd 7 | $ repo init -u https://github.com/android-rpi/kernel_manifest -b arpi14-6.1 8 | $ repo sync 9 | 10 | # Build Kernel 11 | $ tools/bazel run --config=release //common:arpi5_dist 12 | 13 | Output files are under out/arpi5/dist/ 14 | Image.gz 15 | bcm2712-rpi-5-b.dtb 16 | vc4-kms-v3d-pi5.dtbo 17 | 18 | # Build Android for Raspberry Pi 5 19 | https://github.com/android-rpi/device_arpi_rpi5 20 | -------------------------------------------------------------------------------- /default.xml: -------------------------------------------------------------------------------- 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 | --------------------------------------------------------------------------------