diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 19a53e0417..759e708dac 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -3034,6 +3034,49 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
+ INITRAMFS_IMAGE
+
+
+ Causes the OpenEmbedded build system to build an additional
+ recipe as a dependency to your root filesystem recipe
+ (e.g. core-image-sato).
+ The additional recipe is used to create an initial RAM disk
+ (initramfs) that might be needed during the initial boot of
+ the target system to accomplish such things as loading
+ kernel modules prior to mounting the root file system.
+
+
+
+ When you set the variable, specify the name of the
+ initramfs you want created.
+ The following example, which is set in the
+ local.conf configuration file, causes
+ a separate recipe to be created that results in an
+ initramfs image named
+ core-image-sato-initramfs.bb to be
+ created:
+
+ INITRAMFS_IMAGE = "core-image-minimal-initramfs"
+
+ By default, the
+ kernel
+ class sets this variable to a null string as follows:
+
+ INITRAMFS_IMAGE = ""
+
+
+
+
+ See the
+ local.conf.sample.extended
+ file for additional information.
+ You can also reference the
+ kernel.bbclass
+ file to see how the variable is used.
+
+
+
+
INITRAMFS_IMAGE_BUNDLE
@@ -3068,7 +3111,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
You cannot set the variable in a recipe file.
See the
- local.conf.sample.extended
+ local.conf.sample.extended
file for additional information.