Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Detailed procedure:

The full Android repo can be divided in two blocks:

  • AOSP: repositories downloaded directly from Google

  • SECO: repositories downloaded from our servers

While AOSP is freely downloadable, SECO part is shared only via 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 "<https://git.seco.com/arm/rockchip/release/android/android_11.0.0/"]>
  username = <username>
  helper = cache --timeout=86400

Thanks to this, username is never requested, and password is requested only once, and cached for future use up to the declared timeout.

  • Init and download Android 11 repository:

    • mkdir ANDROID_11

    • cd ANDROID_11

    • repo init -u ssh://git@git.seco.com/arm/rockchip/release/android_11.0.0/manifest.git

    • repo sync -j 20

...