about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-03-11 01:42:50 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-03-11 01:42:50 +0100
commit0d3907027f4e432854b2bbde5d4525e45b4b2fef (patch)
treeb8f184dabe429099174830da2eda0529cbbc046f /pkgs
parent9b23227ecf0584ac800e20cd27a7a080bb914685 (diff)
bfqsched: Remove cruft for supporting kernel 3.15.
This was in since the initial commit (6c224e4) of the bfqsched Nix
expression and I didn't notice it for all those upgrades.

Basically, this is just a no-op, because nowadays the sed expression
doesn't rewrite anything anymore, but it might be harmful if it should
match something in a future version of the bfqsched patch set.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/kpatches/bfqsched.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/kpatches/bfqsched.nix b/pkgs/kpatches/bfqsched.nix
index 2f637870..ff7d8752 100644
--- a/pkgs/kpatches/bfqsched.nix
+++ b/pkgs/kpatches/bfqsched.nix
@@ -34,8 +34,7 @@ let
     name = "bfqsched-${version}.patch";
     inherit allPatches;
     buildCommand = ''
-      sed -e 's/IS_SUBSYS_ENABLED/IS_ENABLED/' \
-          -e '/SUBSYS/s/perf/&_event/' $allPatches > "$out"
+      cat $allPatches > "$out"
     '';
   };