...
While AOSP is freely downloadable, SECO part is shared only via access token (i.e. username and password). Therefore, for every GIT repository downloaded from git.seco.com, username and password should be inserted. Consider to speed up the procedure, adding the following section in ~/.gitconfig
Code Block |
---|
[credential "<httpshttps://git.seco.com/arm/rockchip/release/android/android_11.0.0/"] username = <username> helper = cache --timeout=86400 |
...
Init and download Android 11 repository:
mkdir ANDROID_11
cd ANDROID_11
repo init -u sshhttps://git@gitgit.seco.com/arm/rockchip/release/android/android_11.0.0/manifest.git
repo sync -j 20
...