Skip to content

Commit

Permalink
ubootClearfog: fix filesToInstall
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jmbaur committed Oct 3, 2023
1 parent f91bec0 commit d5adf32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/misc/uboot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d5adf32

Please sign in to comment.