about summary refs log tree commit diff
path: root/pkgs/misc/uboot
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2022-04-25 21:33:22 -0700
committerBernardo Meurer <bernardo@meurer.org>2022-04-26 15:22:25 -0700
commitfaf42ffbd07f0c877258c8b519c7e973949f89c7 (patch)
tree7690716f075e4641af6836af8c3a5567f485895c /pkgs/misc/uboot
parentd1fef1e7c370a39b639836726e956574d4092793 (diff)
downloadnixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar.gz
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar.bz2
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar.lz
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar.xz
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.tar.zst
nixlib-faf42ffbd07f0c877258c8b519c7e973949f89c7.zip
ubootRaspberryCM4_64bit: init
Diffstat (limited to 'pkgs/misc/uboot')
-rw-r--r--pkgs/misc/uboot/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix
index 986494e599d1..067d9bbbb5b1 100644
--- a/pkgs/misc/uboot/default.nix
+++ b/pkgs/misc/uboot/default.nix
@@ -437,6 +437,15 @@ in {
     filesToInstall = ["u-boot.bin"];
   };
 
+  ubootRaspberryPiCM4_64bit = buildUBoot {
+    defconfig = "rpi_4_defconfig";
+    extraMeta.platforms = ["aarch64-linux"];
+    filesToInstall = ["u-boot.bin"];
+    extraConfig = ''
+      CONFIG_USB_XHCI_BRCM=y
+    '';
+  };
+
   ubootRaspberryPiZero = buildUBoot {
     defconfig = "rpi_0_w_defconfig";
     extraMeta.platforms = ["armv6l-linux"];