summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/ref-manual/variables.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/variables.rst b/documentation/ref-manual/variables.rst
index 8ebc17f24c..2e859c7184 100644
--- a/documentation/ref-manual/variables.rst
+++ b/documentation/ref-manual/variables.rst
@@ -2946,7 +2946,7 @@ system and gives an overview of their function and contents.
2946 an override for the associated type. Here is an example:: 2946 an override for the associated type. Here is an example::
2947 2947
2948 IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} \ 2948 IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} \
2949 --faketime --output=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.jffs2 \ 2949 --faketime --output=${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.jffs2 \
2950 ${EXTRA_IMAGECMD}" 2950 ${EXTRA_IMAGECMD}"
2951 2951
2952 You typically do not need to set this variable unless you are adding 2952 You typically do not need to set this variable unless you are adding
@@ -3095,10 +3095,10 @@ system and gives an overview of their function and contents.
3095 The :ref:`image <ref-classes-image>` class defines the manifest 3095 The :ref:`image <ref-classes-image>` class defines the manifest
3096 file as follows:: 3096 file as follows::
3097 3097
3098 IMAGE_MANIFEST ="${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.manifest" 3098 IMAGE_MANIFEST ="${IMGDEPLOYDIR}/${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.manifest"
3099 3099
3100 The location is 3100 The location is
3101 derived using the :term:`DEPLOY_DIR_IMAGE` 3101 derived using the :term:`IMGDEPLOYDIR`
3102 and :term:`IMAGE_NAME` variables. You can find 3102 and :term:`IMAGE_NAME` variables. You can find
3103 information on how the image is created in the ":ref:`overview-manual/concepts:image generation`" 3103 information on how the image is created in the ":ref:`overview-manual/concepts:image generation`"
3104 section in the Yocto Project Overview and Concepts Manual. 3104 section in the Yocto Project Overview and Concepts Manual.