Last edited 3 weeks ago

MultipleTemplatesForPerformanceTests


Templates may be created in the STM32 MPU wiki pages.

A lot of information about the templates can be found in MediaWiki Help:Templates page[1], and in Wikipedia Help:Template page[2]. Therefore, this article focuses on the templates created for this wiki.

1. Golden rules for STM32 wiki[edit | edit source]

The basic principles that should be followed, are summarized here and detailed later:

Contributors:Templates
Learn what are the so-called protected templates
Take a look at the supported templates

2. Generalities[edit | edit source]

Templates are pages whose content is designed to be included (embedded) in other pages. Templates contain repetitive material that is needed in several pages: message boxes (e.g. Template:Warning), formatting (e.g. Template:Highlight), package versions (e.g. Template:CodeSource) etc.

A template page belongs to the Template namespace. All templates available in the wiki are listed here, and most of them are described below.

Templates called public are useful for any reader (message boxes, formatting...), while templates called internal only have interest for logged-in users who have writing permissions (mainly to share on wiki maintenance operations).

2.1. Creating a template[edit | edit source]

Only logged-in users who have system permissions, can create or edit templates.

A template page is created or edited in the same way an article is created or edited. The only difference is that its name is prefixed by Template:.

Additional rules for template pages:

  • Template name (e.g. "ArticleToDelete", "Warning")
    • it might be composed of several words
    • the first character of each word is in uppercase; other characters are in lowercase, excepting if the word is an abbreviation (e.g; in "STDarkGreen", "ST" stands for STMicroelectronics)
  • Templates should contain at least the chapters shown below. The "Usage" and "Basic examples" chapters might be transcluded in help pages.
<noinclude>
==Usage==
[...]

==Basic examples==
{| class="st-table"
! You type !! You get
|-
| Common usage of the template
|
|}

==More examples==
{| class="st-table"
! You type !! You get
|-
| Other usages of the template
|
|-
| Other usages of the template
|
|}

==Maintenance==
Precise here in which wiki the template must be modified.


==Code==
</noinclude>
[...]

2.2. Using a template[edit | edit source]

The most common method of template inclusion is called transclusion: the wikitext of the page that uses the template contains a reference to the template, and when that page is rendered, this reference is dynamically replaced by the content of the template. The reference is unchanged in the page wikitext. So, later changes to the template page are propagated to this page. It is the recommended method to include templates. To transclude a template whose name is <template name>, simply add the following text:

{{<template name>}}


Another method is called substitution : the reference to the template in the wikitext is replaced once and for all with the content of of the template when the page is saved. The template reference is substituted by a copy of the template content. So, later changes to the template page are not propagated to this page. To substitute a template whose name is <template name>, simply add the following text:

{{subst:<template name>}}
You type You get
Transclusion
The [[Template:Warning|Warning]] template is transcluded:<br />
{{Warning}}
If you edit this page, you will see <code>{{Warning}}</code> above

The Warning template is transcluded:

If you edit this page, you will see {{Warning}} above

Substitution
The [[Template:Warning|Warning]] template is substituted:<br />
{{subst:Warning}}
The rendering is the same as for transclusion, but if you edit this page, you will see the warning message box above instead of <code>{{Warning}}</code>

The Warning template is substituted:

The rendering is the same as for transclusion, but if you edit this page, you will see the warning message box above instead of {{Warning}}

Attempting to include a template that does not exist produces a red link: following this link is a good method to create that particular template.

2.3. Modifying a template[edit | edit source]

Some templates are common to all ST wikis. Maintenance/modification of such templates and of their associated ProtectedTemplate (when any) must be done in the WikiModel wiki. They must be approved by maintainer of all ST wikis. Then, modified and approved templates must be pushed/merged to all other wikis. Below, the list of concerned templates :


Some templates are dedicated to a particular wiki for special usage. They must be modified and reviewed in the concerned online wiki and, once approved, pushed/merged to derivated wikis.
Below, templates dedicated to stm32mpu wikis :

Some templates, dedicated to stm32mpu wikis, could be useful, after adaptations, to other wikis

Following templates are automatically created, update is not needed

2.4. Linking to a template[edit | edit source]

  • To create a link to a template, surround its full name (i.e. including the namespace) by double square brackets ([[ and ]]) :
You type You get
Linking to the "ArticleToDelete" template
This is a link to the [[Template:ArticleToDelete]].

This is a link to the Template:ArticleToDelete.

Changing the the link text
This is a link to the [[Template:ArticleToDelete|template used to request the deletion of a page]] .

This is a link to the template used to request the deletion of a page .

2.5. Parameters[edit | edit source]

Parameters might be passed to a template when it is transcluded: they allow the template to produce different contents or have different behaviors. In the template, each parameter is surrounded by three braces: {{{ and }}}. When using the template on a page, the parameter values are filled in, separated by a "pipe" character |. MediaWiki allows parameters might be passed to the template in three ways: anonymous, numbered or named.


Let's consider a template "TestTemplate" that needs 2 parameters, a <message> and a <signature>. Depending on the way the template is written, the parameters might be passed as follows:

You type Parameters received by the template
Anonymous parameters
{{TestTemplate|Here is my message|Here is my signature}}
{{{1}}} = Here is my message
{{{2}}} = Here is my signature
Numbered parameters
{{TestTemplate|2=Here is my signature|1=Here is my message}}
{{{1}}} = Here is my message
{{{2}}} = Here is my signature
Named parameters
{{TestTemplate|signature=Here is my signature|message=Here is my message}}
{{{message}}} = Here is my message
{{{signature}}} = Here is my signature

2.6. Templates and special characters[edit | edit source]

Parameters of templates must not contain the "=" and "|" characters . Therefore, these characters must be replaced by their HTML equivalent, or by special templates:

You type You get
Do not use the "=" and "|" characters in templates
{{Warning|Problem with the "=" and "|" characters in the "Warning" template}}
Instead, use their HTML equivalent in templates
{{Warning|Solution with their HTML equivalent, "&#0061;" and "&#0124;" in the "Warning" template}}
Or, use the dedicated magic words or templates
{{Warning|Solution with magic words or templates, "{{=}}" and "{{!}}" in the "Warning" template}}

However, on top of this basic rule, there are more complicated situations (e.g. inserting a table in a non-secure template) that in addition depend on whether a non-secure or secure template is used: the Templates test article lists all these situations.

3. Protected templates[edit | edit source]

Protected templates (a.k.a. secure templates) are designed so that they are evaluated only for logged-in users who have writing permissions. In other words, the reference to a protected template in a page is dynamically replaced by the content of this template at the time that page is loaded, only if the reader has signed up and has the wring permissions . Otherwise, the reference to a protected template is replaced by nothing.

Classic templates are sometimes called non-secure templates to differentiate them from the protected templates.

A protected template page belongs to the ProtectedTemplate namespace. The syntax to use a protected template is as follows:

{{#tag:secureTransclude||
src=ProtectedTemplate:<protected template name>|
params=<parameters>
}}

Where <parameters> is the list of parameters separated by "pipe" magic words {{!}}.

A protected template page must belongs to the "SecureTransclusion" category:

<noinclude>
[[category:SecureTransclusion]]
</noinclude>
You type You get (if you signed up with ST editor permissions. Else, nothing is rendered)
Protected template
{{#tag:secureTransclude||
src=ProtectedTemplate:PublicationRequestId|
params=12345 {{!}} 2019-05-09 {{!}}
}}

To ease the usage of protected templates in pages, non-secure templates are created to encapsulate the call to the protected templates.

You type You get (if you signed up with ST editor permissions. Else, nothing is rendered)
Classic template that calls the protected template
{{#tag:secureTransclude||
src=ProtectedTemplate:PublicationRequestId|
params={{{1|}}}  {{!}}  {{{2|}}} {{!}}  {{{3|}}}
}}
Page that calls the classic template
{{PublicationRequestId | 12345 | 2019-05-09}}

3.1. Protected templates and categories[edit | edit source]

Automatically assigning a page to a category through a template is often used. For example, if a page uses the ArticleToRename template, it is automatically assigned to the Candidates for renaming category.

It is not possible to achieve this automatic assignment through a protected template for a security reason.

The solution is to go through a non-secure template that makes the assignment to a category and that calls a secure template that makes the secure operations. For example, the FileSource template assigns any page that uses it, to the File source category, and calls the FileSource protected template. With this solution, any reader is able to see the list of all articles that are assigned to the category: it means that this solution is applicable if showing this list doesn’t communicate confidential information.

4. Supported templates[edit | edit source]

Most of the templates and protected templates available in the wiki are described in the next chapters.

4.1. Templates for editing[edit | edit source]

You type You get
Under construction without specific message
{{UnderConstruction}}
Under construction with specific message
{{UnderConstruction| Delivery for this distribution is being prepared}}


You type You get
Deletion requested: reason and signature supplied
{{ArticleToDelete | This is the reason for this request | ~~~~}}


You type You get
Renaming (move) requested: new name, reason and signature supplied
{{ArticleToRename | This is the new name | This is the reason for this request | ~~~~}}


4.2. Templates for formatting[edit | edit source]

You type You get
Warning without specific warning message
{{Warning}}
Warning with specific warning message
{{Warning | Please respect the order of the below actions. Just after, link is displayed to test the background color when link is displayed: [[Main Page]]}}


You type You get
Info without specific info message
{{Info}}
Info with specific Info message
{{Info | Note that the below actions are optional but recommended. Just after, link is displayed to test the background color when link is displayed: [[Main Page]]}}


You type You get
Android without specific message
{{Android}}
Android with specific message
{{Android | Note that the following packages are required to build an environment for Android™}}


You type You get
Highlighting important information
The commands only apply {{Highlight|for versions up to x.y}}, and it is {{Highlight|mandatory}} to execute them

