Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions boot-qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,6 +698,8 @@ def guess_arch(kernel_arg):
# exactly what architecture they were hoping to boot.
file_rosetta = {
'ELF 32-bit LSB executable, ARM, EABI5': 'ambiguous', # could be any arm32
'ELF 64-bit LSB executable, ARM aarch64': 'arm64',
'ELF 64-bit MSB executable, ARM aarch64': 'arm64be',
'ELF 64-bit LSB pie executable, ARM aarch64': 'arm64',
'ELF 64-bit MSB pie executable, ARM aarch64': 'arm64be',
'ELF 32-bit MSB executable, Motorola m68k, 68020': 'm68k',
Expand Down