···10 pkgs.ubootRaspberryPi
11 else if version == 2 then
12 pkgs.ubootRaspberryPi2
13- else
14 if isAarch64 then
15 pkgs.ubootRaspberryPi3_64bit
16 else
17- pkgs.ubootRaspberryPi3_32bit;
001819 extlinuxConfBuilder =
20 import ../generic-extlinux-compatible/extlinux-conf-builder.nix {
···10 pkgs.ubootRaspberryPi
11 else if version == 2 then
12 pkgs.ubootRaspberryPi2
13+ else if version == 3 then
14 if isAarch64 then
15 pkgs.ubootRaspberryPi3_64bit
16 else
17+ pkgs.ubootRaspberryPi3_32bit
18+ else
19+ throw "U-Boot is not yet supported on the raspberry pi 4.";
2021 extlinuxConfBuilder =
22 import ../generic-extlinux-compatible/extlinux-conf-builder.nix {
+5
nixos/release.nix
···180 inherit system;
181 });
18200000183 # A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF).
184 ova = forMatchingSystems [ "x86_64-linux" ] (system:
185
···180 inherit system;
181 });
182183+ sd_image_raspberrypi4 = forMatchingSystems [ "aarch64-linux" ] (system: makeSdImage {
184+ module = ./modules/installer/cd-dvd/sd-image-raspberrypi4.nix;
185+ inherit system;
186+ });
187+188 # A bootable VirtualBox virtual appliance as an OVA file (i.e. packaged OVF).
189 ova = forMatchingSystems [ "x86_64-linux" ] (system:
190