The commands only apply for versions up to x.y, and it is mandatory to execute them


You type You get
Highlighting parameter, value or option
To change the current console {{HighlightParam|<loglevel>}}, simply write to this file:
 {{Board$}} echo {{HighlightParam|<loglevel>}} > /proc/sys/kernel/printk

To change the current console <loglevel>, simply write to this file:

 echo <loglevel> > /proc/sys/kernel/printk


You type You get
Coloring text in dark green
This is a {{STDarkGreen|STMicroelectronics corporate color: shade of dark green: █}}

This is a STMicroelectronics corporate color: shade of dark green: █

Coloring text in 75% tint of dark green
This is a {{STDarkGreen|STMicroelectronics corporate color: 75% tint of dark green: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of dark green: █

Coloring text in 50% tint of dark green
This is a {{STDarkGreen|STMicroelectronics corporate color: 50% tint of dark green: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of dark green: █

Coloring text in 25% tint of dark green
This is a {{STDarkGreen|STMicroelectronics corporate color: 25% tint of dark green: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of dark green: █

Getting the hexadecimal code of the color
{{STDarkGreen}} is the hexadecimal code of STMicroelectronics dark green.

#04572F is the hexadecimal code of STMicroelectronics dark green.

Getting the hexadecimal code of the 75% tint of the color
{{STDarkGreen | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of dark green.

#438163 is the hexadecimal code of STMicroelectronics 75% tint of dark green.

Getting the hexadecimal code of the 50% tint of the color
{{STDarkGreen | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of dark green.

#81AB97 is the hexadecimal code of STMicroelectronics 50% tint of dark green.

Getting the hexadecimal code of the 25% tint of the color
{{STDarkGreen | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of dark green.

#BDD3C8 is the hexadecimal code of STMicroelectronics 25% tint of dark green.


You type You get
Coloring text in dark blue
This is a {{STDarkBlue|STMicroelectronics corporate color: shade of dark blue: █}}

This is a STMicroelectronics corporate color: shade of dark blue: █

Coloring text in 75% tint of dark blue
This is a {{STDarkBlue|STMicroelectronics corporate color: 75% tint of dark blue: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of dark blue: █

Coloring text in 50% tint of dark blue
This is a {{STDarkBlue|STMicroelectronics corporate color: 50% tint of dark blue: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of dark blue: █

Coloring text in 25% tint of dark blue
This is a {{STDarkBlue|STMicroelectronics corporate color: 25% tint of dark blue: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of dark blue: █

Getting the hexadecimal code of the color
{{STDarkBlue}} is the hexadecimal code of STMicroelectronics dark blue.

#03234B is the hexadecimal code of STMicroelectronics dark blue.

Getting the hexadecimal code of the 75% tint of the color
{{STDarkBlue | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of dark blue.

#425A78 is the hexadecimal code of STMicroelectronics 75% tint of dark blue.

Getting the hexadecimal code of the 50% tint of the color
{{STDarkBlue | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of dark blue.

#8191A5 is the hexadecimal code of STMicroelectronics 50% tint of dark blue.

Getting the hexadecimal code of the 25% tint of the color
{{STDarkBlue | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of dark blue.

#BDC5D0 is the hexadecimal code of STMicroelectronics 25% tint of dark blue.


You type You get
Coloring text in yellow
This is a {{STYellow|STMicroelectronics corporate color: shade of yellow: █}}

This is a STMicroelectronics corporate color: shade of yellow: █

Coloring text in 75% tint of yellow
This is a {{STYellow|STMicroelectronics corporate color: 75% tint of yellow: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of yellow: █

Coloring text in 50% tint of yellow
This is a {{STYellow|STMicroelectronics corporate color: 50% tint of yellow: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of yellow: █

Coloring text in 25% tint of yellow
This is a {{STYellow|STMicroelectronics corporate color: 25% tint of yellow: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of yellow: █

Getting the hexadecimal code of the color
{{STYellow}} is the hexadecimal code of STMicroelectronics yellow.

#FFD200 is the hexadecimal code of STMicroelectronics yellow.

Getting the hexadecimal code of the 75% tint of the color
{{STYellow | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of yellow.

#FFDD40 is the hexadecimal code of STMicroelectronics 75% tint of yellow.

Getting the hexadecimal code of the 50% tint of the color
{{STYellow | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of yellow.

#FFE87F is the hexadecimal code of STMicroelectronics 50% tint of yellow.

Getting the hexadecimal code of the 25% tint of the color
{{STYellow | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of yellow.

#FFF4BF is the hexadecimal code of STMicroelectronics 25% tint of yellow.


You type You get
Coloring text in purple
This is a {{STPurple|STMicroelectronics corporate color: shade of purple: █}}

This is a STMicroelectronics corporate color: shade of purple: █

Coloring text in 75% tint of purple
This is a {{STPurple|STMicroelectronics corporate color: 75% tint of purple: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of purple: █

Coloring text in 50% tint of purple
This is a {{STPurple|STMicroelectronics corporate color: 50% tint of purple: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of purple: █

Coloring text in 25% tint of purple
This is a {{STPurple|STMicroelectronics corporate color: 25% tint of purple: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of purple: █

Getting the hexadecimal code of the color
{{STPurple}} is the hexadecimal code of STMicroelectronics purple.

#8C0078 is the hexadecimal code of STMicroelectronics purple.

Getting the hexadecimal code of the 75% tint of the color
{{STPurple | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of purple.

#A9409A is the hexadecimal code of STMicroelectronics 75% tint of purple.

Getting the hexadecimal code of the 50% tint of the color
{{STPurple | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of purple.

#C57FBB is the hexadecimal code of STMicroelectronics 50% tint of purple.

Getting the hexadecimal code of the 25% tint of the color
{{STPurple | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of purple.

#E2BFDD is the hexadecimal code of STMicroelectronics 25% tint of purple.


You type You get
Coloring text in pink
This is a {{STPink|STMicroelectronics corporate color: shade of pink: █}}

This is a STMicroelectronics corporate color: shade of pink: █

Coloring text in 75% tint of pink
This is a {{STPink|STMicroelectronics corporate color: 75% tint of pink: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of pink: █

Coloring text in 50% tint of pink
This is a {{STPink|STMicroelectronics corporate color: 50% tint of pink: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of pink: █

Coloring text in 25% tint of pink
This is a {{STPink|STMicroelectronics corporate color: 25% tint of pink: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of pink: █

Getting the hexadecimal code of the color
{{STPink}} is the hexadecimal code of STMicroelectronics pink.

#E6007E is the hexadecimal code of STMicroelectronics pink.

Getting the hexadecimal code of the 75% tint of the color
{{STPink | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of pink.

#EC409E is the hexadecimal code of STMicroelectronics 75% tint of pink.

Getting the hexadecimal code of the 50% tint of the color
{{STPink | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of pink.

#F27FBE is the hexadecimal code of STMicroelectronics 50% tint of pink.

Getting the hexadecimal code of the 25% tint of the color
{{STPink | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of pink.

#F8BCDD is the hexadecimal code of STMicroelectronics 25% tint of pink.


You type You get
Coloring text in light green
This is a {{STLightGreen|STMicroelectronics corporate color: shade of light green: █}}

This is a STMicroelectronics corporate color: shade of light green: █

Coloring text in 75% tint of light green
This is a {{STLightGreen|STMicroelectronics corporate color: 75% tint of light green: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of light green: █

Coloring text in 50% tint of light green
This is a {{STLightGreen|STMicroelectronics corporate color: 50% tint of light green: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of light green: █

Coloring text in 25% tint of light green
This is a {{STLightGreen|STMicroelectronics corporate color: 25% tint of light green: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of light green: █

Getting the hexadecimal code of the color
{{STLightGreen}} is the hexadecimal code of STMicroelectronics light green.

#49B170 is the hexadecimal code of STMicroelectronics light green.

Getting the hexadecimal code of the 75% tint of the color
{{STLightGreen | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of light green.

#77C594 is the hexadecimal code of STMicroelectronics 75% tint of light green.

Getting the hexadecimal code of the 50% tint of the color
{{STLightGreen | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of light green.

#A4D8B7 is the hexadecimal code of STMicroelectronics 50% tint of light green.

Getting the hexadecimal code of the 25% tint of the color
{{STLightGreen | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of light green.

#C7E7D3 is the hexadecimal code of STMicroelectronics 25% tint of light green.


You type You get
Coloring text in light blue
This is a {{STLightBlue|STMicroelectronics corporate color: shade of light blue: █}}

This is a STMicroelectronics corporate color: shade of light blue: █

Coloring text in 75% tint of light blue
This is a {{STLightBlue|STMicroelectronics corporate color: 75% tint of light blue: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of light blue: █

Coloring text in 50% tint of light blue
This is a {{STLightBlue|STMicroelectronics corporate color: 50% tint of light blue: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of light blue: █

Coloring text in 25% tint of light blue
This is a {{STLightBlue|STMicroelectronics corporate color: 25% tint of light blue: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of light blue: █

Getting the hexadecimal code of the color
{{STLightBlue}} is the hexadecimal code of STMicroelectronics light blue.

#3CB4E6 is the hexadecimal code of STMicroelectronics light blue.

Getting the hexadecimal code of the 75% tint of the color
{{STLightBlue | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of light blue.

#6DC7EC is the hexadecimal code of STMicroelectronics 75% tint of light blue.

Getting the hexadecimal code of the 50% tint of the color
{{STLightBlue | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of light blue.

#9DD9F2 is the hexadecimal code of STMicroelectronics 50% tint of light blue.

Getting the hexadecimal code of the 25% tint of the color
{{STLightBlue | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of light blue.

#CEECF9 is the hexadecimal code of STMicroelectronics 25% tint of light blue.


You type You get
Getting the hexadecimal code of the color
{{STLightGrey}} is the hexadecimal code of STMicroelectronics light grey.

#D1D1D3 is the hexadecimal code of STMicroelectronics light grey.


You type You get
Getting the hexadecimal code of the color
{{STMediumGrey}} is the hexadecimal code of STMicroelectronics medium grey.

#A2A2A7 is the hexadecimal code of STMicroelectronics medium grey.


You type You get
Coloring text in dark grey
This is a {{STDarkGrey|STMicroelectronics corporate color: shade of dark grey: █}}

This is a STMicroelectronics corporate color: shade of dark grey: █

Coloring text in 75% tint of dark grey
This is a {{STDarkGrey|STMicroelectronics corporate color: 75% tint of dark grey: █ | tint=75}}

This is a STMicroelectronics corporate color: 75% tint of dark grey: █

Coloring text in 50% tint of dark grey
This is a {{STDarkGrey|STMicroelectronics corporate color: 50% tint of dark grey: █ | tint=50}}

This is a STMicroelectronics corporate color: 50% tint of dark grey: █

Coloring text in 25% tint of dark grey
This is a {{STDarkGrey|STMicroelectronics corporate color: 25% tint of dark grey: █ | tint=25}}

This is a STMicroelectronics corporate color: 25% tint of dark grey: █

Getting the hexadecimal code of the color
{{STDarkGrey}} is the hexadecimal code of STMicroelectronics dark grey.

#464650 is the hexadecimal code of STMicroelectronics dark grey.

Getting the hexadecimal code of the 75% tint of the color
{{STDarkGrey | tint=75}} is the hexadecimal code of STMicroelectronics 75% tint of dark grey.

#74747C is the hexadecimal code of STMicroelectronics 75% tint of dark grey.

Getting the hexadecimal code of the 50% tint of the color
{{STDarkGrey | tint=50}} is the hexadecimal code of STMicroelectronics 50% tint of dark grey.

#A2A2A7 is the hexadecimal code of STMicroelectronics 50% tint of dark grey.

Getting the hexadecimal code of the 25% tint of the color
{{STDarkGrey | tint=25}} is the hexadecimal code of STMicroelectronics 25% tint of dark grey.

#D1D1D3 is the hexadecimal code of STMicroelectronics 25% tint of dark grey.


You type You get
Getting the hexadecimal code of the color
{{STTextGrey}} is the hexadecimal code of STMicroelectronics grey for normal text.

#58585A is the hexadecimal code of STMicroelectronics grey for normal text.


You type You get
Coloring text in "classic MediaWiki" red
This is a {{Red|"classic MediaWiki" color: red: █}}

This is a "classic MediaWiki" color: red: █

Getting the hexadecimal code of the color
{{Red}} is the hexadecimal code of the "classic MediaWiki" red.

#FF0000 is the hexadecimal code of the "classic MediaWiki" red.


You type You get
Coloring text in "classic MediaWiki" orange
This is a {{Orange|"classic MediaWiki" color: orange: █}}

This is a "classic MediaWiki" color: orange: █

Getting the hexadecimal code of the color
{{Orange}} is the hexadecimal code of the "classic MediaWiki" orange.

#FFA500 is the hexadecimal code of the "classic MediaWiki" orange.


You type You get
ls test command executed on the host PC
{{PC$}}ls test<br>
test1.txt test2.txt

ls test
test1.txt test2.txt


You type You get
ls test command executed on the board
{{Board$}}ls test<br>
test1.txt test2.txt

ls test
test1.txt test2.txt


You type You get
help env command executed on the U-Boot console
{{U-Boot$}}help env<br>
env - environment handling commands

help env
env - environment handling commands


You type You get
info break command executed on GDB
{{GDB$}}show listsize<br>
Number of source lines gdb will list by default is 10.

show listsize
Number of source lines gdb will list by default is 10.


You type You get
"Yes" indicator
{| class="st-table"
! Feature !! Availability
|-
| Feature 1 || {{Y}}
|-
| Feature 2 || {{Y}}
|}
Feature Availability
Feature 1 Yes
Feature 2 Yes


You type You get
"No" indicator
{| class="st-table"
! Feature !! Availability
|-
| Feature 1 || {{N}}
|-
| Feature 2 || {{N}}
|}
Feature Availability
Feature 1 No
Feature 2 No


4.3. Templates for sources[edit | edit source]

You type You get
Linux kernel
1- {{CodeSource | Linux kernel | Makefile}}<br />
2- {{CodeSource | Linux kernel | arch/arm/boot/dts/}}<br />
3- {{CodeSource | Linux kernel | /}}<br />
4- {{CodeSource | Linux kernel}}<br />

1- Makefile
2- arch/arm/boot/dts/
3- /
4- https://github.com/STMicroelectronics/linux.git

U-Boot
1- {{CodeSource | U-Boot | Makefile}}<br />
2- {{CodeSource | U-Boot | arch/arm/dts/}}<br />
3- {{CodeSource | U-Boot | /}}<br />
4- {{CodeSource | U-Boot}}<br />

1- Makefile
2- arch/arm/dts/
3- /
4- https://github.com/STMicroelectronics/u-boot.git

TF-A
1- {{CodeSource | TF-A | Makefile}}<br />
2- {{CodeSource | TF-A | fdts/}}<br />
3- {{CodeSource | TF-A | /}}<br />
4- {{CodeSource | TF-A}}<br />

1- Makefile
2- fdts/
3- /
4- https://github.com/STMicroelectronics/arm-trusted-firmware.git

OP-TEE_OS
1- {{CodeSource | OP-TEE_OS | Makefile}}<br />
2- {{CodeSource | OP-TEE_OS | core/arch/arm/kernel/}}<br />
3- {{CodeSource | OP-TEE_OS | /}}<br />
4- {{CodeSource | OP-TEE_OS}}<br />

1- Makefile
2- core/arch/arm/kernel/
3- /
4- https://github.com/STMicroelectronics/optee_os.git

optee-stm32mp-addons
1- {{CodeSource | optee-stm32mp-addons | README.md}}<br />
2- {{CodeSource | optee-stm32mp-addons | stm32mp-calibration/}}<br />
3- {{CodeSource | optee-stm32mp-addons | /}}<br />
4- {{CodeSource | optee-stm32mp-addons}}<br />

1- README.md
2- stm32mp-calibration/
3- /
4- https://github.com/STMicroelectronics/optee-stm32mp-addons.git

External_DT
1- {{CodeSource | External_DT | linux/Makefile}}<br />
2- {{CodeSource | External_DT | linux/}}<br />
3- {{CodeSource | External_DT | /}}<br />
4- {{CodeSource | External_DT}}<br />

1- linux/Makefile
2- linux/
3- /
4- https://github.com/STMicroelectronics/dt-stm32mp.git

STM32CubeMP1
1- {{CodeSource | STM32CubeMP1 | Readme.md}}<br />
2- {{CodeSource | STM32CubeMP1 | Drivers/STM32MP1xx_HAL_Driver/Src/}}<br />
3- {{CodeSource | STM32CubeMP1 | /}}<br />
4- {{CodeSource | STM32CubeMP1html | Release_Notes.html}}<br />
5- {{CodeSource | STM32CubeMP1}}<br />

1- Readme.md
2- Drivers/STM32MP1xx_HAL_Driver/Src/
3- /
4- Release_Notes.html
5- https://github.com/STMicroelectronics/STM32CubeMP1.git

STM32CubeMP13
1- {{CodeSource | STM32CubeMP13 | Readme.md}}<br />
2- {{CodeSource | STM32CubeMP13 |Drivers/BSP/STM32MP13xx_DISCO/}}<br />
3- {{CodeSource | STM32CubeMP13 | /}}<br />
4- {{CodeSource | STM32CubeMP13 |Projects/STM32CubeProjectsList.html}}<br />
5- {{CodeSource | STM32CubeMP13html |Projects/STM32CubeProjectsList.html}}<br />
6- {{CodeSource | STM32CubeMP13}}<br />

1- Readme.md
2- Drivers/BSP/STM32MP13xx_DISCO/
3- /
4- Projects/STM32CubeProjectsList.html
5- Projects/STM32CubeProjectsList.html
6- https://github.com/STMicroelectronics/STM32CubeMP13.git

STM32CubeMP2
1- {{CodeSource | STM32CubeMP2 | README.md}}<br />
2- {{CodeSource | STM32CubeMP2 | Drivers/STM32MP2xx_HAL_Driver/Src/}}<br />
3- {{CodeSource | STM32CubeMP2 | /}}<br />
4- {{CodeSource | STM32CubeMP2}}<br />
5- {{CodeSource |STM32CubeMP2html |Projects/STM32CubeProjectsList.html}}<br />

1- README.md
2- Drivers/STM32MP2xx_HAL_Driver/Src/
3- /
4- https://github.com/STMicroelectronics/STM32CubeMP2.git
5- Projects/STM32CubeProjectsList.html

TF-M
1- {{CodeSource | TF-M | readme.rst}}<br />
2- {{CodeSource | TF-M | bl1/config/}}<br />
3- {{CodeSource | TF-M | /}}<br />
4- {{CodeSource | TF-M}}<br />

1- readme.rst
2- bl1/config/
3- /
4- https://github.com/STMicroelectronics/trusted-firmware-m.git

TF-M_tests
1- {{CodeSource | TF-M_tests | readme.rst}}<br />
2- {{CodeSource | TF-M_tests | test/bl2/}}<br />
3- {{CodeSource | TF-M_tests | /}}<br />
4- {{CodeSource | TF-M_tests}}<br />

1- readme.rst
2- test/bl2/
3- /
4- https://github.com/STMicroelectronics/tf-m-tests.git

STM32DDRFW-UTIL
1- {{CodeSource | STM32DDRFW-UTIL | README.md}}<br />
2- {{CodeSource | STM32DDRFW-UTIL | Drivers/STM32MP2xx_HAL_Driver/Src/}}<br />
3- {{CodeSource | STM32DDRFW-UTIL | /}}<br />
4- {{CodeSource | STM32DDRFW-UTIL}}<br />

1- README.md
2- Drivers/STM32MP2xx_HAL_Driver/Src/
3- /
4- https://github.com/STMicroelectronics/STM32DDRFW-UTIL.git

STM32PRGFW-UTIL
1- {{CodeSource | STM32PRGFW-UTIL | README.md}}<br />
2- {{CodeSource | STM32PRGFW-UTIL | Drivers/STM32MP2xx_HAL_Driver/Src/}}<br />
3- {{CodeSource | STM32PRGFW-UTIL | /}}<br />
4- {{CodeSource | STM32PRGFW-UTIL }}<br />

1- README.md
2- Drivers/STM32MP2xx_HAL_Driver/Src/
3- /
4- https://github.com/STMicroelectronics/STM32PRGFW-UTIL.git

meta-st-stm32mp
1- {{CodeSource | meta-st-stm32mp | README.md}}<br />
2- {{CodeSource | meta-st-stm32mp | recipes-kernel/linux/linux-stm32mp/}}<br />
3- {{CodeSource | meta-st-stm32mp | /}}<br />
4- {{CodeSource | meta-st-stm32mp}}<br />

1- README.md
2- recipes-kernel/linux/linux-stm32mp/
3- /
4- https://github.com/STMicroelectronics/meta-st-stm32mp.git

meta-st-openstlinux
1- {{CodeSource | meta-st-openstlinux | README.md}}<br />
2- {{CodeSource | meta-st-openstlinux | recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/}}<br />
3- {{CodeSource | meta-st-openstlinux | /}}<br />
4- {{CodeSource | meta-st-openstlinux}}<br />

1- README.md
2- recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/
3- /
4- https://github.com/STMicroelectronics/meta-st-openstlinux.git

meta-st-stm32mp-addons
1- {{CodeSource | meta-st-stm32mp-addons | README.md}}<br />
2- {{CodeSource | meta-st-stm32mp-addons | recipes-kernel/linux/}}<br />
3- {{CodeSource | meta-st-stm32mp-addons | /}}<br />
4- {{CodeSource | meta-st-stm32mp-addons}}<br />

1- README.md
2- recipes-kernel/linux/
3- /
4- https://github.com/STMicroelectronics/meta-st-stm32mp-addons.git

wiki-stm32mp-addons
1- {{CodeSource | wiki-stm32mp-addons | README.md}}<br />
2- {{CodeSource | wiki-stm32mp-addons | gdb-scripts/}}<br />
3- {{CodeSource | wiki-stm32mp-addons | /}}<br />
4- {{CodeSource | wiki-stm32mp-addons}}<br />

1- README.md
2- gdb-scripts/
3- /
4- https://github.com/STMicroelectronics/wiki-stm32mp-addons.git

Android
1- {{CodeSource | Android | repo=platform/build | README.md}}<br />
2- {{CodeSource | Android | repo=platform/packages/apps/Settings | src/com/android/settings/}}<br />
3- {{CodeSource | Android | repo=platform/build | /}}<br />
4- {{CodeSource | Android}| repo=platform/build}<br />

1- platform/build/README.md
2- platform/packages/apps/Settings/src/com/android/settings/
3- platform/build//
4- https://android.googlesource.com/platform/build.git

Buildroot
1- {{CodeSource | Buildroot | README.md}}<br />
2- {{CodeSource | Buildroot | docs/}}<br />
3- {{CodeSource | Buildroot | /}}<br />
4- {{CodeSource | Buildroot }}<br />

1- README.md
2- docs/
3- /
4- https://github.com/bootlin/buildroot-external-st.git

X-LINUX-AI
1- {{CodeSource | X-LINUX-AI | README.md}}<br />
2- {{CodeSource | X-LINUX-AI | conf/}}<br />
3- {{CodeSource | X-LINUX-AI | /}}<br />
4- {{CodeSource | X-LINUX-AI}}<br />

1- README.md
2- conf/
3- /
4- https://github.com/STMicroelectronics/meta-st-x-linux-ai.git

X-LINUX-ISP
1- {{CodeSource | X-LINUX-ISP| README.md}}<br />
2- {{CodeSource | X-LINUX-ISP| conf/}}<br />
3- {{CodeSource | X-LINUX-ISP| /}}<br />
4- {{CodeSource | X-LINUX-ISP}}<br />

1- README.md
2- conf/
3- /
4- https://github.com/STMicroelectronics/meta-st-x-linux-isp.git

st-openstlinux-application
1- {{CodeSource | st-openstlinux-application | README.md}}<br />
2- {{CodeSource | st-openstlinux-application | dcmipp-isp-ctrl/}}<br />
3- {{CodeSource | st-openstlinux-application | /}}<br />
4- {{CodeSource | st-openstlinux-application}}<br />
5- {{CodeSource | st-openstlinux-application | weston-cube/}}<br />

1- README.md
2- dcmipp-isp-ctrl/
3- /
4- https://github.com/STMicroelectronics/mst-openstlinux-application.git
5- weston-cube/


You type You get
Linux kernel
1- {{DocSource | domain=Linux kernel | path=crypto/index.html}}<br />
2- {{DocSource | domain=Linux kernel | path=gpu/drm-uapi.html}}

1- crypto/index.html
2- gpu/drm-uapi.html

Yocto Project
1- {{DocSource | domain=Yocto Project | path=overview-manual}}<br />
2- {{DocSource | domain=Yocto Project | path=brief-yoctoprojectqs}}

1- overview-manual
2- brief-yoctoprojectqs

AWS IoT Greengrass
1- {{DocSource | domain=AWS Greengrass | path=developerguide/what-is-gg.html}}<br />
2- {{DocSource | domain=AWS Greengrass | path=developerguide/device-config-setup.html}}

1- developerguide/what-is-gg.html
2- developerguide/device-config-setup.html

U-Boot
1- {{DocSource | domain=U-Boot | path=index.html}}<br />
2- {{DocSource | domain=U-Boot | path=build/index.html}}

1- index.html
2- build/index.html

TF-A
1- {{DocSource | domain=TF-A | path=index.html}}<br />
2- {{DocSource | domain=TF-A | path=getting_started/index.html}}

1- index.html
2- getting_started/index.html

OP-TEE
1- {{DocSource | domain=OP-TEE | path=general/index.html}}<br />
2- {{DocSource | domain=OP-TEE | path=index.html}}

1- general/index.html
2- index.html


You type You get
File source: document 7331 of the Digital Assets Library
{{FileSource | Digital Assets Library | 7331}}
File source: document STM32MP157x-DKx.pptx of the user guide files library
{{FileSource | User guide | Boards/STM32MP157x-DKx.pptx}}
File source: document STM32MP15-Software-Software architecture.pptx of the training files library
{{FileSource | Training | STM32MP15-Software-Software architecture.pptx}}
File source: UML diagram quadrature_x4_encoding.txt of the UML diagrams' Git repository
{{FileSource | UML diagram | timers/quadrature_x4_encoding.txt}}
File source: URL for OpenEmbedded
{{FileSource | Internet | http://www.openembedded.org/ | OpenEmbedded}}
"Self-contained" file
{{FileSource | NA | (archive file)}}
"Self-contained" file - SVG file
{{FileSource | NA | (SVG file created with Inkscape, it is recommended to use Inkscape to modify it)}}


4.4. Protected templates[edit | edit source]

You type You get
Internal info
{{InternalInfo | When connecting to the STMicroelectronics network, you have to execute these additional commands: ...}}


You type You get
Comment and MediaWiki signature supplied
{{ReviewsComments | ~~~~ - The proposed command doesn't work: please propose another version}}
Comment and trigram supplied
{{ReviewsComments | JCT w920 - The proposed command doesn't work: please propose another version}}


You type You get
Article based on "Contributors:How to article model" model
{{ArticleBasedOnModel | How to article model}}


You type You get
Publication request: TLMS PR ID and date supplied
{{PublicationRequestId | 12345 | 2019-05-09 |}}
Publication request: TLMS PR ID set with "Auto" and comment supplied
{{PublicationRequestId | Auto |  | Automatic approval based on the “Category model” article}}


You type You get
ClonedFrom "stm32mpu"
{{ClonedFrom | stm32mpu}}
ClonedFrom "stm32mpuv4"
{{ClonedFrom | stm32mpuv4}}


4.5. Templates for maintenance[edit | edit source]

You type You get
Basic example
{{EcosystemFlow}}


You type You get
Generic message
{{EcosystemFlow/Archives}}

This wiki is for the v6 ecosystem releases. For information about the previous ecosystem releases, go through the Wiki archives.

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v1}}

MultipleTemplatesForPerformanceTests page for the v1 ecosystem releases (in archived wiki)

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v2}}

MultipleTemplatesForPerformanceTests page for the v2 ecosystem releases (in archived wiki)

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v3}}

MultipleTemplatesForPerformanceTests page for the v3 ecosystem releases (in archived wiki)

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v4}}

MultipleTemplatesForPerformanceTests page for the v4 ecosystem releases (in archived wiki)

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v5}}

MultipleTemplatesForPerformanceTests page for the v5 ecosystem releases (in archived wiki)

Simple interwiki link (link to the current page i.e. Template:EcosystemFlow/Archives)
{{EcosystemFlow/Archives | custom=Basic | flow=v6}}

MultipleTemplatesForPerformanceTests page for the v6 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v1 | page=Development zone}}

Development zone page for the v1 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v2 | page=Development zone}}

Development zone page for the v2 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v3 | page=Development zone}}

Development zone page for the v3 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v4 | page=Development zone}}

Development zone page for the v4 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v5 | page=Development zone}}

Development zone page for the v5 ecosystem releases (in archived wiki)

Simple interwiki link (link to the "Development zone" page)
{{EcosystemFlow/Archives | custom=Basic | flow=v6 | page=Development zone}}

Development zone page for the v6 ecosystem releases (in archived wiki)

Custom message for the STM32MPU distribution for Android™: no message for the current release
{{EcosystemFlow/Archives | custom=Android}}


You type You get
Update needed for new board without comment
Here is the list of the supported boards:{{UpdateNeededForNewBoard}}
* B1
* B2

Here is the list of the supported boards:

  • B1
  • B2
Update needed for new board with comment
The camera sensor is connected the CN7 camera connector of the STM32MP157C-EV1 board.{{UpdateNeededForNewBoard|Point to the camera connector (if any) of the new board}}

The camera sensor is connected the CN7 camera connector of the STM32MP157C-EV1 board.


You type You get
Update needed for new release without comment
Here is the list of the supported ecosystem releases:{{UpdateNeededForNewRelease}}
* R1
* R2

Here is the list of the supported ecosystem releases:

  • R1
  • R2
Update needed for new release with comment
The '''vx.yy-stm32mp''' version of the Linux kernel is supported.{{UpdateNeededForNewRelease|Please update the version}}

The vx.yy-stm32mp version of the Linux kernel is supported.


You type You get
Update needed for new microprocessor device without comment
Here is the list of the supported microprocessor devices:{{UpdateNeededForNewDevice}}
* M1
* M2

Here is the list of the supported microprocessor devices:

  • M1
  • M2
Update needed for new microprocessor device with comment
This demonstration can be executed on boards that embeds the STM32MP157 microprocessor device.{{UpdateNeededForNewDevice|Check if the demonstration can also be executed on boards that embed the new microprocessor device}}

This demonstration can be executed on boards that embeds the STM32MP157 microprocessor device.


4.6. Templates for legal information[edit | edit source]

You type You get
SoftwareLicenseAgreement for the OpenSTLinux distribution (no specific chapter)
{{SoftwareLicenseAgreement | distribution=OpenSTLinux}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the OpenSTLinux distribution, and the "Kernel partitions:" chapter
{{SoftwareLicenseAgreement | distribution=OpenSTLinux | chapter=Kernel partitions-}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the STM32CubeMP1 Package (no specific chapter)
{{SoftwareLicenseAgreement | distribution=STM32CubeMP1}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the STM32CubeMP13 Package (no specific chapter)
{{SoftwareLicenseAgreement | distribution=STM32CubeMP13}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the STM32CubeMP2 Packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=STM32CubeMP2}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the X-LINUX-AI expansion packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=X-LINUX-AI}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the X-LINUX-AWS expansion packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=X-LINUX-AWS}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the X-LINUX-AZURE expansion packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=X-LINUX-AZURE}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the X-LINUX-QT expansion packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=X-LINUX-QT}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the X-LINUX-ISP expansion packages (no specific chapter)
{{SoftwareLicenseAgreement | distribution=X-LINUX-ISP}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.

SoftwareLicenseAgreement for the STM32MPU distribution for Android (no specific chapter)
{{SoftwareLicenseAgreement | distribution=Android}}

The software package is provided AS IS, and by downloading it, you agree to be bound to the terms of the software license agreement (SLA0048). The detailed content licenses can be found here.


4.7. Templates for diversity management[edit | edit source]

You type You get
All boards with a STM32 MPU microprocessor device
{{Board | type=MPU}}<br />
{{Board | type=MPU | name=short}}

STM32 MPU boards More info green.png
STM32 MPU boards More info green.png

All boards with a STM32MP1 microprocessor device
{{Board | type=MP1}}<br />
{{Board | type=MP1 | name=short}}

STM32MP1 series' boards More info green.png
STM32MP1 series' boards More info green.png

STM32MP135F-DK
{{Board | type=135F-DK | name=short}}

STM32MP135F-DK More info green.png

STM32MP135x-DK Discovery kit
{{Board | type=135x-DK}}

STM32MP135x-DK Discovery kit More info green.png

STM32MP135F-DK Discovery kit
{{Board | type=135F-DK}}

STM32MP135F-DK Discovery kit More info green.png

STM32MP157F-EV1 Evaluation board
{{Board | type=157F-EV1}}

STM32MP157F-EV1 Evaluation board More info green.png

STM32MP157C-DK2 Discovery kit
{{Board | type=157C-DK2}}

STM32MP157C-DK2 Discovery kit Warning.png

STM32MP157C-EV1
{{Board | type=157C-EV1 | name=short}}

STM32MP157C-EV1 Warning.png

STM32MP157A-DK1
{{Board | type=157A-DK1 | name=short}}

STM32MP157A-DK1 Warning.png

All boards with a STM32MP2 microprocessor device
{{Board | type=MP2}}<br />
{{Board | type=MP2 | name=short}}

STM32MP2 series' boards More info green.png
STM32MP2 series' boards More info green.png

Discovery kits with a STM32MP235 MPU which are actually Discovery kits with a STM32MP257 MPU
{{Board | type=235F-DK}}<br>

STM32MP257F-DK Discovery kit More info green.png for STM32MP23x lines evaluation Info.png

Discovery kits with a STM32MP235 MPU which are actually Discovery kits with a STM32MP257 MPU: short name
{{Board | type=235F-DK}|name=short}<br>

STM32MP257F-DK More info green.png for STM32MP23x lines evaluation Info.png

STM32MP257F-EV1 Evaluation board
{{Board | type=257F-EV1}}

STM32MP257F-EV1 Evaluation board More info green.png

STM32MP257x-EV1 Evaluation board
{{Board | type=257x-EV1}}

STM32MP257x-EV1 Evaluation board More info green.png

STM32MP257F-DK Discovery kit
{{Board | type=257F-DK}}

STM32MP257F-DK Discovery kit More info green.png

STM32MP257x-DK Discovery kit
{{Board | type=257x-DK}}

STM32MP257x-DK Discovery kit More info green.png


You type You get
A specific revision (revision 6.0.0) that is the latest one
{{EcosystemRelease | revision=6.0.0}}

ecosystem release v6.0.0 More info.png

A specific revision (revision 5.1.0)
{{EcosystemRelease | revision=5.1.0}}

ecosystem release v5.1.0

A specific revision (revision 5.0.0)
{{EcosystemRelease | revision=5.0.0}}

ecosystem release v5.0.0

The latest revision that should be the v6.0.0
{{EcosystemRelease | revision=latest}}

ecosystem release v6.0.0 More info.png

Specific revisions that are former ones
{{EcosystemRelease | revision=4.1.0}}<br />
{{EcosystemRelease | revision=4.0.0}}<br />
{{EcosystemRelease | revision=3.1.0}}<br />
{{EcosystemRelease | revision=3.0.0}}<br />
{{EcosystemRelease | revision=2.1.0}}<br />
{{EcosystemRelease | revision=2.0.0}}<br />
{{EcosystemRelease | revision=1.2.0}}<br />
{{EcosystemRelease | revision=1.1.0}}<br />
{{EcosystemRelease | revision=1.0.0}}

ecosystem release v4.1.0
ecosystem release v4.0.0
ecosystem release v3.1.0
ecosystem release v3.0.0
ecosystem release v2.1.0
ecosystem release v2.0.0
ecosystem release v1.2.0
ecosystem release v1.1.0
ecosystem release v1.0.0

Revisions that are lower than or equal to a revision
{{EcosystemRelease | revision=x.1.0 | range=and before}}

ecosystem release ≤ vx.1.0 More info.png

Revisions that are greater than or equal to a revision
{{EcosystemRelease | revision=x.1.0 | range=and after}}

ecosystem release ≥ vx.1.0 More info.png

Range of revisions
{{EcosystemRelease | revision=x.0.0 | range=to | revision2=x.1.0}}

ecosystem release vx.0.0 More info.png to vx.1.0 More info.png

Revisions that are lower than or equal to the latest one
{{EcosystemRelease | revision=latest | range=and before}}

ecosystem release ≤ v6.0.0 More info.png

Revisions that are greater than or equal to the latest one
{{EcosystemRelease | revision=latest | range=and after}}

ecosystem release ≥ v6.0.0 More info.png

Range of revisions
{{EcosystemRelease | revision=x.0.0 | range=to | revision2=latest}}

ecosystem release vx.0.0 More info.png to v6.0.0 More info.png



4.8. Basic examples for v6.0.0 release[edit source]

You type You get
Information about "Images package" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=Images package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=Images package | device =MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=Images package | device=MP1 | request=path}}<br>
Name (MP2_A35_TD): {{EcosystemRelease/Package | revision=6.0.0 | package=Images package | device=MP2_A35_TD | request=name}}<br>
Path (MP2_A35_TD): {{EcosystemRelease/Package | revision=6.0.0 | package=Images package | device=MP2_A35_TD | request=path}}<br>
URL (MP2_A35_TD): [{{EcosystemRelease/Package | revision=6.0.0 | package=Images package | device=MP2_A35_TD | request=url}}]<br>

Name (default): en.FLASH-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP1): en.FLASH-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path (MP1): stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp1
Name (MP2_A35_TD): en.FLASH-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path (MP2_A35_TD): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp2
URL (MP2_A35_TD): [NA]

Information about "SDK-x86 package" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 package | device=MP2 | request=url}}]<br>

Name (default): en.SDK-x86_64-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP1): en.SDK-x86_64-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP2): en.SDK-x86_64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path: NA
URL: [NA]

Information about "SDK-x86 installation script" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | device=MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | device=MP1 | request=path}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 installation script | device=MP2 | request=url}}]<br>

Name (default): st-image-weston-openstlinux-weston-stm32mp1.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Name (MP1): st-image-weston-openstlinux-weston-stm32mp1.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP1): stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sdk
Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sdk
URL (MP2): [NA]

Information about "SDK-x86 setup script" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 setup script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 setup script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-x86 setup script | device=MP2 | request=url}}]<br>

Name (default): environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi
Name (MP1): environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi
Name (MP2): environment-setup-cortexa35-ostl-linux
Path (MP2): NA
URL (MP2): [NA]

"SDK package", "SDK installation script" and "SDK setup script" temporarily kept for compatibility
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK package | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK installation script | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK setup script | device=MP2 | request=name}}<br>

Name (MP2): en.SDK-x86_64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Name (MP2): environment-setup-cortexa35-ostl-linux

Information about "SDK-arm64 package" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 package | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 package | device=MP2 | request=url}}]<br>

Name (default): en.SDK-aarch64-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP1): en.SDK-aarch64-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP2): en.SDK-aarch64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path (MP2): NA
URL (MP2): [NA]

Information about "SDK-arm64 installation script" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | device=MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | device=MP1 | request=path}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 installation script | device=MP2 | request=url}}]<br>

Name (default): st-image-weston-openstlinux-weston-stm32mp1.rootfs-aarch64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Name (MP1): st-image-weston-openstlinux-weston-stm32mp1.rootfs-aarch64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP1): stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06
Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-aarch64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06
URL (MP2): [NA]

Information about "SDK-arm64 setup script" for v6.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 setup script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 setup script | device=MP2 | request=path}}<br>
URL (MP2) : [{{EcosystemRelease/Package | revision=6.0.0 | package=SDK-arm64 setup script | device=MP2 | request=url}}]<br>

Name (default): environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi
Name (MP1): environment-setup-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi
Name (MP2): environment-setup-cortexa35-ostl-linux
Path (MP2): NA
URL (MP2) : [NA]

Information about "OpenSTLinux BSP package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package |device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package |device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package |device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package |device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux BSP package |device=MP2 | request=url}}]<br>

Default:
Name: en.SOURCES-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi
URL: [NA]

MP1:
Name: en.SOURCES-stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi
URL: [NA]

MP2:
Name: en.SOURCES-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux
URL: [NA]

Information about "Linux kernel package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel package | device=MP2 | request=url}}]<br><br>

Default:
Name: linux-stm32mp-6.6.48-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/linux-stm32mp-6.6.48-stm32mp-r1-r0
URL: [NA]

MP1:
Name: linux-stm32mp-6.6.48-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/linux-stm32mp-6.6.48-stm32mp-r1-r0
URL: [NA]

MP2:
Name: linux-stm32mp-6.6.48-stm32mp-r1-r0
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/linux-stm32mp-6.6.48-stm32mp-r1-r0
URL: [NA]

Information about "Linux kernel source" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Linux kernel source | device=MP2 | request=url}}]<br>

Default:
Name: linux-6.6.48.tar.xz
Path: linux-6.6.48
URL: [NA]

MP1:
Name: linux-6.6.48.tar.xz
Path: linux-6.6.48
URL: [NA]

MP2:
Name: linux-6.6.48.tar.xz
Path: linux-6.6.48
URL: [NA]

Information about "U-Boot package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot package | device=MP2 | request=url}}]<br>

Default:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

MP1:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

MP2:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

Information about "U-Boot source" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=U-Boot source | device=MP2 | request=url}}]<br>

Default:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0.tar.xz
Path: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

MP1:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0.tar.xz
Path: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

MP2:
Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0.tar.xz
Path: u-boot-stm32mp-v2023.10-stm32mp-r1-r0
URL: [NA]

Information about "TF-A package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A package | device=MP2 | request=url}}]<br>

Default:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

MP1:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

MP2:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

Information about "TF-A source" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=TF-A source | device=MP2 | request=url}}]<br>

Default:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0.tar.xz
Path: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

MP1:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0.tar.xz
Path: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

MP2:
Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0.tar.xz
Path: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
URL: [NA]

Information about "OP-TEE package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE package | device=MP2 | request=url}}]<br>

Default:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

MP1:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

MP2:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

Information about "OP-TEE source" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OP-TEE source | device=MP2 | request=url}}]<br>

Default:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0.tar.xz
Path: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

MP1:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0.tar.xz
Path: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

MP2:
Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0.tar.xz
Path: optee-os-stm32mp-4.0.0-stm32mp-r1-r0
URL: [NA]

Information about "External DT" for v6.0.0 revision requested
Installation name: {{EcosystemRelease/Package | revision=6.0.0 | package=External DT | request=inst name}}<br>
Installation name: {{EcosystemRelease/Package | revision=6.0.0 | package=External DT | device=MP2 | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=External DT | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=External DT | request=path}}<br>

Installation name: external-dt-6.0-r0
Installation name: external-dt-6.0-r0
Name: external-dt-6.0-r0.tar.xz
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/external-dt-6.0-r0/

Information about "gcnano-driver package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package| request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package| request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver package | device=MP2 | request=url}}]<br>

Default:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
URL: [NA]

MP1:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/arm-ostl-linux-gnueabi/gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
URL: [NA]

MP2:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0
URL: [NA]

Information about "gcnano-driver source" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=gcnano-driver source | device=MP2 | request=url}}]<br>

Default:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0.tar.xz
Path: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
URL: [NA]

MP1:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0.tar.xz
Path: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0
URL: [NA]

MP2:
Name: gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0.tar.xz
Path: gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0
URL: [NA]

Information about "STM32CubeMPU" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=STM32CubeMPU | device=MP2 | request=url}}]<br>

Default:
Name: en.STM32Cube_FW_MP1_V1.7.0.zip
Path: STM32Cube_FW_MP1_V1.7.0
URL: [NA]

MP1:
Name: en.STM32Cube_FW_MP1_V1.7.0.zip
Path: STM32Cube_FW_MP1_V1.7.0
URL: [NA]

MP2:
Name: en.STM32Cube_FW_MP2_V1.1.0.zip
Path: STM32Cube_FW_MP2_V1.1.0
URL: [NA]

Information about "TF-M" for v6.0.0 revision requested only for MP2 =default
Default = MP2<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| request=path}}<br><br>
MP1: (device parameter is ignored) <br> 
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| device=MP1 |request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| device=MP1 |request=path}}<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| device=MP2 |request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=TF-M| device=MP2 |request=path}}<br>

Default = MP2
Name: to be completed packageNA
Path: to be completed packageNA

MP1: (device parameter is ignored)
Name: to be completed packageNA
Path: to be completed packageNA

MP2:
Name: to be completed packageNA
Path: to be completed packageNA

Information about "Debug symbol files" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Debug symbol files | device=MP2 | request=url}}]<br>

Default:
Name: NA
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp1
URL: [NA]

MP1:
Name: NA
Path: stm32mp1-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp1
URL: [NA]

MP2:
Name: NA
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp2
URL: [NA]

Information about "Licenses package" for v6.0.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Licenses package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=DLicenses package | device=MP2 | request=url}}]<br>

Default:
Name: LICENSES-world-openstlinux-weston-stm32mp1.tar.gz
Path: NA
URL: [1]

MP1:
Name: LICENSES-world-openstlinux-weston-stm32mp1.tar.gz
Path: NA
URL: [2]

MP2:
Name: LICENSES-world-openstlinux-weston-stm32mp2.tar.gz
Path: NA
URL: [3]

Information about "OpenSTLinux distribution" for v6.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OpenSTLinux distribution | request=url}}]<br>

Name: openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06
Path: NA
URL: [4]

Information about "Buildroot distribution" for v6.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=Buildroot distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=Buildroot distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=Buildroot distribution | request=url}}]<br>

Name: openstlinux-6.6-buildroot-2024.02.9-mpu-v24.11.06
Path: NA
URL: [5]

Information about "OpenWRT distribution" for v6.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenWRT distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=OpenWRT distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=6.0.0 | package=OpenWRT distribution | request=url}}]<br>

Name: openstlinux-6.1-openwrt-master-mpu-v24.06.26
Path: NA
URL: [6]

Information about "stm32mp-ddr-phy" for v6.0.0 revision requested, MP2 only
Default = MP2:<br>
Installation name: {{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | request=path}}<br><br>
MP2: <br>
Installation name: [{{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | device=MP2 | request=inst name}}]<br>
Name: {{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=6.0.0 | package=stm32mp-ddr-phy | device=MP2 | request=path}}<br>

Default = MP2:
Installation name: stm32mp-ddr-phy-A2022.11-r0
Name: stm32mp-ddr-phy-A2022.11-r0.tar.xz
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/stm32mp-ddr-phy-A2022.11-r0/stm32mp-ddr-phy-A2022.11-r0.tar.xz

MP2:
Installation name: [stm32mp-ddr-phy-A2022.11-r0]
Name: stm32mp-ddr-phy-A2022.11-r0.tar.xz
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/stm32mp-ddr-phy-A2022.11-r0/stm32mp-ddr-phy-A2022.11-r0.tar.xz

4.9. Basic examples for v5.1.0 release[edit source]

You type You get
Information about "Images package" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=Images package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=Images package | device =MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=Images package | device=MP1 | request=path}}<br>
Name (MP2_A35_TD): {{EcosystemRelease/Package | revision=5.1.0 | package=Images package | device=MP2_A35_TD | request=name}}<br>
Path (MP2_A35_TD): {{EcosystemRelease/Package | revision=5.1.0 | package=Images package | device=MP2_A35_TD | request=path}}<br>
URL (MP2_A35_TD): [{{EcosystemRelease/Package | revision=5.1.0 | package=Images package | device=MP2_A35_TD | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Path (MP1): unknown revision
Name (MP2_A35_TD): unknown revision
Path (MP2_A35_TD): unknown revision
URL (MP2_A35_TD): [unknown revision]

Information about "SDK-x86 package" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 package | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-x86 installation script" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | device=MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | device=MP1 | request=path}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 installation script | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Path (MP1): unknown revision
Name (MP2): unknown revision
Path (MP2): unknown revision
URL (MP2): [unknown revision]

Information about "SDK-x86 setup script" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 setup script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 setup script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-x86 setup script | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path (MP2): unknown revision
URL (MP2): [unknown revision]

"SDK package", "SDK installation script" and "SDK setup script" temporarily kept for compatibility
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK package | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK installation script | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK setup script | device=MP2 | request=name}}<br>

Name (MP2): unknown revision
Name (MP2): unknown revision
Name (MP2): unknown revision

Information about "SDK-arm64 package" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 package | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 package | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path (MP2): unknown revision
URL (MP2): [unknown revision]

Information about "SDK-arm64 installation script" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | device=MP1 | request=name}}<br>
Path (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | device=MP1 | request=path}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | device=MP2 | request=path}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 installation script | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Path (MP1): unknown revision
Name (MP2): unknown revision
Path (MP2): unknown revision
URL (MP2): [unknown revision]

