Registered User mNo edit summary Tag: 2017 source edit |
Registered User mNo edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 10: | Line 10: | ||
The environment must be installed using the Distribution Package adapted to your microprocessor device. | The environment must be installed using the Distribution Package adapted to your microprocessor device. | ||
In addition follow the [[PC prerequisites]] dedicated to Android to make sure all the packages required to use the environment are | In addition, follow the [[PC prerequisites]] dedicated to Android to make sure all the packages required to use the environment are available. | ||
== Build == | == Build == | ||
Line 26: | Line 26: | ||
If | If it is the first time you set up an environment to build Android, continue to read this article. Otherwise, go directly to [[#Choosing a build target | Choosing a build target]]. | ||
=== Choosing a build target === | === Choosing a build target === | ||
Line 41: | Line 41: | ||
=== Platform setup === | === Platform setup === | ||
Execute this {{HighlightParam|<STM32Series>}} setup '''only once''', | Execute this {{HighlightParam|<STM32Series>}} setup '''only once.''' For example, for STM32MP2 series: | ||
{{PC$}}stm32mp2setup | {{PC$}}stm32mp2setup | ||
Line 71: | Line 71: | ||
<noinclude> | <noinclude> | ||
{{PublicationRequestId | | {{PublicationRequestId | 33631 | 2025-01-13 | }} | ||
[[Category:How to Android]] | [[Category:How to Android]] | ||
[[Category:Android]] | [[Category:Android]] | ||
</noinclude> | </noinclude> |
Latest revision as of 12:59, 17 March 2025
Template:FlowCompatibility/Android This article explains how to build the OpenSTDroid distribution. It is intended for Distribution Package users.
1. Prerequisites[edit | edit source]
The environment must be installed using the Distribution Package adapted to your microprocessor device.
In addition, follow the PC prerequisites dedicated to Android to make sure all the packages required to use the environment are available.
2. Build[edit | edit source]
First execute the following command:
source ./build/envsetup.sh
It sets several required environment variables for the build and adds several useful scripts in your path. It is mandatory to start with this command as soon as you are using a new terminal.
Use the command below to list some interested aliases created by envsetup.sh
:
hmm
If it is the first time you set up an environment to build Android, continue to read this article. Otherwise, go directly to Choosing a build target.
2.1. Choosing a build target[edit | edit source]
To choose your target device, execute the command below:
<BoardId>-<build_type>lunch aosp_
The available build_type
values are the following:
user
: to generate an end-user production image;userdebug
: similar to anuser
build but with root access and debug capabilities;eng
: development configuration with additional debugging tools.
2.2. Platform setup[edit | edit source]
Execute this <STM32Series> setup only once. For example, for STM32MP2 series:
stm32mp2setup
It applies specific patches related to your <STM32Series> to customize Android and load the necessary libraries and modules.
![]() |
The stm32mp2setup instruction needs to be run only once for the distribution
|
2.3. Customizing the distribution[edit | edit source]
To customize the distribution, refer to How to customize OpenSTDroid distribution page.
2.4. Generating the image[edit | edit source]
![]() |
In case you selected |
You are now ready to build. To do this, just launch the command:
make -j
Depending on your computer settings, several hours might be required to execute this command on the first build.
The result can be found in the out
folder. The generated partition images are located in out/target/product/<BoardId>
.
To flash images, refer to How to populate boards for Android page.