Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
bc006b81
Commit
bc006b81
authored
7 years ago
by
Julien Lecoeur
Committed by
Beat Küng
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
can_boot_descriptor: python3 compatibility
parent
87e9ad0c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tools/make_can_boot_descriptor.py
+11
-8
11 additions, 8 deletions
Tools/make_can_boot_descriptor.py
with
11 additions
and
8 deletions
Tools/make_can_boot_descriptor.py
+
11
−
8
View file @
bc006b81
...
...
@@ -6,7 +6,7 @@ import subprocess
import
struct
import
optparse
import
binascii
import
cString
IO
from
io
import
Bytes
IO
class
GitWrapper
:
@classmethod
...
...
@@ -84,14 +84,17 @@ class FirmwareImage(object):
self
.
_do_close
=
False
self
.
_padding
=
0
else
:
self
.
_file
=
open
(
path_or_file
,
mode
+
"
b
"
)
if
"
b
"
not
in
mode
:
self
.
_file
=
open
(
path_or_file
,
mode
+
"
b
"
)
else
:
self
.
_file
=
open
(
path_or_file
,
mode
)
self
.
_do_close
=
True
self
.
_padding
=
4
if
"
r
"
in
mode
:
self
.
_contents
=
cStringIO
.
String
IO
(
self
.
_file
.
read
())
self
.
_contents
=
Bytes
IO
(
self
.
_file
.
read
())
else
:
self
.
_contents
=
cStringIO
.
String
IO
()
self
.
_contents
=
Bytes
IO
()
self
.
_do_write
=
False
self
.
_length
=
None
...
...
@@ -152,9 +155,9 @@ class FirmwareImage(object):
# descriptor zeroed out.
crc_offset
=
self
.
app_descriptor_offset
+
len
(
AppDescriptor
.
SIGNATURE
)
content
=
bytearray
(
self
.
_contents
.
getvalue
())
content
[
crc_offset
:
crc_offset
+
8
]
=
bytearray
(
"
\x
00
"
*
8
)
content
[
crc_offset
:
crc_offset
+
8
]
=
bytearray
.
fromhex
(
"
00
"
*
8
)
if
self
.
_padding
:
content
+=
bytearray
(
"
\x
ff
"
*
self
.
_padding
)
content
+=
bytearray
.
fromhex
(
"
ff
"
*
self
.
_padding
)
val
=
MASK
for
byte
in
content
:
val
^=
(
byte
<<
56
)
&
MASK
...
...
@@ -261,7 +264,7 @@ if __name__ == "__main__":
try
:
options
.
vcs_commit
=
int
(
GitWrapper
.
command
(
"
rev-list HEAD --max-count=1 --abbrev=8 --abbrev-commit
"
),
16
)
except
Exception
as
e
:
print
"
Git Command failed
"
+
str
(
e
)
+
"
- Exiting!
"
print
(
"
Git Command failed
"
+
str
(
e
)
+
"
- Exiting!
"
)
quit
()
if
args
:
...
...
@@ -271,7 +274,7 @@ if __name__ == "__main__":
in_file
=
sys
.
stdin
out_file
=
sys
.
stdout
bootloader_image
=
""
bootloader_image
=
b
""
if
options
.
bootloader_image
:
with
open
(
options
.
bootloader_image
,
"
rb
"
)
as
bootloader
:
bootloader_image
=
bootloader
.
read
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment