diff options
author | Christian Breunig <christian@breunig.cc> | 2023-01-09 08:12:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 08:12:09 +0100 |
commit | 93a47043fc4b66ca807098484b7fd00f277e335e (patch) | |
tree | 18070f7b2e8d0cbd2a9dc41e307e359bbbbb5946 | |
parent | 2cdb218d8ac25764d45a23af2304ab1f20a1a5e8 (diff) | |
parent | 10f1833c39c0f4f2a682c8a9b5fc84d831887521 (diff) | |
download | vyatta-cfg-system-93a47043fc4b66ca807098484b7fd00f277e335e.tar.gz vyatta-cfg-system-93a47043fc4b66ca807098484b7fd00f277e335e.zip |
Merge pull request #189 from mcbridematt/t4822-grub-efi
T4822: install the correct version of GRUB for architecture (arm64)
-rw-r--r-- | debian/control | 1 | ||||
-rwxr-xr-x | scripts/install/install-postinst-new | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/control b/debian/control index 6c2f78d3..e94e4084 100644 --- a/debian/control +++ b/debian/control @@ -43,6 +43,7 @@ Depends: adduser, efibootmgr, libefivar0 | libefivar1, grub-efi-amd64-bin [amd64], + grub-efi-arm64-bin [arm64], dosfstools, gdisk, vyatta-biosdevname diff --git a/scripts/install/install-postinst-new b/scripts/install/install-postinst-new index 19257398..8bb7c8bd 100755 --- a/scripts/install/install-postinst-new +++ b/scripts/install/install-postinst-new @@ -24,6 +24,11 @@ INSTALL_TYPE=$3 # Default user DEFAULT_USER=vyos +GRUB_ARCH=x86_64-efi +if [ $(uname -m) = "aarch64" ]; then + GRUB_ARCH=arm64-efi +fi + # copy configuration to the config directory copy_config () { local cfg_dir=${INST_ROOT}${VYATTA_CFG_DIR} @@ -138,7 +143,7 @@ install_grub () { fi mkdosfs -F 32 -s 1 -n EFI /dev/$part >&/dev/null mount /dev/$part $grub_root/boot/efi - output=$(grub-install --no-floppy --recheck --target=x86_64-efi --force-extra-removable --root-directory=$grub_root --efi-directory=$grub_root/boot/efi --bootloader-id="$bootloader_name" --no-uefi-secure-boot 2>&1) + output=$(grub-install --no-floppy --recheck --target="${GRUB_ARCH}" --force-extra-removable --root-directory=$grub_root --efi-directory=$grub_root/boot/efi --bootloader-id="$bootloader_name" --no-uefi-secure-boot 2>&1) umount $grub_root/boot/efi ##TODO DO we need these to be in fstab?? # |