From b8d9a0eaa691eb611de21d3cb8891333cc29f062 Mon Sep 17 00:00:00 2001 From: Jared Baur Date: Tue, 8 Oct 2024 08:46:45 -0700 Subject: [PATCH] ubootCM3588NAS: don't install non-existent image for SPI flash The defconfig for ubootCM3588NAS does not specify building an image for SPI flash, so remove the attempt to install the non-existent file. --- 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 037b4ca8d008..1983157df1f6 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -217,7 +217,7 @@ in { extraMeta.platforms = [ "aarch64-linux" ]; BL31 = "${armTrustedFirmwareRK3588}/bl31.elf"; ROCKCHIP_TPL = rkbin.TPL_RK3588; - filesToInstall = [ "u-boot.itb" "idbloader.img" "u-boot-rockchip.bin" "u-boot-rockchip-spi.bin" ]; + filesToInstall = [ "u-boot.itb" "idbloader.img" "u-boot-rockchip.bin" ]; }; ubootCubieboard2 = buildUBoot {