summary refs log tree commit diff
path: root/lib/systems
diff options
context:
space:
mode:
authorRyan Burns <52847440+r-burns@users.noreply.github.com>2021-10-28 13:53:16 -0700
committerGitHub <noreply@github.com>2021-10-28 13:53:16 -0700
commit81ee86a2c6524357bfaa6237fd25e4590a9ae42e (patch)
treebdcc7f19a91634674f7d4750edd74da131d5a6cc /lib/systems
parent024ee5cb6568398fefa1511a4e2b5515af12316b (diff)
parent288cc2007b1c3d60163176a1706024b9ee152393 (diff)
downloadnixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar.gz
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar.bz2
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar.lz
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar.xz
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.tar.zst
nixpkgs-81ee86a2c6524357bfaa6237fd25e4590a9ae42e.zip
Merge pull request #139284 from r-burns/powernv-kernel-config
lib/systems: update powernv kernel config
Diffstat (limited to 'lib/systems')
-rw-r--r--lib/systems/platforms.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/systems/platforms.nix b/lib/systems/platforms.nix
index 2a5f630c3de..b2a8dbedef4 100644
--- a/lib/systems/platforms.nix
+++ b/lib/systems/platforms.nix
@@ -20,15 +20,17 @@ rec {
       name = "PowerNV";
 
       baseConfig = "powernv_defconfig";
-      target = "zImage";
-      installTarget = "install";
-      file = "vmlinux";
+      target = "vmlinux";
       autoModules = true;
       # avoid driver/FS trouble arising from unusual page size
       extraConfig = ''
         PPC_64K_PAGES n
         PPC_4K_PAGES y
         IPV6 y
+
+        ATA_BMDMA y
+        ATA_SFF y
+        VIRTIO_MENU y
       '';
     };
   };