Information about "SDK-arm64 setup script" for v5.1.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 setup script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 setup script | device=MP2 | request=path}}<br>
URL (MP2) : [{{EcosystemRelease/Package | revision=5.1.0 | package=SDK-arm64 setup script | device=MP2 | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path (MP2): unknown revision
URL (MP2) : [unknown revision]

Information about "OpenSTLinux BSP package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package |device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package |device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package |device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package |device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux BSP package |device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Linux kernel package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel package | device=MP2 | request=url}}]<br><br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Linux kernel source" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Linux kernel source | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "U-Boot package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot package | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "U-Boot source" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=U-Boot source | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-A package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A package | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-A source" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=TF-A source | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OP-TEE package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE package | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OP-TEE source" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OP-TEE source | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "External DT" for v5.1.0 revision requested
Installation name: {{EcosystemRelease/Package | revision=5.1.0 | package=External DT | request=inst name}}<br>
Installation name: {{EcosystemRelease/Package | revision=5.1.0 | package=External DT | device=MP2 | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=External DT | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=External DT | request=path}}<br>

Installation name: unknown revision
Installation name: unknown revision
Name: unknown revision
Path: unknown revision

Information about "gcnano-driver package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package| request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package| request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver package | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "gcnano-driver source" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=gcnano-driver source | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "STM32CubeMPU" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=STM32CubeMPU | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-M" for v5.1.0 revision requested only for MP2 =default
Default = MP2<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| request=path}}<br><br>
MP1: (device parameter is ignored) <br> 
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| device=MP1 |request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| device=MP1 |request=path}}<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| device=MP2 |request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=TF-M| device=MP2 |request=path}}<br>

