summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2016-08-18 17:05:26 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-19 08:40:23 +0100
commitdfb899d9c38162b1ade4d6468e56c3cd13678c0a (patch)
treed32be3a5e196f01e689be4071eb031f08b78389c /documentation
parentf1d2a932f63200b60aa3b1077e8e43d8f4d6d0bb (diff)
downloadpoky-dfb899d9c38162b1ade4d6468e56c3cd13678c0a.tar.gz
ref-manual: change SYSLINUX_ROOT to ROOT_VM for DISK_SIGNATURE variable
The SYSLINUX_ROOT variable was renamed to ROOT_VM in krogoth. (From yocto-docs rev: c4bbe8bc4967dd631b939f6806d65e2862df3424) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/ref-manual/ref-variables.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index ee1fcadad1..1221cab7ae 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -3141,15 +3141,15 @@
3141 by UUID to allow the kernel to locate the root device 3141 by UUID to allow the kernel to locate the root device
3142 even if the device name changes due to differences in 3142 even if the device name changes due to differences in
3143 hardware configuration. 3143 hardware configuration.
3144 By default, <filename>SYSLINUX_ROOT</filename> is set 3144 By default, <filename>ROOT_VM</filename> is set
3145 as follows: 3145 as follows:
3146 <literallayout class='monospaced'> 3146 <literallayout class='monospaced'>
3147 SYSLINUX_ROOT = "root=/dev/sda2" 3147 ROOT_VM ?= "root=/dev/sda2"
3148 </literallayout> 3148 </literallayout>
3149 However, you can change this to locate the root device 3149 However, you can change this to locate the root device
3150 using the disk signature instead: 3150 using the disk signature instead:
3151 <literallayout class='monospaced'> 3151 <literallayout class='monospaced'>
3152 SYSLINUX_ROOT = "root=PARTUUID=${DISK_SIGNATURE}-02" 3152 ROOT_VM = "root=PARTUUID=${DISK_SIGNATURE}-02"
3153 </literallayout> 3153 </literallayout>
3154 </para> 3154 </para>
3155 3155