From d5adf322208a13aa5e79be8678f2a0d806eba4a4 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Mon, 2 Oct 2023 19:27:06 -0700 Subject: [PATCH] ubootClearfog: fix filesToInstall There does not exist a file to install at $BUILD/u-boot-spl.bin, but there is a file named $BUILD/u-boot-with-spl.bin, which is most likely the file that a user wants to boot their clearfog device with. --- pkgs/misc/uboot/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index e50459b554810..4d47bb404b579 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -184,7 +184,7 @@ in { ubootClearfog = buildUBoot { defconfig = "clearfog_defconfig"; extraMeta.platforms = ["armv7l-linux"]; - filesToInstall = ["u-boot-spl.kwb"]; + filesToInstall = ["u-boot-with-spl.kwb"]; }; ubootCubieboard2 = buildUBoot {