Default = MP2
Name: unknown revision
Path: unknown revision

MP1: (device parameter is ignored)
Name: unknown revision
Path: unknown revision

MP2:
Name: unknown revision
Path: unknown revision

Information about "Debug symbol files" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Debug symbol files | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Licenses package" for v5.1.0 revision requested
Default:<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | request=url}}]<br><br>
MP1: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | device=MP1 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | device=MP1 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | device=MP1 | request=url}}]<br><br>
MP2: <br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Licenses package | device=MP2 | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=DLicenses package | device=MP2 | request=url}}]<br>

Default:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP1:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

MP2:
Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OpenSTLinux distribution" for v5.1.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OpenSTLinux distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Buildroot distribution" for v5.1.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=Buildroot distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=Buildroot distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=Buildroot distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OpenWRT distribution" for v5.1.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenWRT distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=OpenWRT distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.1.0 | package=OpenWRT distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "stm32mp-ddr-phy" for v5.1.0 revision requested, MP2 only
Default = MP2:<br>
Installation name: {{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | request=path}}<br><br>
MP2: <br>
Installation name: [{{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | device=MP2 | request=inst name}}]<br>
Name: {{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.1.0 | package=stm32mp-ddr-phy | device=MP2 | request=path}}<br>

Default = MP2:
Installation name: unknown revision
Name: unknown revision
Path: unknown revision

