summaryrefslogtreecommitdiff
path: root/tools/mk_envimg/README
diff options
context:
space:
mode:
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