We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1c92e commit 2e10930Copy full SHA for 2e10930
misc/acrn-config/target/misc.py
@@ -201,7 +201,7 @@ def dump_cpu_core_info(config):
201
print("\t{}".format(processor_id), end="", file=config)
202
203
processor_id += 1
204
- while (processor_id < int(line.split('-')[1].strip())):
+ while (processor_id <= int(line.split('-')[1].strip())):
205
print(", {}".format(processor_id), end="", file=config)
206
207
0 commit comments