Commit 3078cdb7 authored by R-VdP's avatar R-VdP Committed by Luke Granger-Brown
Browse files

nixos/nixos-generate-config: include new device ID for virtio_scsi

parent 7d9a4987
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -200,7 +200,7 @@ sub pciCheck {
    }

    # In case this is a virtio scsi device, we need to explicitly make this available.
    if ($vendor eq "0x1af4" && $device eq "0x1004") {
    if ($vendor eq "0x1af4" && ($device eq "0x1004" || $device eq "0x1048") ) {
        push @initrdAvailableKernelModules, "virtio_scsi";
    }