summaryrefslogtreecommitdiffstats
path: root/pkgs/misc
diff options
context:
space:
mode:
authorJohannes Gerold <git+commit@jgero.me>2024-03-23 13:36:28 +0100
committerJohannes Gerold <git+commit@jgero.me>2024-03-23 20:51:47 +0100
commit1892e1361a222f7d3cdf67411fd800f723b5f5f0 (patch)
tree232d52f2e09541471ccd91cea17e47ff0241ab46 /pkgs/misc
parent86de7cd867a32429dc1b4a687931f9675afcb746 (diff)
feat(uboot): add rock4cplus support
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/uboot/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 8063c663d3f7..a80b0832c1d7 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -531,6 +531,13 @@ in {
filesToInstall = ["u-boot.bin"];
};
+ ubootRock4CPlus = buildUBoot {
+ defconfig = "rock-4c-plus-rk3399_defconfig";
+ extraMeta.platforms = [ "aarch64-linux" ];
+ BL31 = "${armTrustedFirmwareRK3399}/bl31.elf";
+ filesToInstall = [ "u-boot.itb" "idbloader.img" ];
+ };
+
ubootRock5ModelB = buildUBoot {
defconfig = "rock5b-rk3588_defconfig";
extraMeta.platforms = ["aarch64-linux"];