Skip to content
This repository has been archived by the owner on Aug 27, 2018. It is now read-only.

fix zfs initrd creation. #221

Closed
wants to merge 9 commits into from
Prev Previous commit
Next Next commit
Typo..
  • Loading branch information
jcumming committed Aug 12, 2013
commit e1994fda408d640172929eec0441e3789a0d1034
6 changes: 3 additions & 3 deletions modules/tasks/filesystems/zfs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ in
kernelModules = [ "spl" "zfs" ] ;
extraUtilsCommands =
''
cp -v ${kernel.zfs}/bin/zfs $out/sbin
cp -v ${kernel.zfs}/bin/zdb $out/sbin
cp -v ${kernel.zfs}/bin/zpool $out/sbin
cp -v ${kernel.zfs}/sbin/zfs $out/bin
cp -v ${kernel.zfs}/sbin/zdb $out/bin
cp -v ${kernel.zfs}/sbin/zpool $out/bin
cp -pdv ${kernel.zfs}/lib/lib*.so.* $out/lib
cp -pdv ${pkgs.zlib}/lib/lib*.so.* $out/lib
'';
Expand Down