Adding xfs support at supportedFilesystems

svn path=/nixos/trunk/; revision=33311
This commit is contained in:
Lluís Batlle i Rossell 2012-03-20 22:00:32 +00:00
parent a22bdbaeda
commit 6af26254ad
2 changed files with 30 additions and 0 deletions

View file

@ -208,6 +208,7 @@
./tasks/filesystems/nfs.nix
./tasks/filesystems/reiserfs.nix
./tasks/filesystems/vfat.nix
./tasks/filesystems/xfs.nix
./tasks/kbd.nix
./tasks/lvm.nix
./tasks/network-interfaces.nix

View file

@ -0,0 +1,29 @@
{ config, pkgs, ... }:
with pkgs.lib;
let
inInitrd = any (fs: fs == "xfs") config.boot.initrd.supportedFilesystems;
in
{
config = mkIf (any (fs: fs == "xfs") config.boot.supportedFilesystems) {
system.fsPackages = [ pkgs.xfsprogs ];
boot.initrd.kernelModules = mkIf inInitrd [ "xfs" ];
boot.initrd.extraUtilsCommands = mkIf inInitrd
''
cp -v ${pkgs.xfsprogs}/sbin/fsck.xfs $out/bin
'';
# Trick just to set 'sh' after the extraUtils nuke-refs.
boot.initrd.extraUtilsCommandsTest = mkIf inInitrd
''
sed -i -e 's,^#!.*,#!'$out/bin/sh, $out/bin/fsck.xfs
'';
};
}