summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Halstead <mhalstead@linuxfoundation.org>2023-11-09 09:07:31 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-11-13 17:29:26 +0000
commitabf3e54d118139e1fcd952a691b77a0c53db6a30 (patch)
treed29bbe783a7a9d6e3d9ea98ebed01be260f2eea9 /documentation
parent9d830bb2ea43c5954b61b233aafae7e1ce89469d (diff)
downloadpoky-abf3e54d118139e1fcd952a691b77a0c53db6a30.tar.gz
docs: add support for nanbield (4.3) release
This adds support for the Nanbield (4.3) release and update the current dev branch to Scarthgap. (From yocto-docs rev: cfbb2cda2c3d221f944ae610c05039c9d12093bc) Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/poky.yaml.in12
-rwxr-xr-xdocumentation/set_versions.py6
2 files changed, 10 insertions, 8 deletions
diff --git a/documentation/poky.yaml.in b/documentation/poky.yaml.in
index 2922214bc9..7a686ac4e1 100644
--- a/documentation/poky.yaml.in
+++ b/documentation/poky.yaml.in
@@ -1,10 +1,10 @@
1DISTRO : "4.2" 1DISTRO : "4.3"
2DISTRO_NAME_NO_CAP : "mickledore" 2DISTRO_NAME_NO_CAP : "nanbield"
3DISTRO_NAME : "Mickledore" 3DISTRO_NAME : "Nanbield"
4DISTRO_NAME_NO_CAP_MINUS_ONE : "langdale" 4DISTRO_NAME_NO_CAP_MINUS_ONE : "mickledore"
5DISTRO_NAME_NO_CAP_LTS : "kirkstone" 5DISTRO_NAME_NO_CAP_LTS : "kirkstone"
6YOCTO_DOC_VERSION : "4.2" 6YOCTO_DOC_VERSION : "4.3"
7DISTRO_REL_TAG : "yocto-4.2" 7DISTRO_REL_TAG : "yocto-4.3"
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 354dabe618..a7c4d5af0b 100755
--- a/documentation/set_versions.py
+++ b/documentation/set_versions.py
@@ -26,8 +26,8 @@ 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 = ["mickledore", "kirkstone", "dunfell"] 29activereleases = ["nanbield", "mickledore", "kirkstone", "dunfell"]
30devbranch = "nanbield" 30devbranch = "scarthgap"
31ltsseries = ["kirkstone", "dunfell"] 31ltsseries = ["kirkstone", "dunfell"]
32 32
33# used by run-docs-builds to get the default page 33# used by run-docs-builds to get the default page
@@ -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["scarthgap"] = "5.0"
39release_series["nanbield"] = "4.3" 40release_series["nanbield"] = "4.3"
40release_series["mickledore"] = "4.2" 41release_series["mickledore"] = "4.2"
41release_series["langdale"] = "4.1" 42release_series["langdale"] = "4.1"
@@ -67,6 +68,7 @@ release_series["laverne"] = "0.9"
67 68
68 69
69bitbake_mapping = { 70bitbake_mapping = {
71 "scarthgap" : "2.8",
70 "nanbield" : "2.6", 72 "nanbield" : "2.6",
71 "mickledore" : "2.4", 73 "mickledore" : "2.4",
72 "langdale" : "2.2", 74 "langdale" : "2.2",