From 3cd74158dd4556a89ea3f66c7fd6f6c93c5a6c15 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Mon, 18 Nov 2013 09:33:28 -0800 Subject: [PATCH] dev-manual: Updated EXTRA_IMAGE_FEATURES operater for read-only-rootfs example The operator used was "=" which was inconsistent in light of previous uses of the variable in the ptest section. I changed the operator to "+=" to be consistent. Reported-by: Robert P. J. Day (From yocto-docs rev: 2cc73ae4e3a543a60bcc29b54d2de97b08f990db) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-common-tasks.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 65a6b6fe33..2c949908c5 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -5166,7 +5166,7 @@ the details. or - EXTRA_IMAGE_FEATURES = "read-only-rootfs" + EXTRA_IMAGE_FEATURES += "read-only-rootfs"