From: Luca Boccassi Date: Sat, 25 Jan 2025 01:25:28 +0000 (+0000) Subject: ukify: add riscv32 to --efi-arch X-Git-Tag: v258-rc1~1484^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1429288ae4cf611ac3df6f604ddb4d6af480cf8;p=thirdparty%2Fsystemd.git ukify: add riscv32 to --efi-arch It is supported in the arch mapping at the top and in elf2efi, so add it here too --- diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py index 54fbb8944f8..5b4f20aeda5 100755 --- a/src/ukify/ukify.py +++ b/src/ukify/ukify.py @@ -1810,7 +1810,7 @@ CONFIG_ITEMS = [ ConfigItem( '--efi-arch', metavar='ARCH', - choices=('ia32', 'x64', 'arm', 'aa64', 'riscv64', 'loongarch32', 'loongarch64'), + choices=('ia32', 'x64', 'arm', 'aa64', 'riscv32', 'riscv64', 'loongarch32', 'loongarch64'), help='target EFI architecture', config_key='UKI/EFIArch', ),