diff options
author | Michael Halstead <mhalstead@linuxfoundation.org> | 2023-05-03 15:34:56 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-04 13:53:06 +0100 |
commit | d9a7f947246ffe7d0a43dbb2ed376189ac139df8 (patch) | |
tree | b1f35565e398843c2aebf8024c6ac999d55eb33c | |
parent | 225abef15bb2c36674ca620adb399b736f12dee6 (diff) | |
download | poky-d9a7f947246ffe7d0a43dbb2ed376189ac139df8.tar.gz |
docs: add support for mickledore (4.2) release
This adds support for the Mickledore (4.2) release and update the
current dev branch to Nanbield.
(From yocto-docs rev: 5321befbfdc014d469b298bdd5b31d684231b2cb)
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org>
Reviewed-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/poky.yaml.in | 12 | ||||
-rwxr-xr-x | documentation/set_versions.py | 6 |
2 files changed, 10 insertions, 8 deletions
diff --git a/documentation/poky.yaml.in b/documentation/poky.yaml.in index 1c072c1d05..b2b6a6330f 100644 --- a/documentation/poky.yaml.in +++ b/documentation/poky.yaml.in | |||
@@ -1,10 +1,10 @@ | |||
1 | DISTRO : "4.1" | 1 | DISTRO : "4.2" |
2 | DISTRO_NAME_NO_CAP : "langdale" | 2 | DISTRO_NAME_NO_CAP : "mickledore" |
3 | DISTRO_NAME : "Langdale" | 3 | DISTRO_NAME : "Mickledore" |
4 | DISTRO_NAME_NO_CAP_MINUS_ONE : "kirkstone" | 4 | DISTRO_NAME_NO_CAP_MINUS_ONE : "langdale" |
5 | DISTRO_NAME_NO_CAP_LTS : "kirkstone" | 5 | DISTRO_NAME_NO_CAP_LTS : "kirkstone" |
6 | YOCTO_DOC_VERSION : "4.1" | 6 | YOCTO_DOC_VERSION : "4.2" |
7 | DISTRO_REL_TAG : "yocto-4.1" | 7 | DISTRO_REL_TAG : "yocto-4.2" |
8 | DOCCONF_VERSION : "dev" | 8 | DOCCONF_VERSION : "dev" |
9 | BITBAKE_SERIES : "" | 9 | BITBAKE_SERIES : "" |
10 | YOCTO_DL_URL : "https://downloads.yoctoproject.org" | 10 | YOCTO_DL_URL : "https://downloads.yoctoproject.org" |
diff --git a/documentation/set_versions.py b/documentation/set_versions.py index efaebe43b5..354dabe618 100755 --- a/documentation/set_versions.py +++ b/documentation/set_versions.py | |||
@@ -26,8 +26,8 @@ ourversion = None | |||
26 | if len(sys.argv) == 2: | 26 | if len(sys.argv) == 2: |
27 | ourversion = sys.argv[1] | 27 | ourversion = sys.argv[1] |
28 | 28 | ||
29 | activereleases = ["langdale", "kirkstone", "dunfell"] | 29 | activereleases = ["mickledore", "kirkstone", "dunfell"] |
30 | devbranch = "mickledore" | 30 | devbranch = "nanbield" |
31 | ltsseries = ["kirkstone", "dunfell"] | 31 | ltsseries = ["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 | ||
38 | release_series = collections.OrderedDict() | 38 | release_series = collections.OrderedDict() |
39 | release_series["nanbield"] = "4.3" | ||
39 | release_series["mickledore"] = "4.2" | 40 | release_series["mickledore"] = "4.2" |
40 | release_series["langdale"] = "4.1" | 41 | release_series["langdale"] = "4.1" |
41 | release_series["kirkstone"] = "4.0" | 42 | release_series["kirkstone"] = "4.0" |
@@ -66,6 +67,7 @@ release_series["laverne"] = "0.9" | |||
66 | 67 | ||
67 | 68 | ||
68 | bitbake_mapping = { | 69 | bitbake_mapping = { |
70 | "nanbield" : "2.6", | ||
69 | "mickledore" : "2.4", | 71 | "mickledore" : "2.4", |
70 | "langdale" : "2.2", | 72 | "langdale" : "2.2", |
71 | "kirkstone" : "2.0", | 73 | "kirkstone" : "2.0", |