Skip to content

Commit

Permalink
intel tool: fix boot_addr display
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverBzH committed Jan 10, 2024
1 parent 065a937 commit 16ed46b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/intel_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async def do_info(transport: str, force: bool):
print(f"Firmware image: {fw_name}")
print(f"Firmware path: {fw_path}")
print(f"Firmware version: {fw_version}")
print(f"Firmware boot address: {boot_addr}")
print(f"Firmware boot address: {hex(boot_addr)}")
except Exception as e:
print(
f"Firmware already loaded or no supported driver for this device: {e}"
Expand Down

0 comments on commit 16ed46b

Please sign in to comment.