mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 17:26:36 +01:00
Since the newly introduced image-artifact-names class is inherited at later processing stage, individual IMAGE_NAME settings are overridden (hopefully by accident instead on purpose). Allow derived distributions define their own name schema by setting defaults iwth question mark. (From OE-Core rev: d0f18376dca5649aa80aff2536378763740ecda9) Signed-off-by: Jens Rehsack <sno@netbsd.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
709 B
Plaintext
16 lines
709 B
Plaintext
##################################################################
|
|
# Specific image creation and rootfs population info.
|
|
##################################################################
|
|
|
|
IMAGE_BASENAME ?= "${PN}"
|
|
IMAGE_VERSION_SUFFIX ?= "-${DATETIME}"
|
|
IMAGE_VERSION_SUFFIX[vardepsexclude] += "DATETIME"
|
|
IMAGE_NAME ?= "${IMAGE_BASENAME}-${MACHINE}${IMAGE_VERSION_SUFFIX}"
|
|
IMAGE_LINK_NAME ?= "${IMAGE_BASENAME}-${MACHINE}"
|
|
|
|
# IMAGE_NAME is the base name for everything produced when building images.
|
|
# The actual image that contains the rootfs has an additional suffix (.rootfs
|
|
# by default) followed by additional suffices which describe the format (.ext4,
|
|
# .ext4.xz, etc.).
|
|
IMAGE_NAME_SUFFIX ??= ".rootfs"
|