Skip to content

Commit

Permalink
Fix it
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebeaton committed Sep 13, 2024
1 parent 94ce10d commit 57520f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ArmVirtPkg/PlatformCI/PlatformBuildLib.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,14 @@ def FlashRomImage(self):
for arch in self.env.GetValue("TARGET_ARCH").split():
src = os.path.join(self.env.GetValue(
"BUILD_OUTPUT_BASE"), arch, "Shell.efi")
dst = os.path.join(VirtualDriveBoot, f'BOOT{arch}.EFI')
dst = os.path.join(VirtualDriveBoot,
f'BOOT{"AA64" if arch == "AARCH64" else arch}.EFI')
logging.info("MIKE copy %s -> %s", src, dst)
if os.path.exists(src):
logging.info("copy %s -> %s", src, dst)
shutil.copyfile(src, dst)

# QEMU must be on that path
# QEMU must be on the path

# Unique Command and Args parameters per ARCH
if (self.env.GetValue("TARGET_ARCH").upper() == "AARCH64"):
Expand Down

0 comments on commit 57520f4

Please sign in to comment.