diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2019-12-05 16:22:08 +0100 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2020-01-16 11:43:12 +0100 |
commit | 694f774c113da4e2b15fead6b3e19ac95a9528bd (patch) | |
tree | 8ecba074d00c30ea42125a41ca15fe17effc67d2 /lavalab-gen.py | |
parent | a681d6e6e7d11743b6d893a68dc98347c68b779c (diff) |
Add raw_custom_option
For some options we need to not have the space around them, like ones
needing "-%}" or coments.
Introduce raw_custom_option for such cases.
Diffstat (limited to 'lavalab-gen.py')
-rwxr-xr-x | lavalab-gen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lavalab-gen.py b/lavalab-gen.py index 0c7f726..a766e5f 100755 --- a/lavalab-gen.py +++ b/lavalab-gen.py @@ -743,6 +743,9 @@ def main(): else: for line in board["custom_option"].splitlines(): device_line += "{%% %s %%}\n" % line + if "raw_custom_option" in board: + for coption in board["raw_custom_option"]: + device_line += "%s\n" % coption if not os.path.isdir(device_path): os.mkdir(device_path) if not os.path.isdir(devices_path): |