summaryrefslogtreecommitdiff
path: root/tools/mk_envimg/README
diff options
context:
space:
mode:
authorrickard evertsson <rickard.evertsson@stericsson.com>2010-11-03 13:58:06 +0100
committerMichael BRANDT <michael.brandt@stericsson.com>2010-11-03 15:39:28 +0100
commitc7ac92701939f1fd186711a03518bff2bc7d6bcf (patch)
tree60cdf3ef1e5d4ed054795bcde60788b2e3649eb4 /tools/mk_envimg/README
parent5b2813846cd986e430aad0509758a7764cee76be (diff)
mk_envimg: Add support to have comments in input config file
Adds support to have comments in the input file to mk_envimg. Simply start the line with # and all following characters on that line will be treated as a comment. Change-Id: I119be1ebf0c80a7f6056632ff56b8f91beae364f Signed-off-by: rickard evertsson <rickard.evertsson@stericsson.com> Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/7786 Reviewed-by: Michael BRANDT <michael.brandt@stericsson.com> Reviewed-by: Robert ROSENGREN <robert.rosengren@stericsson.com>
Diffstat (limited to 'tools/mk_envimg/README')
-rw-r--r--tools/mk_envimg/README11
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/mk_envimg/README b/tools/mk_envimg/README
index 97406ab14..ae9b76462 100644
--- a/tools/mk_envimg/README
+++ b/tools/mk_envimg/README
@@ -20,11 +20,14 @@ If an input file is specified it will remove, modify and/or remove
default environment variables.
Input file examples:
-* Add a new variable:
+* Add a new variable -> write the new variable and its value:
an_new_variable=a_new_value
-* Remove the variable bootargs
+* Remove the variable bootargs -> write its name without a value:
bootargs
-* Modify the variable bootargs
-bootargs=a_new_value \ No newline at end of file
+* Modify the variable bootargs -> write its name with a new value:
+bootargs=a_new_value
+
+* Comments -> add # at the beginning of the line
+# This is a comment \ No newline at end of file