summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/tags.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/bsp/tags.py')
-rw-r--r--scripts/lib/bsp/tags.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/scripts/lib/bsp/tags.py b/scripts/lib/bsp/tags.py
index 6d5feb0a59..3719427884 100644
--- a/scripts/lib/bsp/tags.py
+++ b/scripts/lib/bsp/tags.py
@@ -25,11 +25,13 @@
25# Tom Zanussi <tom.zanussi (at] intel.com> 25# Tom Zanussi <tom.zanussi (at] intel.com>
26# 26#
27 27
28OPEN_TAG = "{{" 28OPEN_TAG = "{{"
29CLOSE_TAG = "}}" 29CLOSE_TAG = "}}"
30ASSIGN_TAG = "{{=" 30ASSIGN_TAG = "{{="
31INPUT_TAG = "input" 31INPUT_TAG = "input"
32IF_TAG = "if" 32IF_TAG = "if"
33FILENAME_TAG = "yocto-bsp-filename"
34DIRNAME_TAG = "yocto-bsp-dirname"
33 35
34INDENT_STR = " " 36INDENT_STR = " "
35 37