Merge pull request #144409 from mitchmindtree/xps-9310-kernel-config

linux: Add kernel config required for QCA6390 bluetooth (XPS 9310)

authored by Maximilian Bosch and committed by GitHub 61870bd8 55039a2a

+7
+7
pkgs/os-specific/linux/kernel/common-config.nix
··· 748 749 BSD_PROCESS_ACCT_V3 = yes; 750 751 BT_HCIBTUSB_MTK = whenAtLeast "5.3" yes; # MediaTek protocol support 752 BT_HCIUART_BCSP = option yes; 753 BT_HCIUART_H4 = option yes; # UART (H4) protocol support 754 BT_HCIUART_LL = option yes; 755 BT_RFCOMM_TTY = option yes; # RFCOMM TTY support 756 757 CLEANCACHE = option yes; 758 CRASH_DUMP = option no;
··· 748 749 BSD_PROCESS_ACCT_V3 = yes; 750 751 + SERIAL_DEV_BUS = whenAtLeast "4.11" yes; # enables support for serial devices 752 + SERIAL_DEV_CTRL_TTYPORT = whenAtLeast "4.11" yes; # enables support for TTY serial devices 753 + 754 BT_HCIBTUSB_MTK = whenAtLeast "5.3" yes; # MediaTek protocol support 755 + BT_HCIUART_QCA = whenAtLeast "4.3" yes; # Qualcomm Atheros protocol support 756 + BT_HCIUART_SERDEV = whenAtLeast "4.12" yes; # required by BT_HCIUART_QCA 757 + BT_HCIUART = whenAtLeast "2.5.45" module; # required for BT devices with serial port interface (QCA6390) 758 BT_HCIUART_BCSP = option yes; 759 BT_HCIUART_H4 = option yes; # UART (H4) protocol support 760 BT_HCIUART_LL = option yes; 761 BT_RFCOMM_TTY = option yes; # RFCOMM TTY support 762 + BT_QCA = whenAtLeast "4.3" module; # enables QCA6390 bluetooth 763 764 CLEANCACHE = option yes; 765 CRASH_DUMP = option no;