MP2:
Installation name: [unknown revision]
Name: unknown revision
Path: unknown revision

4.10. Basic examples for latest release[edit source]

You type You get
Information about "Images package" for latest revision
Name (MP2_A35_TD): {{EcosystemRelease/Package | revision=latest | package=Images package | device=MP2_A35_TD | request=name}}<br>
Path (MP2_A35_TD): {{EcosystemRelease/Package | revision=latest | package=Images package | device=MP2_A35_TD | request=path}}<br>

Name (MP2_A35_TD): en.FLASH-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path (MP2_A35_TD): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp2

Information about "SDK-x86 package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-x86 package | device=MP2 | request=name}}<br>

Name (MP2): en.SDK-x86_64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz

Information about "SDK-x86 installation script" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-x86 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-x86 installation script | device=MP2 | request=path}}<br>

Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sdk

Information about "SDK-x86 setup script" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-x86 setup script | device=MP2 | request=name}}<br>

Name (MP2): environment-setup-cortexa35-ostl-linux

"SDK package", "SDK installation script" and "SDK setup script" temporarily kept for compatibility
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK package | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK installation script | device=MP2 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK setup script | device=MP2 | request=name}}<br>

Name (MP2): en.SDK-x86_64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-x86_64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Name (MP2): environment-setup-cortexa35-ostl-linux

