1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 02:26:19 +03:00

raspberryPi boot loader: fix booting Raspberry Pi 3

The Raspberry Pi 3 seems to need the .DTB file when booting the kernel,
so we must copy it to /boot when installing a new kernel.
This commit is contained in:
Ricardo M. Correia 2017-01-17 11:19:39 +00:00 committed by Tuomas Tynkkynen
parent 0045f932bb
commit c19b17d14f
2 changed files with 10 additions and 4 deletions

View file

@ -33,7 +33,7 @@ in
boot.loader.raspberryPi.version = mkOption {
default = 2;
type = types.enum [ 1 2 ];
type = types.enum [ 1 2 3 ];
description = ''
'';
};