ukify: add riscv32 to --efi-arch

It is supported in the arch mapping at the top and in elf2efi, so add it here too
This commit is contained in:
Luca Boccassi
2025-01-25 01:25:28 +00:00
parent abe0033556
commit d1429288ae

View File

@@ -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',
),