From 57a82ba996c4543ad03d80056d41b347b26c1afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Fri, 2 Dec 2022 00:25:36 -0300 Subject: [PATCH] move patches to directory --- ...ngles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff | 0 ...dongles-showing-the-Read-Local-Information-values.diff | 0 ...let-users-disable-the-fake-CSR-force-suspend-hack.diff | 0 .../patches => patches/kernel}/fix-btusb-crash.diff | 0 system/btusb-kernel-patches.nix | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename {system/kernel/patches => patches/kernel}/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff (100%) rename {system/kernel/patches => patches/kernel}/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff (100%) rename {system/kernel/patches => patches/kernel}/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff (100%) rename {system/kernel/patches => patches/kernel}/fix-btusb-crash.diff (100%) diff --git a/system/kernel/patches/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff b/patches/kernel/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff similarity index 100% rename from system/kernel/patches/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff rename to patches/kernel/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff diff --git a/system/kernel/patches/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff b/patches/kernel/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff similarity index 100% rename from system/kernel/patches/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff rename to patches/kernel/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff diff --git a/system/kernel/patches/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff b/patches/kernel/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff similarity index 100% rename from system/kernel/patches/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff rename to patches/kernel/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff diff --git a/system/kernel/patches/fix-btusb-crash.diff b/patches/kernel/fix-btusb-crash.diff similarity index 100% rename from system/kernel/patches/fix-btusb-crash.diff rename to patches/kernel/fix-btusb-crash.diff diff --git a/system/btusb-kernel-patches.nix b/system/btusb-kernel-patches.nix index bccdb62..aa19a7d 100644 --- a/system/btusb-kernel-patches.nix +++ b/system/btusb-kernel-patches.nix @@ -4,21 +4,21 @@ { name = "bt-usb-fixes-1"; patch = - ./kernel/patches/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff; + ../patches/kernel/1-3-Bluetooth-btusb-Fix-Chinese-CSR-dongles-again-by-re-adding-ERR_DATA_REPORTING-quirk.diff; } { name = "bt-usb-fixes-2"; patch = - ./kernel/patches/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff; + ../patches/kernel/2-3-Bluetooth-btusb-Add-a-setup-message-for-CSR-dongles-showing-the-Read-Local-Information-values.diff; } { name = "bt-usb-fixes-3"; patch = - ./kernel/patches/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff; + ../patches/kernel/3-3-Bluetooth-btusb-Add-a-parameter-to-let-users-disable-the-fake-CSR-force-suspend-hack.diff; } { name = "bt-usb-fixes-4"; - patch = ./kernel/patches/fix-btusb-crash.diff; + patch = ../patches/kernel/fix-btusb-crash.diff; } ]; }