We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b30c2 commit 9a94955Copy full SHA for 9a94955
sonic_installer/main.py
@@ -26,7 +26,7 @@
26
BOOTLOADER_TYPE_GRUB = 'grub'
27
BOOTLOADER_TYPE_UBOOT = 'uboot'
28
ARCH = platform.machine()
29
-BOOTLOADER = BOOTLOADER_TYPE_UBOOT if "arm" in ARCH else BOOTLOADER_TYPE_GRUB
+BOOTLOADER = BOOTLOADER_TYPE_UBOOT if ("arm" in ARCH) or ("aarch64" in ARCH) else BOOTLOADER_TYPE_GRUB
30
31
#
32
# Helper functions
0 commit comments