[v1,7/8] installer: Add bootloader installation support for loongarch64

Message ID 20260805023956.3379890-8-vincent.mc.li@gmail.com
State New
Headers
Series Add loongarch64 architecture support to IPFire |

Commit Message

Vincent Li 5 Aug 2026, 2:39 a.m. UTC
Add loongarch64-efi to the list of supported bootloader architectures
in the install-bootloader script. This ensures that when installing
on LoongArch64 systems, the correct bootloader components (GRUB for
EFI) are installed during the installation process.

Signed-off-by: Vincent Li <vincent.mc.li@gmail.com>
---
 src/installer/install-bootloader | 3 +++
 1 file changed, 3 insertions(+)
  

Patch

diff --git a/src/installer/install-bootloader b/src/installer/install-bootloader
index f21578495..a61fcb29c 100644
--- a/src/installer/install-bootloader
+++ b/src/installer/install-bootloader
@@ -104,6 +104,9 @@  function grub_install() {
 		aarch64)
 			arches="arm64-efi"
 			;;
+		loongarch64)
+			arches="loongarch64-efi"
+			;;
 		riscv64)
 			arches="riscv64-efi"
 			;;