Add initial patches for CPU Controller on Control Group v2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
let
|
||||
ents = builtins.readDir ./.;
|
||||
in builtins.listToAttrs (builtins.filter (x: x != null) (map (name: let
|
||||
match = builtins.match "(.*)\\.patch" name;
|
||||
in if match == null then null else {
|
||||
name = builtins.head match;
|
||||
value = {
|
||||
name = "cpu-cgroup-v2-${name}";
|
||||
patch = ./. + "/${name}";
|
||||
};
|
||||
}) (builtins.attrNames ents)))
|
||||
Reference in New Issue
Block a user