mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
buildman: Handle commit subjects containing unicode
One of these has crept in in this commit:
40a808f1
ARCv2: SLC: Make sure busy bit is set properly on SLC flushing
Adjust buildman to handle it.
Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b48bfc74ee
commit
9a6d2e2a6b
1 changed files with 3 additions and 2 deletions
|
@ -95,8 +95,9 @@ u-boot/ source directory
|
|||
# Possible build outcomes
|
||||
OUTCOME_OK, OUTCOME_WARNING, OUTCOME_ERROR, OUTCOME_UNKNOWN = range(4)
|
||||
|
||||
# Translate a commit subject into a valid filename
|
||||
trans_valid_chars = string.maketrans("/: ", "---")
|
||||
# Translate a commit subject into a valid filename (and handle unicode)
|
||||
trans_valid_chars = string.maketrans('/: ', '---')
|
||||
trans_valid_chars = trans_valid_chars.decode('latin-1')
|
||||
|
||||
BASE_CONFIG_FILENAMES = [
|
||||
'u-boot.cfg', 'u-boot-spl.cfg', 'u-boot-tpl.cfg'
|
||||
|
|
Loading…
Add table
Reference in a new issue