diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index da23d563e6..562866f9ee 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -7515,13 +7515,20 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
KERNEL_IMAGE_BASE_NAME
- KERNEL_IMAGE_BASE_NAME[doc] = "The base name of the kernel image."
+ KERNEL_IMAGE_BASE_NAME[doc] = "The base name of the kernel image. Deprecated post Yocto Project 2.6 release."
- The base name of the kernel image.
- This variable is set in the
+
+ See the
+ KERNEL_IMAGE_NAME
+ variable for information.
+ The KERNEL_IMAGE_BASE_NAME
+ variable's name has changed post Yocto Project 2.6.
+
+ Prior to the 2.6 release of Yocto Project, this variable
+ was set in the
kernel class
as follows:
@@ -7573,6 +7580,40 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ KERNEL_IMAGE_NAME
+
+ KERNEL_IMAGE_NAME[doc] = "The base name of the kernel image."
+
+
+
+
+ The base name of the kernel image.
+ This variable is set in the
+ meta/classes/kernel-artifact-names.bbclass
+ file as follows:
+
+ KERNEL_IMAGE_NAME ?= "${KERNEL_ARTIFACT_NAME}"
+
+ The value of the KERNEL_ARTIFACT_NAME
+ variable, which is set in the same file, has the following
+ value:
+
+ KERNEL_ARTIFACT_NAME ?= "${PKGE}-${PKGV}-${PKGR}-${MACHINE}${IMAGE_VERSION_SUFFIX}"
+
+
+
+
+ See the
+ PKGE,
+ PKGV,
+ PKGR,
+ and
+ MACHINE
+ variables for additional information.
+
+
+
+
KERNEL_IMAGETYPE
KERNEL_IMAGETYPE[doc] = "The type of kernel to build for a device, usually set by the machine configuration files and defaults to 'zImage'."