diff --git a/hardware/raspberry_pi_3_model_B.nix b/hardware/raspberry_pi_3_model_B.nix index 20d3130..938b1af 100644 --- a/hardware/raspberry_pi_3_model_B.nix +++ b/hardware/raspberry_pi_3_model_B.nix @@ -17,7 +17,7 @@ }; kernelPackages = pkgs.linuxPackages_5_15; # For a Raspberry Pi 2 or 3) kernelParams = [ - "cma=32M" # Needed for the virtual console to work on the RPi 3 + "cma=320M" # Needed for the virtual console to work on the RPi 3 "console=ttyS0,115200n8" # Enable the serial console "console=tty0" ]; @@ -31,9 +31,10 @@ raspberryPi = { enable = false; version = 3; - uboot.enable = true; firmwareConfig = '' arm_64bit=1 # Force kernel loading system to assume a 64-bit kernel + display_auto_detect=1 # Enable auto detection of screen resolution + gpu_mem=128 hdmi_force_hotplug=1 # Enable headless booting ''; };