fix(hardware): add eMMC (sdhci/mmc) initrd modules so root mounts on ZimaBlade
This commit is contained in:
@@ -13,7 +13,11 @@
|
|||||||
{
|
{
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "sd_mod" ];
|
# Incl. eMMC/SD modules — root is on the ZimaBlade eMMC, initrd must mount it.
|
||||||
|
boot.initrd.availableKernelModules = [
|
||||||
|
"xhci_pci" "ahci" "usbhid" "sd_mod"
|
||||||
|
"sdhci_pci" "sdhci_acpi" "mmc_block" # eMMC (mmcblk0)
|
||||||
|
];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ ];
|
boot.kernelModules = [ ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|||||||
Reference in New Issue
Block a user