From b04011c7753eaecacc7e16c0b47b2d410470f79b Mon Sep 17 00:00:00 2001 From: Mattijs Korpershoek Date: Wed, 18 Dec 2024 11:43:12 +0100 Subject: [PATCH] fix(android): bootloaders: Fix repo init to use release manifest Right now, we point to the bootloaders.xml file, which is the latest (developement) manifest. To be consistent with kernel build, pass the release manifest instead to the repo init command. Signed-off-by: Mattijs Korpershoek --- source/android/Foundational_Components_Bootloaders.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/android/Foundational_Components_Bootloaders.rst b/source/android/Foundational_Components_Bootloaders.rst index cfbcc91ce..d71d385c3 100644 --- a/source/android/Foundational_Components_Bootloaders.rst +++ b/source/android/Foundational_Components_Bootloaders.rst @@ -37,7 +37,7 @@ Downloading sources .. code-block:: console $ mkdir ${YOUR_PATH}/ti-bootloader-aosp/ && cd $_ - $ repo init -u https://git.ti.com/git/android/manifest.git -b android15-release -m bootloaders.xml + $ repo init -u https://git.ti.com/git/android/manifest.git -b android15-release -m releases/RLS_10_01_Bootloader.xml $ repo sync For more information about ``repo``, visit `Android's official