kconfig check: extract_arch: support riscv64

Reviewed-by: Clayton Craft <clayton@craftyguy.net>
Link: https://lists.sr.ht/~postmarketos/pmbootstrap-devel/%3C20230312151325.1968-12-ollieparanoid@postmarketos.org%3E
This commit is contained in:
Oliver Smith 2023-03-12 16:13:18 +01:00
parent 905ccbb840
commit 3b1ec76395
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 2 additions and 0 deletions

View File

@ -287,6 +287,8 @@ def extract_arch(config_path):
return "armv7"
elif is_set(config, "ARM64"):
return "aarch64"
elif is_set(config, "RISCV"):
return "riscv64"
elif is_set(config, "X86_32"):
return "x86"
elif is_set(config, "X86_64"):