Skip to content

Commit 9a94955

Browse files
[sonic_installer] Enable ARM64 arch (sonic-net#811)
Signed-off-by: Antony Rheneus <[email protected]>
1 parent 92b30c2 commit 9a94955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sonic_installer/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
BOOTLOADER_TYPE_GRUB = 'grub'
2727
BOOTLOADER_TYPE_UBOOT = 'uboot'
2828
ARCH = platform.machine()
29-
BOOTLOADER = BOOTLOADER_TYPE_UBOOT if "arm" in ARCH else BOOTLOADER_TYPE_GRUB
29+
BOOTLOADER = BOOTLOADER_TYPE_UBOOT if ("arm" in ARCH) or ("aarch64" in ARCH) else BOOTLOADER_TYPE_GRUB
3030

3131
#
3232
# Helper functions

0 commit comments

Comments
 (0)