└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # rockchip-android-manifest 2 | 3 | This is the manifest project used to download the Tinker OS Android code base for the Tinker Board series. 4 | 5 | For more information, please go to the TinkerBoard wiki. 6 | 7 | https://github.com/TinkerBoard/TinkerBoard/wiki 8 | 9 | Please refer to the following URL to install Docker Engine on Ubuntu. 10 | 11 | https://docs.docker.com/engine/install/ubuntu/ 12 | 13 | Please refer to the following URL to install Repo. 14 | 15 | https://source.android.com/setup/develop#installing-repo 16 | 17 | Please refer to the following URL to understand how to download the code base using repo. 18 | 19 | https://source.android.com/setup/build/downloading 20 | 21 | The code base has branches for different products and manifests for different releases. 22 | 23 | To check out the latest code base for a product, please run the following command and use the branch name for that product as REVISION. 24 | 25 | $ repo init -u https://github.com/TinkerBoard-Android/rockchip-android-manifest.git -b REVISION 26 | 27 | To check out the code base for a specific release, please run the following command and use the branch name for that product as REVISION and the manifest as NAME.xml. 28 | 29 | $ repo init -u https://github.com/TinkerBoard-Android/rockchip-android-manifest.git -b REVISION -m NAME.xml 30 | 31 | Here REVISON is the manifest branch for the product and NAME.xml is the manifest file for the release. Regarding the branches and manifests for each project, please refer to the following release table. 32 | 33 | To download the code base source tree to your working directory from the repositories as specified in the default manifest, run: 34 | 35 | $ repo sync 36 | 37 | To build the image, go to to the directory where you have downloaded the code base and run the script as the following. This will take a while to install the necessary packages on the host and build the Docker image. 38 | 39 | $ ./docker_builder/docker-builder-run.sh 40 | 41 | Once the above is done, you are in the shell of the newly started Docker container. You can start to run commands as usual. You can then run the commands to build the image. The images will be saved in the directory IMAGE. 42 | 43 | ## Tinker Board 3N 44 | ### Tinker OS Android 45 | |Product|Android version|Release|Branch|Manifest|Comment| 46 | |-|-|-|-|-|-| 47 | |Tinker Board 3N|Android 12|latest|android12-rockchip|default.xml| 48 | 49 | To build the image, please run the following commands. 50 | 51 | $ source build/envsetup.sh 52 | $ lunch Tinker_Board_3N-userdebug 53 | $ ./build.sh -UCKAu 54 | 55 | |Product|Android version|Release|Branch|Manifest| 56 | |-|-|-|-|-| 57 | |Tinker Board (S)|Android N|latest|n-mr1-rk3288-tb|| 58 | |Tinker Board (S)|Android N|14.4.0.5|n-mr1-rk3288-tb|14.4.0.5.xml| 59 | |Tinker Board (S)|Android N|14.4.0.14|n-mr1-rk3288-tb|14.4.0.14.xml| 60 | |Tinker Board (S)|Android N|14.4.0.18|n-mr1-rk3288-tb|14.4.0.18.xml| 61 | |Tinker Board (S)|Android N|14.4.0.22|n-mr1-rk3288-tb|14.4.0.22.xml| 62 | |Tinker Board (S)|Android N|14.4.0.23|n-mr1-rk3288-tb|14.4.0.23.xml| 63 | |Tinker Board (S) R2.0|Android N|14.4.0.22|n-mr1-rk3288-tb|14.4.0.22.xml| 64 | |Tinker Board (S) R2.0|Android N|14.4.0.23|n-mr1-rk3288-tb|14.4.0.23.xml| 65 | |Tinker Board (S) R2.0|Android 11|latest|android11-rockchip|| 66 | |Tinker Board (S) R2.0|Android 11|1.0.0|android11-rockchip|tinker_board-android11-1.0.0.xml| 67 | |Tinker Board (S) R2.0|Android 12|latest|android12-rockchip|| 68 | |Tinker Board (S) R2.0|Android 12|0.0.3|android12-rockchip|tinker_board-android12-0.0.3.xml| 69 | |Tinker Board (S) R2.0|Android 12|0.0.5|android12-rockchip|tinker_board-android12-0.0.5.xml| 70 | |Tinker Edge R|Android P|latest|p-rk3399pro|| 71 | |Tinker Edge R|Android P|1.0.1|p-rk3399pro|tinker_edge_r-android9-1.0.1.xml| 72 | |Tinker Edge R|Android P|1.0.2|p-rk3399pro|tinker_edge_r-android9-1.0.2.xml| 73 | |Tinker Edge R|Android P|1.0.6|p-rk3399pro|tinker_edge_r-android9-1.0.6.xml| 74 | |Tinker Board 2/2S|Android 10|latest|android10-rk3399|| 75 | |Tinker Board 2/2S|Android 10|0.0.3|android10-rk3399|tinker_board_2-android10-0.0.3.xml| 76 | |Tinker Board 2/2S|Android 10|1.0.0|android10-rk3399|tinker_board_2-android10-1.0.0.xml| 77 | |Tinker Board 2/2S|Android 11|latest|android11-rk3399|| 78 | |Tinker Board 2/2S|Android 11|2.0.1|android11-rk3399|tinker_board_2-android11-2.0.1.xml| 79 | |Tinker Board 2/2S|Android 11|2.0.3|android11-rk3399|tinker_board_2-android11-2.0.3.xml| 80 | |Tinker Board 2/2S|Android 11|latest|android11-rockchip|| 81 | |Tinker Board 2/2S|Android 11|2.0.5|android11-rockchip|tinker_board_2-android11-2.0.5.xml| 82 | |Tinker Board 2/2S|Android 11|2.0.6|android11-rockchip|tinker_board_2-android11-2.0.6.xml| 83 | |Tinker Board 2/2S|Android 11|2.0.8|android11-rockchip|tinker_board_2-android11-2.0.8.xml| 84 | --------------------------------------------------------------------------------