summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMaciej Borzecki <maciej.borzecki@open-rnd.pl>2014-12-19 15:35:51 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-12-19 22:36:14 +0000
commit88528a128fe7c11871c24706ff6d245b183d6975 (patch)
tree8ffbfdde1b3a7e7345f01655e818c5e7ea52c3fc /documentation
parent99bd2c41c681c1214a191f9eca4373fbffcf11f9 (diff)
downloadpoky-88528a128fe7c11871c24706ff6d245b183d6975.tar.gz
ref-manual: Update to the BOOT_IMAGE_FILES variable in the glossary
Update entry for IMAGE_BOOT_FILES with information on glob patterns. (From yocto-docs rev: ad3fc0061e3f4dc3ecc6b0a101685c301c5690e9) Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml31
1 files changed, 27 insertions, 4 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 16f703dc42..e3272fec79 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -3863,9 +3863,12 @@
3863 <glossdef> 3863 <glossdef>
3864 <para> 3864 <para>
3865 A space-separated list of files installed into the 3865 A space-separated list of files installed into the
3866 boot partition when preparing an image. 3866 boot partition when preparing an image using the
3867 By default, the files are installed under the same name as 3867 <filename>wic</filename> tool with the
3868 the source files. 3868 <filename>bootimg-partition</filename> source
3869 plugin.
3870 By default, the files are installed under
3871 the same name as the source files.
3869 To change the installed name, separate it from the 3872 To change the installed name, separate it from the
3870 original name with a semi-colon (;). 3873 original name with a semi-colon (;).
3871 Source files need to be located in 3874 Source files need to be located in
@@ -3875,7 +3878,27 @@
3875 <literallayout class="monospaced"> 3878 <literallayout class="monospaced">
3876 IMAGE_BOOT_FILES = "u-boot.img uImage;kernel" 3879 IMAGE_BOOT_FILES = "u-boot.img uImage;kernel"
3877 IMAGE_BOOT_FILES = "u-boot.${UBOOT_SUFFIX} ${KERNEL_IMAGETYPE}" 3880 IMAGE_BOOT_FILES = "u-boot.${UBOOT_SUFFIX} ${KERNEL_IMAGETYPE}"
3878 </literallayout></para> 3881 </literallayout>
3882 Alternatively, source files can be picked up using
3883 a glob pattern.
3884 In this case, the destination file
3885 will have the same name as the base name of the source file
3886 path.
3887 To install files into a directory within the
3888 target location, pass its name after a semi-colon
3889 (;).
3890 Here are two examples:
3891 <literallayout class="monospaced">
3892 IMAGE_BOOT_FILES = "bcm2835-bootfiles/*"
3893 IMAGE_BOOT_FILES = "bcm2835-bootfiles/*;boot/"
3894 </literallayout>
3895 The first example installs all files from
3896 <filename>${DEPLOY_DIR_IMAGE}/bcm2835-bootfiles</filename>
3897 into the root of the target partition.
3898 The second example installs the same files into a
3899 <filename>boot</filename> directory within the
3900 target partition.
3901 </para>
3879 </glossdef> 3902 </glossdef>
3880 </glossentry> 3903 </glossentry>
3881 3904