diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-11 13:23:25 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-02 10:28:12 -0500 |
commit | fc8af3803f9b4bd0ea8be8a7d2c4e915dc19c3a7 (patch) | |
tree | 6995ea6dc8a5ab945b926b243a5c55d8585c11dc /tools/buildman | |
parent | f44a52af4df0a56c0971ede516a1ac2194f29951 (diff) | |
download | u-boot-fc8af3803f9b4bd0ea8be8a7d2c4e915dc19c3a7.tar.gz |
buildman: Update default config to build for sandbox
At present the default .buildman file written by buildman does not specify
a default toolchain. Add an 'other' line so this works correctly and
sandbox builds run as expected.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/bsettings.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py index 0b7208da373..e634bbb279b 100644 --- a/tools/buildman/bsettings.py +++ b/tools/buildman/bsettings.py @@ -74,6 +74,7 @@ def CreateBuildmanConfigFile(config_fname): print('''[toolchain] # name = path # e.g. x86 = /opt/gcc-4.6.3-nolibc/x86_64-linux +other = / [toolchain-prefix] # name = path to prefix |