* Xen (or rather QEMU) needs /dev/net/tun, so load the tap

module.

svn path=/nixos/trunk/; revision=23970
This commit is contained in:
Eelco Dolstra 2010-09-27 16:32:42 +00:00
parent b6f2fde0e0
commit deca72f3cf

View File

@ -70,7 +70,10 @@ in
# Domain 0 requires a pvops-enabled kernel.
boot.kernelPackages = pkgs.linuxPackages_2_6_32_xen;
boot.kernelModules = [ "xen_evtchn" "xen_gntdev" "xen_blkback" "xen_netback" "xen_pciback" "blktap" ];
boot.kernelModules =
[ "xen_evtchn" "xen_gntdev" "xen_blkback" "xen_netback" "xen_pciback"
"blktap" "tap"
];
# The radeonfb kernel module causes the screen to go black as soon
# as it's loaded, so don't load it.