From 6e59d72c608251b2f8ae447d53b4cfc30ac61c76 Mon Sep 17 00:00:00 2001 From: Tang ZZ Date: Fri, 14 Aug 2026 01:26:29 +0800 Subject: [PATCH] docs(zero3/android): fix Android build manifest branch from rk11 to rk12 The lowlevel-development page instructed 'repo init -b Android11_Radxa_rk11', but the zero3 device config (rk356x_radxa_zero3) only exists in the Android11_Radxa_rk12 manifest (tag radxa-android11-rkr12.2). Users following the old instructions got 'Can not locate config makefile for product rk356x_radxa_zero3'. Fixes #1878. --- docs/zero/zero3/other-os/android/lowlevel-development.md | 2 +- .../current/zero/zero3/other-os/android/lowlevel-development.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zero/zero3/other-os/android/lowlevel-development.md b/docs/zero/zero3/other-os/android/lowlevel-development.md index b538d7934..abd27be97 100644 --- a/docs/zero/zero3/other-os/android/lowlevel-development.md +++ b/docs/zero/zero3/other-os/android/lowlevel-development.md @@ -80,7 +80,7 @@ Repo 是 Android 开发中用于管理多个 Git 仓库的工具,它是一个P ## 代码下载 ```bash -$ repo init -u https://github.com/radxa/manifests.git -b Android11_Radxa_rk11 -m rockchip-r-release.xml +$ repo init -u https://github.com/radxa/manifests.git -b Android11_Radxa_rk12 -m rockchip-r-release.xml $ repo sync -d --no-tags -j4 ``` diff --git a/i18n/en/docusaurus-plugin-content-docs/current/zero/zero3/other-os/android/lowlevel-development.md b/i18n/en/docusaurus-plugin-content-docs/current/zero/zero3/other-os/android/lowlevel-development.md index 0c5319666..fb4ca08aa 100644 --- a/i18n/en/docusaurus-plugin-content-docs/current/zero/zero3/other-os/android/lowlevel-development.md +++ b/i18n/en/docusaurus-plugin-content-docs/current/zero/zero3/other-os/android/lowlevel-development.md @@ -73,7 +73,7 @@ Repo is a tool used in Android development to manage multiple Git repositories. ## code download ```bash -$ repo init -u https://github.com/radxa/manifests.git -b Android11_Radxa_rk11 -m rockchip-r-release.xml +$ repo init -u https://github.com/radxa/manifests.git -b Android11_Radxa_rk12 -m rockchip-r-release.xml $ repo sync -d --no-tags -j4 ```