Skip to content
Snippets Groups Projects
Commit 46b08073 authored by Martyn Welch's avatar Martyn Welch
Browse files

Simplify download page to just stable

parent fbdd959e
No related branches found
No related tags found
No related merge requests found
......@@ -5,25 +5,38 @@ weight = 100
title = "Image Download"
+++
The Apertis project provides a number of images, designed for evaluation and development purposes. The project maintains a number of versions of Apertis at any given time. Releases are made for each version on quarterly cadence. With each version undergoing a number of development releases, culminating in a new version being released in the first quarter each year, which is then supported for a defined period with update releases. As a result, the following versions of Apertis are available:
- **Stable**: Latest fully supported release. This release will be receiving quarterly updates.
- **Old-Stable**: Previous stable release. Limited quarterly updates remaining.
- **Development**: The current work in progress and will eventually become the next stable release. Such releases may contain functionality that is not fully stabilised. Supported until next development release.
- **Pre-release**: A special release made in the forth quarter of each year. It is the result of the previous development releases and comprises what will become the next stable release. Work on a new development will have started in parallel with the pre-release with minimal changes made to the pre-release to fix issues found during testing. Supported until a new stable release made.
<style>
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<p>Note that the position of the tooltip text isn't very good. Go back to the tutorial and continue reading on how to position the tooltip in a desirable way.</p>
{{% notice info %}}
For more information regarding support timescales, please refer to the
[Apertis release flow]({{< ref "release-flow.md#apertis-release-flow" >}}).
{{% /notice %}}
**Please choose your preferred version:**
<select>
<option selected>Stable: v2020</option>
<option>Old-Stable: v2019</option>
<option>Pre-release: v2021pre</option>
<option>Development: v2022dev0</option>
</select>
The Apertis project provides a number of images, designed for evaluation and development purposes.
**Please select the image type you require:**
......@@ -31,31 +44,17 @@ For more information regarding support timescales, please refer to the
<input type="radio" checked> **Minimal**: A compact image, designed to be run as a headless system on target hardware.<br />
<input type="radio"> **Target**: A more featureful image, providing an example graphical environment and designed to be run on target hardware.<br />
The image type you have selected is available for a number of different architectures. Please select the required architecture:
<select>
<option>Intel 64-bit (amd64)</option>
<option selected>ARM 32-bit (armhf)</option>
<option>ARM 64-bit (arm64)</option>
</select>
Images of this type are available for the following architectures:
| Image | Optional Downloads |
| ----- | ------------------ |
| [Intel 64-bit (amd64)]() | [bmap file]() |
| [ARM 32-bit (armhf)]() | [bmap file]() |
| [ARM 64-bit (arm64)]() | [bmap file]() |
{{% notice tip %}}
Refer to the [reference hardware]({{< ref "reference_hardware" >}}) section for more information regarding the target platforms supported for each architecture.
{{% /notice %}}
You have selected the following image:
**apertis_ostree_v2020-minimal-armhf-uboot_v2020.2.img.gz**
Please click the link below to start the download:
<button class="download_button" style="background-color:#33b540; color:white; border-left-style: solid; border-width: 1px; border-radius: 4px; position:absolute; transform: translate(-50%, -50%); left: 50%;">Download Now</button>
<script>
$('button.download_button').click(function(e) {
e.preventDefault();
window.open('https://images.apertis.org/release/v2020/v2020.2/armhf/minimal/apertis_ostree_v2020-minimal-armhf-uboot_v2020.2.img.gz');
window.open('https://images.apertis.org/release/v2020/v2020.2/armhf/minimal/apertis_ostree_v2020-minimal-armhf-uboot_v2020.2.img.bmap');
});
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment