From bcbc7c0f21b2b6ec6cabf9a597e61174e87dfdd7 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 20 Nov 2021 00:21:17 +0100 Subject: [PATCH] coreboot-toolchain: Add other target architectures Add the following target architectures: * x86_64 * arm * aarch64 * riscv * ppc64 * nds32le Signed-off-by: Felix Singer --- pkgs/development/tools/misc/coreboot-toolchain/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/tools/misc/coreboot-toolchain/default.nix b/pkgs/development/tools/misc/coreboot-toolchain/default.nix index 33265242b856..a9d8ab302ea4 100644 --- a/pkgs/development/tools/misc/coreboot-toolchain/default.nix +++ b/pkgs/development/tools/misc/coreboot-toolchain/default.nix @@ -63,4 +63,10 @@ let }; in { i386 = common "i386"; + x86_64 = common "x64"; + arm = common "arm"; + aarch64 = common "aarch64"; + riscv = common "riscv"; + ppc64 = common "ppc64"; + nds32le = common "nds32le"; }