Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tools
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
vendor
qcom-opensource
tools
Commits
88c731ed
Commit
88c731ed
authored
10 years ago
by
Linux Build Service Account
Committed by
Gerrit - the friendly Code Review server
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "linux-ramdump-parser-v2: fix the t32 path for 8939 and 8936"
parents
2307bae2
d1b7d176
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
linux-ramdump-parser-v2/boards.py
+2
-2
2 additions, 2 deletions
linux-ramdump-parser-v2/boards.py
linux-ramdump-parser-v2/ramdump.py
+2
-2
2 additions, 2 deletions
linux-ramdump-parser-v2/ramdump.py
with
4 additions
and
4 deletions
linux-ramdump-parser-v2/boards.py
+
2
−
2
View file @
88c731ed
...
@@ -171,7 +171,7 @@ class Board8939(Board):
...
@@ -171,7 +171,7 @@ class Board8939(Board):
super
(
Board8939
,
self
).
__init__
()
super
(
Board8939
,
self
).
__init__
()
self
.
socid
=
socid
self
.
socid
=
socid
self
.
board_num
=
8939
self
.
board_num
=
8939
self
.
cpu
=
'
CORTEXA
53
'
self
.
cpu
=
'
CORTEXA
7
'
self
.
ram_start
=
0x80000000
self
.
ram_start
=
0x80000000
self
.
smem_addr
=
smem_addr
self
.
smem_addr
=
smem_addr
self
.
phys_offset
=
0x80000000
self
.
phys_offset
=
0x80000000
...
@@ -184,7 +184,7 @@ class Board8936(Board):
...
@@ -184,7 +184,7 @@ class Board8936(Board):
super
(
Board8936
,
self
).
__init__
()
super
(
Board8936
,
self
).
__init__
()
self
.
socid
=
socid
self
.
socid
=
socid
self
.
board_num
=
8936
self
.
board_num
=
8936
self
.
cpu
=
'
CORTEXA
53
'
self
.
cpu
=
'
CORTEXA
7
'
self
.
ram_start
=
0x80000000
self
.
ram_start
=
0x80000000
self
.
smem_addr
=
0x6300000
self
.
smem_addr
=
0x6300000
self
.
phys_offset
=
0x80000000
self
.
phys_offset
=
0x80000000
...
...
This diff is collapsed.
Click to expand it.
linux-ramdump-parser-v2/ramdump.py
+
2
−
2
View file @
88c731ed
...
@@ -695,7 +695,7 @@ class RamDump():
...
@@ -695,7 +695,7 @@ class RamDump():
startup_script
=
open
(
out_path
+
'
/t32_startup_script.cmm
'
,
'
wb
'
)
startup_script
=
open
(
out_path
+
'
/t32_startup_script.cmm
'
,
'
wb
'
)
if
self
.
arm64
and
self
.
hw_id
==
8916
:
if
self
.
arm64
and
(
self
.
hw_id
==
8916
or
self
.
hw_id
==
8939
or
self
.
hw_id
==
8936
)
:
startup_script
.
write
(
'
sys.cpu CORTEXA53
\n
'
.
encode
(
'
ascii
'
,
'
ignore
'
))
startup_script
.
write
(
'
sys.cpu CORTEXA53
\n
'
.
encode
(
'
ascii
'
,
'
ignore
'
))
else
:
else
:
startup_script
.
write
(
'
sys.cpu {0}
\n
'
.
format
(
self
.
cpu_type
).
encode
(
'
ascii
'
,
'
ignore
'
))
startup_script
.
write
(
'
sys.cpu {0}
\n
'
.
format
(
self
.
cpu_type
).
encode
(
'
ascii
'
,
'
ignore
'
))
...
@@ -765,7 +765,7 @@ class RamDump():
...
@@ -765,7 +765,7 @@ class RamDump():
t32_bat
=
open
(
out_path
+
'
/launch_t32.bat
'
,
'
wb
'
)
t32_bat
=
open
(
out_path
+
'
/launch_t32.bat
'
,
'
wb
'
)
if
self
.
arm64
:
if
self
.
arm64
:
t32_binary
=
'
C:
\\
T32
\\
bin
\\
windows64
\\
t32MARM64.exe
'
t32_binary
=
'
C:
\\
T32
\\
bin
\\
windows64
\\
t32MARM64.exe
'
elif
self
.
hw_id
==
8916
:
elif
self
.
hw_id
==
8916
or
self
.
hw_id
==
8939
or
self
.
hw_id
==
8936
:
t32_binary
=
'
C:
\\
T32
\\
bin
\\
windows64
\\
t32MARM.exe
'
t32_binary
=
'
C:
\\
T32
\\
bin
\\
windows64
\\
t32MARM.exe
'
else
:
else
:
t32_binary
=
'
c:
\\
t32
\\
t32MARM.exe
'
t32_binary
=
'
c:
\\
t32
\\
t32MARM.exe
'
...
...
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