
Android 10 brings a lot of new requirements for bootloaders: [1]. This patch series attempts to implement such a boot process on BeagleBoard X15 platform. Some common code is added too, which can be reused later for other platforms.
[1] https://source.android.com/devices/bootloader
Sam Protsenko (7): image: android: Add functions for handling dtb field image: android: Add routine to get dtbo params cmd: bootimg: Add bootimg command configs: am57xx_evm: Enable Android commands env: ti: boot: Respect slot_suffix in AVB commands env: ti: boot: Boot Android with dynamic partitions arm: ti: boot: Use correct dtb and dtbo on Android boot
cmd/Kconfig | 8 + cmd/Makefile | 1 + cmd/bootimg.c | 177 ++++++++++++++++++++ common/Makefile | 2 +- common/image-android.c | 245 ++++++++++++++++++++++++++++ configs/am57xx_evm_defconfig | 8 +- configs/am57xx_hs_evm_defconfig | 6 + configs/am57xx_hs_evm_usb_defconfig | 8 +- include/configs/ti_armv7_common.h | 7 + include/environment/ti/boot.h | 145 ++++++++-------- include/image.h | 7 + 11 files changed, 546 insertions(+), 68 deletions(-) create mode 100644 cmd/bootimg.c