Skip to content

Commit 81a5861

Browse files
committed
boot-qemu.py: Add file strings for aarch64 with CONFIG_RELOCATABLE=n
Closes: #98 Signed-off-by: Nathan Chancellor <[email protected]>
1 parent 848054c commit 81a5861

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

boot-qemu.py

+2
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,8 @@ def guess_arch(kernel_arg):
698698
# exactly what architecture they were hoping to boot.
699699
file_rosetta = {
700700
'ELF 32-bit LSB executable, ARM, EABI5': 'ambiguous', # could be any arm32
701+
'ELF 64-bit LSB executable, ARM aarch64': 'arm64',
702+
'ELF 64-bit MSB executable, ARM aarch64': 'arm64be',
701703
'ELF 64-bit LSB pie executable, ARM aarch64': 'arm64',
702704
'ELF 64-bit MSB pie executable, ARM aarch64': 'arm64be',
703705
'ELF 32-bit MSB executable, Motorola m68k, 68020': 'm68k',

0 commit comments

Comments
 (0)