Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
Merge pull request #375 from felixendres/master
Browse files Browse the repository at this point in the history
Make cpuinfo work on Tegra Jetson TX1
  • Loading branch information
FrancescAlted authored Mar 26, 2018
2 parents 8311697 + c1b4ab4 commit cee4072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpuinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def parse_arch(raw_arch_string):
arch = 'X86_64'
bits = 64
# ARM
elif re.match('^armv8-a$', raw_arch_string):
elif re.match('^armv8-a$|^aarch64$', raw_arch_string):
arch = 'ARM_8'
bits = 64
elif re.match('^armv7$|^armv7[a-z]$|^armv7-[a-z]$|^armv6[a-z]$', raw_arch_string):
Expand Down

0 comments on commit cee4072

Please sign in to comment.