]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
ukify: Add riscv32 and loongarch support 26920/head
authorJan Janssen <medhefgo@web.de>
Tue, 21 Mar 2023 16:10:19 +0000 (17:10 +0100)
committerJan Janssen <medhefgo@web.de>
Fri, 24 Mar 2023 12:01:53 +0000 (13:01 +0100)
src/ukify/ukify.py

index 900be9274347c829a53a32eb544d5bc34b813989..2cdfc01ad4f80c061385b8b3b7d67e2a61f610e5 100755 (executable)
@@ -31,6 +31,9 @@ EFI_ARCH_MAP = {
         'i[3456]86'    : ['ia32'],
         'aarch64'      : ['aa64'],
         'arm[45678]*l' : ['arm'],
+        'loongarch32'  : ['loongarch32'],
+        'loongarch64'  : ['loongarch64'],
+        'riscv32'      : ['riscv32'],
         'riscv64'      : ['riscv64'],
 }
 EFI_ARCHES: list[str] = sum(EFI_ARCH_MAP.values(), [])