mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 19:46:10 +01:00
Merge pull request #1631 from NixOS/pi3-keyboard
raspberry-pi/3: load usbhid and usb_storage
This commit is contained in:
commit
c816590dca
1 changed files with 7 additions and 1 deletions
|
|
@ -5,7 +5,13 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
boot.kernelPackages = lib.mkDefault pkgs.linuxKernel.packages.linux_rpi3;
|
boot = {
|
||||||
|
kernelPackages = lib.mkDefault pkgs.linuxKernel.packages.linux_rpi3;
|
||||||
|
initrd.availableKernelModules = [
|
||||||
|
"usbhid"
|
||||||
|
"usb_storage"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
# fix the following error :
|
# fix the following error :
|
||||||
# modprobe: FATAL: Module ahci not found in directory
|
# modprobe: FATAL: Module ahci not found in directory
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue