diff options
Diffstat (limited to 'meta/classes-recipe/image-artifact-names.bbclass')
-rw-r--r-- | meta/classes-recipe/image-artifact-names.bbclass | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/classes-recipe/image-artifact-names.bbclass b/meta/classes-recipe/image-artifact-names.bbclass new file mode 100644 index 0000000000..5c4e746b90 --- /dev/null +++ b/meta/classes-recipe/image-artifact-names.bbclass | |||
@@ -0,0 +1,28 @@ | |||
1 | # | ||
2 | # Copyright OpenEmbedded Contributors | ||
3 | # | ||
4 | # SPDX-License-Identifier: MIT | ||
5 | # | ||
6 | |||
7 | ################################################################## | ||
8 | # Specific image creation and rootfs population info. | ||
9 | ################################################################## | ||
10 | |||
11 | IMAGE_BASENAME ?= "${PN}" | ||
12 | IMAGE_VERSION_SUFFIX ?= "-${DATETIME}" | ||
13 | IMAGE_VERSION_SUFFIX[vardepsexclude] += "DATETIME SOURCE_DATE_EPOCH" | ||
14 | IMAGE_NAME ?= "${IMAGE_BASENAME}-${MACHINE}${IMAGE_VERSION_SUFFIX}" | ||
15 | IMAGE_LINK_NAME ?= "${IMAGE_BASENAME}-${MACHINE}" | ||
16 | |||
17 | # IMAGE_NAME is the base name for everything produced when building images. | ||
18 | # The actual image that contains the rootfs has an additional suffix (.rootfs | ||
19 | # by default) followed by additional suffices which describe the format (.ext4, | ||
20 | # .ext4.xz, etc.). | ||
21 | IMAGE_NAME_SUFFIX ??= ".rootfs" | ||
22 | |||
23 | python () { | ||
24 | if bb.data.inherits_class('deploy', d) and d.getVar("IMAGE_VERSION_SUFFIX") == "-${DATETIME}": | ||
25 | import datetime | ||
26 | d.setVar("IMAGE_VERSION_SUFFIX", "-" + datetime.datetime.fromtimestamp(int(d.getVar("SOURCE_DATE_EPOCH")), datetime.timezone.utc).strftime('%Y%m%d%H%M%S')) | ||
27 | d.setVarFlag("IMAGE_VERSION_SUFFIX", "vardepvalue", "") | ||
28 | } | ||