Information about "SDK-arm64 package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-arm64 package | device=MP2 | request=name}}<br>

Name (MP2): en.SDK-aarch64-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz

Information about "SDK-arm64 installation script" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-arm64 installation script | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-arm64 installation script | device=MP2 | request=path}}<br>

Name (MP2): st-image-weston-openstlinux-weston-stm32mp2.rootfs-aarch64-toolchain-5.0.3-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.sh
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06

Information about "SDK-arm64 setup script" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=SDK-arm64 setup script | device=MP2 | request=name}}<br>

Name (MP2): environment-setup-cortexa35-ostl-linux

Information about "OpenSTLinux BSP package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=OpenSTLinux BSP package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=OpenSTLinux BSP package | device=MP2 | request=path}}<br>

Name (MP2): en.SOURCES-stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06.tar.gz
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux

Information about "Linux kernel package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=Linux kernel package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=Linux kernel package | device=MP2 | request=path}}<br>

Name (MP2): linux-stm32mp-6.6.48-stm32mp-r1-r0
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/linux-stm32mp-6.6.48-stm32mp-r1-r0

Information about "Linux kernel source" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=Linux kernel source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=Linux kernel source | request=path}}<br>

Name: linux-6.6.48.tar.xz
Path: linux-6.6.48

Information about "U-Boot package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=U-Boot package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=U-Boot package | device=MP2 | request=path}}<br>

