summaryrefslogtreecommitdiff
path: root/scripts/build-vyos-image
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build-vyos-image')
-rwxr-xr-xscripts/build-vyos-image20
1 files changed, 10 insertions, 10 deletions
diff --git a/scripts/build-vyos-image b/scripts/build-vyos-image
index 389f54a4..6bfe3faa 100755
--- a/scripts/build-vyos-image
+++ b/scripts/build-vyos-image
@@ -32,12 +32,12 @@ import functools
import json
try:
- import toml
+ import tomli
import jinja2
import git
except ModuleNotFoundError as e:
print(f"Cannot load a required library: {e}")
- print("Please make sure the following Python3 modules are installed: toml jinja2 git")
+ print("Please make sure the following Python3 modules are installed: tomli jinja2 git")
import vyos_build_utils as utils
import vyos_build_defaults as defaults
@@ -120,8 +120,8 @@ if __name__ == "__main__":
## Load the file with default build configuration options
try:
- with open(defaults.DEFAULTS_FILE, 'r') as f:
- build_defaults = toml.load(f)
+ with open(defaults.DEFAULTS_FILE, 'rb') as f:
+ build_defaults = tomli.load(f)
except Exception as e:
print("Failed to open the defaults file {0}: {1}".format(defaults.DEFAULTS_FILE, e))
sys.exit(1)
@@ -213,16 +213,16 @@ if __name__ == "__main__":
build_config = merge_dicts(args, build_defaults)
## Load the flavor file and mix-ins
- with open(make_toml_path(defaults.BUILD_TYPES_DIR, build_config["build_type"]), 'r') as f:
- build_type_config = toml.load(f)
+ with open(make_toml_path(defaults.BUILD_TYPES_DIR, build_config["build_type"]), 'rb') as f:
+ build_type_config = tomli.load(f)
build_config = merge_dicts(build_type_config, build_config)
- with open(make_toml_path(defaults.BUILD_ARCHES_DIR, build_config["architecture"]), 'r') as f:
- build_arch_config = toml.load(f)
+ with open(make_toml_path(defaults.BUILD_ARCHES_DIR, build_config["architecture"]), 'rb') as f:
+ build_arch_config = tomli.load(f)
build_config = merge_dicts(build_arch_config, build_config)
- with open(make_toml_path(defaults.BUILD_FLAVORS_DIR, build_config["build_flavor"]), 'r') as f:
- flavor_config = toml.load(f)
+ with open(make_toml_path(defaults.BUILD_FLAVORS_DIR, build_config["build_flavor"]), 'rb') as f:
+ flavor_config = tomli.load(f)
build_config = merge_dicts(flavor_config, build_config)
## Rename and merge some fields for simplicity