Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François Revol
firmware
Commits
cc8e8822
Commit
cc8e8822
authored
Aug 18, 2019
by
Jannis Rieger
Browse files
fix(booloader): prevent tr from outputting utf-8 characters
parent
e924ecee
Changes
1
Hide whitespace changes
Inline
Side-by-side
bootloader/build_multi_image.sh
View file @
cc8e8822
...
...
@@ -6,7 +6,7 @@ BIN1="$2"
BIN2
=
"
$3
"
BINOUT
=
"
$4
"
dd
if
=
/dev/zero
ibs
=
1k
count
=
448 2>/dev/null |
LANG
=
C
tr
"
\0
00"
"
\3
77"
>
"
$BINOUT
"
dd
if
=
/dev/zero
ibs
=
1k
count
=
448 2>/dev/null |
LANG
=
C
LC_CTYPE
=
C
tr
"
\0
00"
"
\3
77"
>
"
$BINOUT
"
dd
if
=
"
$BIN1
"
of
=
"
$BINOUT
"
conv
=
notrunc 2>/dev/null
dd
if
=
"
$BIN2
"
>>
"
$BINOUT
"
2>/dev/null
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment