uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
|
|
@ -0,0 +1,96 @@
|
|||
{ config, lib, pkgs, ...} :
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.services.orangefs.client;
|
||||
|
||||
in {
|
||||
###### interface
|
||||
|
||||
options = {
|
||||
services.orangefs.client = {
|
||||
enable = mkEnableOption "OrangeFS client daemon";
|
||||
|
||||
extraOptions = mkOption {
|
||||
type = with types; listOf str;
|
||||
default = [];
|
||||
description = "Extra command line options for pvfs2-client.";
|
||||
};
|
||||
|
||||
fileSystems = mkOption {
|
||||
description = ''
|
||||
The orangefs file systems to be mounted.
|
||||
This option is prefered over using <option>fileSystems</option> directly since
|
||||
the pvfs client service needs to be running for it to be mounted.
|
||||
'';
|
||||
|
||||
example = [{
|
||||
mountPoint = "/orangefs";
|
||||
target = "tcp://server:3334/orangefs";
|
||||
}];
|
||||
|
||||
type = with types; listOf (submodule ({ ... } : {
|
||||
options = {
|
||||
|
||||
mountPoint = mkOption {
|
||||
type = types.str;
|
||||
default = "/orangefs";
|
||||
description = "Mount point.";
|
||||
};
|
||||
|
||||
options = mkOption {
|
||||
type = with types; listOf str;
|
||||
default = [];
|
||||
description = "Mount options";
|
||||
};
|
||||
|
||||
target = mkOption {
|
||||
type = types.str;
|
||||
example = "tcp://server:3334/orangefs";
|
||||
description = "Target URL";
|
||||
};
|
||||
};
|
||||
}));
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
###### implementation
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = [ pkgs.orangefs ];
|
||||
|
||||
boot.supportedFilesystems = [ "pvfs2" ];
|
||||
boot.kernelModules = [ "orangefs" ];
|
||||
|
||||
systemd.services.orangefs-client = {
|
||||
requires = [ "network-online.target" ];
|
||||
after = [ "network-online.target" ];
|
||||
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
|
||||
ExecStart = ''
|
||||
${pkgs.orangefs}/bin/pvfs2-client-core \
|
||||
--logtype=syslog ${concatStringsSep " " cfg.extraOptions}
|
||||
'';
|
||||
|
||||
TimeoutStopSec = "120";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.mounts = map (fs: {
|
||||
requires = [ "orangefs-client.service" ];
|
||||
after = [ "orangefs-client.service" ];
|
||||
bindsTo = [ "orangefs-client.service" ];
|
||||
wantedBy = [ "remote-fs.target" ];
|
||||
type = "pvfs2";
|
||||
options = concatStringsSep "," fs.options;
|
||||
what = fs.target;
|
||||
where = fs.mountPoint;
|
||||
}) cfg.fileSystems;
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue