diff --git a/documentation/poky-ref-manual/ref-variables.xml b/documentation/poky-ref-manual/ref-variables.xml
index 0d9f0c696d..d526981a1e 100644
--- a/documentation/poky-ref-manual/ref-variables.xml
+++ b/documentation/poky-ref-manual/ref-variables.xml
@@ -235,28 +235,25 @@
In other words, editable files might exist in the package that you do not
want reset as part of the package update process.
You can use the CONFFILES variable to list the files in the
- package that wish to prevent PMS from overwriting during this update process.
- The CONFFILES variable essentially tells the PMS about
- files in the package that you do not want updated as part of the package
- update process.
+ package that you wish to prevent the PMS from overwriting during this update process.
To use the CONFFILES variable, provide a package name
override that identifies the package.
- Then, provide a list of space-separated files that identify the
- editable files you want the PMS to exclude from the update process.
+ Then, provide a space-separated list of files.
Here is an example:
- CONFFILES_${PN} += "${bindir}/file1 ${bindir}/file2"
+ CONFFILES_${PN} += "${sysconfdir}/file1 \
+ ${sysconfdir}/file2 ${sysconfdir}/file3"
A relationship exists between the CONFFILES and
FILES variables.
- The files listed with CONFFILES must be a subset of
- the files listed with FILES.
+ The files listed within CONFFILES must be a subset of
+ the files listed within FILES.
Because the configuration files you provide with CONFFILES
are simply being identified so that the PMS will not overwrite them,
it makes sense that
@@ -538,7 +535,7 @@
To use the FILES variable, provide a package name
override that identifies the package.
- Then, provide a list of space-separated files or paths that identify the
+ Then, provide a space-separated list of files or paths that identifies the
files you want included as part of the package.
Here is an example:
@@ -558,7 +555,7 @@
- If some of files you provide with the FILES variable
+ If some of the files you provide with the FILES variable
are editable and you know they should not be
overwritten during the package update process by the Package Management
System (PMS), you can identify these files so that the PMS will not