Name (MP2): u-boot-stm32mp-v2023.10-stm32mp-r1-r0
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/u-boot-stm32mp-v2023.10-stm32mp-r1-r0

Information about "U-Boot source" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=U-Boot source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=U-Boot source | request=path}}<br>

Name: u-boot-stm32mp-v2023.10-stm32mp-r1-r0.tar.xz
Path: u-boot-stm32mp-v2023.10-stm32mp-r1-r0

Information about "TF-A package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=TF-A package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=TF-A package | device=MP2 | request=path}}<br>

Name (MP2): tf-a-stm32mp-v2.10.5-stm32mp-r1-r0
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/tf-a-stm32mp-v2.10.5-stm32mp-r1-r0

Information about "TF-A source" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=TF-A source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=TF-A source | request=path}}<br>

Name: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0.tar.xz
Path: tf-a-stm32mp-v2.10.5-stm32mp-r1-r0

Information about "OP-TEE package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=OP-TEE package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=OP-TEE package | device=MP2 | request=path}}<br>

Name (MP2): optee-os-stm32mp-4.0.0-stm32mp-r1-r0
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/optee-os-stm32mp-4.0.0-stm32mp-r1-r0

Information about "OP-TEE source" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=OP-TEE source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=OP-TEE source | request=path}}<br>

Name: optee-os-stm32mp-4.0.0-stm32mp-r1-r0.tar.xz
Path: optee-os-stm32mp-4.0.0-stm32mp-r1-r0

Information about "External DT" for latest revision requested
Installation name: {{EcosystemRelease/Package | revision=latest | package=External DT | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=latest | package=External DT | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=External DT | request=path}}<br>

Installation name: external-dt-6.0-r0
Name: external-dt-6.0-r0.tar.xz
Path: stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/external-dt-6.0-r0/

Information about "gcnano-driver package" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=gcnano-driver package | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=gcnano-driver package | device=MP2 | request=path}}<br>

Name (MP2): gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0
Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/sources/aarch64-ostl-linux/gcnano-driver-stm32mp-6.4.19-stm32mp2-r1-rc8-r0

Information about "gcnano-driver source" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=gcnano-driver source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=latest | package=gcnano-driver source | request=path}}<br>

Name: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0.tar.xz
Path: gcnano-driver-stm32mp-6.4.19-stm32mp1-r1-rc8-r0

Information about "STM32CubeMPU" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=STM32CubeMPU | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=STM32CubeMPU | device=MP2 | request=path}}<br>

