From c1bbbd779393a195b1bbca9c86cce07757ec68a9 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 28 Apr 2023 11:19:47 +0200 Subject: [PATCH] Disable osnoise and hwlat tracer for now Reuse nix cache to avoid rebuilding the kernel. --- common/boot.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/common/boot.nix b/common/boot.nix index 1ff695f..a893e44 100644 --- a/common/boot.nix +++ b/common/boot.nix @@ -18,14 +18,14 @@ "console=ttyS0,115200" ]; - boot.kernelPatches = lib.singleton { - name = "osnoise-tracer"; - patch = null; - extraStructuredConfig = with lib.kernel; { - OSNOISE_TRACER = yes; - HWLAT_TRACER = yes; - }; - }; + #boot.kernelPatches = lib.singleton { + # name = "osnoise-tracer"; + # patch = null; + # extraStructuredConfig = with lib.kernel; { + # OSNOISE_TRACER = yes; + # HWLAT_TRACER = yes; + # }; + #}; boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "ehci_pci" "nvme" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ];