Skip to content

Commit

Permalink
[sonic_installer] Enable ARM64 arch (sonic-net#811)
Browse files Browse the repository at this point in the history
Signed-off-by: Antony Rheneus <arheneus@marvell.com>
  • Loading branch information
antony-rheneus committed Mar 20, 2020
1 parent 92b30c2 commit 9a94955
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sonic_installer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
BOOTLOADER_TYPE_GRUB = 'grub'
BOOTLOADER_TYPE_UBOOT = 'uboot'
ARCH = platform.machine()
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

#
# Helper functions
Expand Down

0 comments on commit 9a94955

Please sign in to comment.