Name (MP2): en.STM32Cube_FW_MP2_V1.1.0.zip
Path (MP2): STM32Cube_FW_MP2_V1.1.0

Information about "TF-M" for latest revision requested
Name (MP2): {{EcosystemRelease/Package | revision=latest | package=TF-M | device=MP2 | request=name}}<br>
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=TF-M | device=MP2 | request=path}}<br>

Name (MP2): to be completed packageNA
Path (MP2): to be completed packageNA

Information about "Debug symbol files" for latest revision requested
Path (MP2): {{EcosystemRelease/Package | revision=latest | package=Debug symbol files | device=MP2 | request=path}}<br>

Path (MP2): stm32mp2-openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06/images/stm32mp2

Information about "Licenses package" for latest revision requested

Name (MP2): {{EcosystemRelease/Package | revision=latest | package=Licenses package | device=MP2 | request=name}}<br>
URL (MP2): [{{EcosystemRelease/Package | revision=latest | package=Licenses package | device=MP2 | request=url}}]<br>

Name (MP2): LICENSES-world-openstlinux-weston-stm32mp2.tar.gz
URL (MP2): [7]

Information about "OpenSTLinux distribution" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=OpenSTLinux distribution | request=name}}<br>
URL: [{{EcosystemRelease/Package | revision=latest | package=OpenSTLinux distribution | request=url}}]<br>

Name: openstlinux-6.6-yocto-scarthgap-mpu-v24.11.06
URL: [8]

Information about "Buildroot distribution" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=Buildroot distribution | request=name}}<br>
URL: [{{EcosystemRelease/Package | revision=latest | package=Buildroot distribution | request=url}}]<br>

Name: openstlinux-6.6-buildroot-2024.02.9-mpu-v24.11.06
URL: [9]

Information about "OpenWRT distribution" for latest revision requested
Name: {{EcosystemRelease/Package | revision=latest | package=OpenWRT distribution | request=name}}<br>
URL: [{{EcosystemRelease/Package | revision=latest | package=OpenWRT distribution | request=url}}]<br>

Name: openstlinux-6.1-openwrt-master-mpu-v24.06.26
URL: [10]

4.11. Basic examples for v5.0.0 release[edit source]

You type You get
Information about "Images package" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=Images package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=Images package | device =MP1 | request=name}}<br>
Name (MP2_A35_TD): {{EcosystemRelease/Package | revision=5.0.0 | package=Images package | device=MP2_A35_TD | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Images package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Images package | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2_A35_TD): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-x86 package" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 package | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-x86 installation script" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 installation script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 installation script | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 installation script | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 installation script | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-x86 setup script" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 setup script | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 setup script | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-x86 setup script | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

"SDK package", "SDK installation script" and "SDK setup script" temporarily kept for compatibility
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK package | request=name}}<br>
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK installation script | request=name}}<br>
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK setup script | request=name}}<br>

Name (default): unknown revision
Name (default): unknown revision
Name (default): unknown revision

Information about "SDK-arm64 package" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 package | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 package | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 package | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 package | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-arm64 installation script" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 installation script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 installation script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 installation script | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 installation script | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 installation script | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "SDK-arm64 setup script" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 setup script | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 setup script | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 setup script | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 setup script | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=SDK-arm64 setup script | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OpenSTLinux BSP package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux BSP package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux BSP package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux BSP package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Linux kernel package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Linux kernel source" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Linux kernel source | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "U-Boot package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "U-Boot source" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=U-Boot source | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-A package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-A package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-A package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=TF-A package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-A source" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-A source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-A source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=TF-A source | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OP-TEE package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OP-TEE source" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=OP-TEE source | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "External DT" for v5.0.0 revision requested
Installation name: {{EcosystemRelease/Package | revision=5.0.0 | package=External DT | request=inst name}}<br>
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=External DT | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=External DT | request=path}}<br>

Installation name: unknown revision
Name: unknown revision
Path: unknown revision

Information about "gcnano-driver package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "gcnano-driver source" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver source | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver source | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=gcnano-driver source | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "STM32CubeMPU" for v5.0.0 revision requested
Name (default): {{EcosystemRelease/Package | revision=5.0.0 | package=STM32CubeMPU | request=name}}<br>
Name (MP1): {{EcosystemRelease/Package | revision=5.0.0 | package=STM32CubeMPU | device=MP1 | request=name}}<br>
Name (MP2): {{EcosystemRelease/Package | revision=5.0.0 | package=STM32CubeMPU | device=MP2 | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=STM32CubeMPU | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=STM32CubeMPU | request=url}}]<br>

Name (default): unknown revision
Name (MP1): unknown revision
Name (MP2): unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "TF-M" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-M| request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=TF-M| request=path}}<br>

Name: unknown revision
Path: unknown revision

Information about "Debug symbol files" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=Debug symbol files | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Debug symbol files | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Debug symbol files | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Licenses package" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=Licenses package | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Licenses package | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Licenses package | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OpenSTLinux distribution" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=OpenSTLinux distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "Buildroot distribution" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=Buildroot distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=Buildroot distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=Buildroot distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

Information about "OpenWRT distribution" for v5.0.0 revision requested
Name: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenWRT distribution | request=name}}<br>
Path: {{EcosystemRelease/Package | revision=5.0.0 | package=OpenWRT distribution | request=path}}<br>
URL: [{{EcosystemRelease/Package | revision=5.0.0 | package=OpenWRT distribution | request=url}}]<br>

Name: unknown revision
Path: unknown revision
URL: [unknown revision]

4.12. Basic examples for legacy release[edit source]

Currently, there is no legacy release in the scope of the v5 ecosystem release flow.

4.13. Basic examples for former releases[edit source]

Currently, there is no former release in the scope of the v5 ecosystem release flow.



4.14. Miscellaneous templates[edit | edit source]

Other templates available in the wiki ares listed in the below table. They are all public and unprotected.

Template Comment
Template:= Used to include an equal character = as part of a template argument
Template:Av ref file Used to give the URL of a downloadable audio and video file to be stored in a local directory of the board for test purpose
Template specific to stm32mpu wiki
Template:Av ref http Used to give the URL of an audio and video stream for test purpose
Template specific to stm32mpu wiki
Template:Extension DPL Automatically created for the DynamicPageList extension
Template:GSModuleCurrent Used by the pages of the Getting started book to highlight the module currently presented
Template:GSModuleNext Used by the pages of the Getting started book to highlight other modules than the one currently presented
Template:GSStepCurrent Used by the pages of the Getting started book to highlight the step currently presented
Template:GSStepNext Used by the pages of the Getting started book to highlight other steps than the one currently presented
Template:ImageMap Used for image maps
Template:Image ref file Used to give the URL of a downloadable picture file to be stored in a local directory of the board for test purpose
Template:ServiceCenter Example Automatically created for the BlueSpiceServiceCenter extension

5. References[edit | edit source]

6. Annex A: how many pages use the templates[edit | edit source]

Template Associated protected template How many pages use it
Template:= 1 (here)
Template:Android 5 (here)
Template:ArticleBasedOnModel ProtectedTemplate:ArticleBasedOnModel 293 (here)
Template:ArticleToRename 8 (here)
Template:ArticleToDelete 3 (here)
Template:Av ref file 4 (here)
Template:Av ref http 2 (here)
Template:Board 197 (here)
Template:Board$ 248 (here)
Template:ClonedFrom ProtectedTemplate:ClonedFrom 7 (here)
Template:CodeSource 349 (here)
Template:DocSource 98 (here)
Template:EcosystemFlow 1 (here)
Template:EcosystemFlow/Archives 17 (here)
Template:EcosystemRelease 136 (here)
Template:EcosystemRelease/Component 119 (here)
Template:EcosystemRelease/Components 107 (here)
Template:EcosystemRelease/Package 72 (here)
Template:EcosystemRelease/Revision 153 (here)
Template:Extension DPL 3 (here)
Template:FileSource ProtectedTemplate:FileSource 500 (here)
Template:GDB$ 5 (here)
Template:GSModuleCurrent 48 (here)
Template:GSModuleNext 48 (here)
Template:GSStepCurrent 48 (here)
Template:GSStepNext 48 (here)
Template:Green 91 (here)
Template:Grey 9 (here)
Template:Highlight 500 (here)
Template:HighlightParam 210 (here)
Template:ImageMap 89 (here)
Template:Image ref file 3 (here)
Template:Info 392 (here)
Template:InternalInfo ProtectedTemplate:InternalInfo 75 (here)
Template:MicroprocessorDevice 428 (here)
Template:N 45 (here)
Template:NoIndex 153 (here)
Template:Orange 12 (here)
Template:PC$ 214 (here)
Template:PublicationRequestId ProtectedTemplate:PublicationRequestId 500 (here)
Template:Red 11 (here)
Template:ReviewsComments ProtectedTemplate:ReviewsComments 188 (here)
Template:STDarkBlue 500 (here)
Template:STDarkGreen 113 (here)
Template:STDarkGrey 11 (here)
Template:STLightBlue 500 (here)
Template:STLightGreen 148 (here)
Template:STLightGrey 173 (here)
Template:STMediumGrey 163 (here)
Template:STPink 500 (here)
Template:STPurple 99 (here)
Template:STTextGrey 2 (here)
Template:STYellow 157 (here)
Template:ServiceCenter Example 0 (here)
Template:SoftwareLicenseAgreement 76 (here)
Template:U-Boot$ 14 (here)
Template:UnderConstruction 20 (here)
Template:UpdateNeededForNewBoard 28 (here)
Template:UpdateNeededForNewDevice 3 (here)
Template:UpdateNeededForNewRelease 71 (here)
Template:Warning 342 (here)
Template:Y 54 (here)