summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorAntonin Godard <antonin.godard@bootlin.com>2024-10-25 16:07:33 +0200
committerSteve Sakoman <steve@sakoman.com>2024-12-17 12:58:11 -0800
commit13a641dffbfb64f8e0dbf6d213666edf608cf8e8 (patch)
treec1a082cb457072360a8201e08ae2b67c73812201 /documentation
parent18e3d524c782e3397283c739836d25dd6a7bb0f0 (diff)
downloadpoky-13a641dffbfb64f8e0dbf6d213666edf608cf8e8.tar.gz
docs: update current releases
Remove dunfell and nanbield which are not supported anymore. Add styhead as an active release. Set walnascar as the dev branch. The switcher menu now contains: - Unstable (dev) - Styhead (5.1) - Scarthgap (5.0.4) - Kirkstone (4.0.22) Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> (From yocto-docs rev: 1b62abaadba198627d2a092ffd29046fe9fcf139) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> (cherry picked from commit 4c81e2856c268d7d0221ebb6b8156ad65b9e83ca) Signed-off-by: Antonin Godard <antonin.godard@bootlin.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/poky.yaml.in12
-rwxr-xr-xdocumentation/set_versions.py8
2 files changed, 11 insertions, 9 deletions
diff --git a/documentation/poky.yaml.in b/documentation/poky.yaml.in
index 197e6c757a..66f758fe85 100644
--- a/documentation/poky.yaml.in
+++ b/documentation/poky.yaml.in
@@ -1,10 +1,10 @@
1DISTRO : "5.0" 1DISTRO : "5.1"
2DISTRO_NAME_NO_CAP : "scarthgap" 2DISTRO_NAME_NO_CAP : "styhead"
3DISTRO_NAME : "Scarthgap" 3DISTRO_NAME : "Styhead"
4DISTRO_NAME_NO_CAP_MINUS_ONE : "nanbield" 4DISTRO_NAME_NO_CAP_MINUS_ONE : "scarthgap"
5DISTRO_NAME_NO_CAP_LTS : "scarthgap" 5DISTRO_NAME_NO_CAP_LTS : "scarthgap"
6YOCTO_DOC_VERSION : "5.0" 6YOCTO_DOC_VERSION : "5.1"
7DISTRO_REL_TAG : "yocto-5.0" 7DISTRO_REL_TAG : "yocto-5.1"
8DOCCONF_VERSION : "dev" 8DOCCONF_VERSION : "dev"
9BITBAKE_SERIES : "" 9BITBAKE_SERIES : ""
10YOCTO_DL_URL : "https://downloads.yoctoproject.org" 10YOCTO_DL_URL : "https://downloads.yoctoproject.org"
diff --git a/documentation/set_versions.py b/documentation/set_versions.py
index dec0780834..376337e7b5 100755
--- a/documentation/set_versions.py
+++ b/documentation/set_versions.py
@@ -26,9 +26,9 @@ ourversion = None
26if len(sys.argv) == 2: 26if len(sys.argv) == 2:
27 ourversion = sys.argv[1] 27 ourversion = sys.argv[1]
28 28
29activereleases = ["scarthgap", "nanbield", "kirkstone", "dunfell"] 29activereleases = ["styhead", "scarthgap", "kirkstone"]
30devbranch = "styhead" 30devbranch = "walnascar"
31ltsseries = ["scarthgap", "kirkstone", "dunfell"] 31ltsseries = ["scarthgap", "kirkstone"]
32 32
33# used by run-docs-builds to get the default page 33# used by run-docs-builds to get the default page
34if ourversion == "getlatest": 34if ourversion == "getlatest":
@@ -36,6 +36,7 @@ if ourversion == "getlatest":
36 sys.exit(0) 36 sys.exit(0)
37 37
38release_series = collections.OrderedDict() 38release_series = collections.OrderedDict()
39release_series["walnascar"] = "5.2"
39release_series["styhead"] = "5.1" 40release_series["styhead"] = "5.1"
40release_series["scarthgap"] = "5.0" 41release_series["scarthgap"] = "5.0"
41release_series["nanbield"] = "4.3" 42release_series["nanbield"] = "4.3"
@@ -69,6 +70,7 @@ release_series["laverne"] = "0.9"
69 70
70 71
71bitbake_mapping = { 72bitbake_mapping = {
73 "walnascar" : "2.12",
72 "styhead" : "2.10", 74 "styhead" : "2.10",
73 "scarthgap" : "2.8", 75 "scarthgap" : "2.8",
74 "nanbield" : "2.6", 76 "nanbield" : "2.6",