Skip to content
Snippets Groups Projects
Commit bbc7c04d authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ldrp_v2: Support active cpus verification only for 64-bit platforms"

parents 91b74976 6f3fc718
No related branches found
No related tags found
No related merge requests found
...@@ -379,8 +379,9 @@ if __name__ == '__main__': ...@@ -379,8 +379,9 @@ if __name__ == '__main__':
get_wdog_timing(dump) get_wdog_timing(dump)
print_out_str('---------- end watchdog time-----') print_out_str('---------- end watchdog time-----')
# Always verify Scheduler requirement for active_cpus # Always verify Scheduler requirement for active_cpus on 64-bit platforms.
verify_active_cpus(dump) if options.arm64:
verify_active_cpus(dump)
# we called parser.add_option with dest=p.cls.__name__ above, # we called parser.add_option with dest=p.cls.__name__ above,
# so if the user passed that option then `options' will have a # so if the user passed that option then `options' will have a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment