|
From: Mats F. <ma...@us...> - 2001-02-27 15:07:15
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.14 1.15=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added define for using TCI The diff of the modified file(s): --- btconfig.h 2001/02/15 16:28:46 1.14 +++ btconfig.h 2001/02/27 15:08:24 1.15 @@ -43,6 +43,9 @@ * General * ******************/ =20 +/* Use TCI layer or not */ +//#define USE_TCI + /* use of /proc files to read status information */ #define BT_USE_PROC =20 |
|
From: Peter K. <pk...@us...> - 2001-03-02 15:15:00
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.16 1.17=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
USE_SECURITY_MANAGER has to be on by default for now.
The diff of the modified file(s):
--- btconfig.h 2001/03/02 10:55:03 1.16
+++ btconfig.h 2001/03/02 15:16:17 1.17
@@ -52,7 +52,7 @@
/* Used to decrease overruns on serial port (see bluetooth.c) */
#undef BT_USEINBUFFER
=20
-//#define USE_SECURITY_MANAGER
+#define USE_SECURITY_MANAGER
=20
/* Bluetooth HW defines used to setup different HW and to cope with=20
limitations in HW */
|
|
From: Peter K. <pk...@us...> - 2001-03-02 15:55:00
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.17 1.18=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Actually, we only want USE_SECURITY_MANAGER on by default
when compiling for CRIS.
The diff of the modified file(s):
--- btconfig.h 2001/03/02 15:16:17 1.17
+++ btconfig.h 2001/03/02 15:56:18 1.18
@@ -52,7 +52,11 @@
/* Used to decrease overruns on serial port (see bluetooth.c) */
#undef BT_USEINBUFFER
=20
+#ifdef __CRIS__
#define USE_SECURITY_MANAGER
+#else
+#undef USE_SECURITY_MANAGER
+#endif
=20
/* Bluetooth HW defines used to setup different HW and to cope with=20
limitations in HW */
|
|
From: Peter K. <pk...@us...> - 2001-03-05 15:11:37
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.19 1.20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Removed CONFIG_BLUETOOTH_HCI_USB. The diff of the modified file(s): --- btconfig.h 2001/03/04 17:54:54 1.19 +++ btconfig.h 2001/03/05 15:13:14 1.20 @@ -103,8 +103,6 @@ //#define EMC_TEST_DATA_SIZE 678 #endif =20 -#define CONFIG_BLUETOOTH_HCI_USB - /**************** * L2CAP * ****************/ |
|
From: Peter K. <pk...@us...> - 2001-03-05 15:38:54
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.20 1.21=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Renamed CONFIG_BLUETOOTH_USEINBUFFER to CONFIG_BLUETOOTH_USE_INBUFFER,
CONFIG_BLUETOOTH_L2CAP_USETIMERS to CONFIG_BLUETOOTH_L2CAP_USE_TIMERS, and
CONFIG_BLUETOOTH_ERICSSON_P9A to CONFIG_BLUETOOTH_SET_BAUDRATE_BLOCKING
(inverted meaning).
The diff of the modified file(s):
--- btconfig.h 2001/03/05 15:13:14 1.20
+++ btconfig.h 2001/03/05 15:40:30 1.21
@@ -57,7 +57,7 @@
#define CONFIG_BLUETOOTH_PROC
=20
/* Used to decrease overruns on serial port (see bluetooth.c) */
-#undef CONFIG_BLUETOOTH_USEINBUFFER
+#undef CONFIG_BLUETOOTH_USE_INBUFFER
=20
#ifdef __CRIS__
#define USE_SECURITY_MANAGER
@@ -69,12 +69,12 @@
limitations in HW */
=20
/* This sets current HW */
-#undef CONFIG_BLUETOOTH_CSR=20=20=20=20=20=20=20=20
#undef CONFIG_BLUETOOTH_NOINIT=20=20=20=20=20
+#undef CONFIG_BLUETOOTH_CSR=20=20=20=20=20=20=20=20
#undef CONFIG_BLUETOOTH_DIGIANSWER=20
-#undef CONFIG_BLUETOOTH_USBMODULE /* Not implemented */
-#undef CONFIG_BLUETOOTH_GENERIC=20=20=20=20
#define CONFIG_BLUETOOTH_ERICSSON
+#undef CONFIG_BLUETOOTH_GENERIC=20=20=20=20
+#undef CONFIG_BLUETOOTH_USBMODULE /* Not implemented */
=20
/***************
* HCI *
@@ -89,8 +89,9 @@
=20
//#define HCI_EMULATION
=20
-/* This should be defined if you are using the Ericsson P9A firmware */
-#define CONFIG_BLUETOOTH_ERICSSON_P9A
+/* This should be defined if you are using Ericsson firmware that is
+ older than P9A */
+#undef CONFIG_BLUETOOTH_SET_BAUDRATE_BLOCKING
=20
/* This define is used during test of the host flow control */
//#define HOST_FLOW_CTRL
@@ -107,17 +108,14 @@
* L2CAP *
****************/
=20
-#define CONFIG_BLUETOOTH_L2CAP_USETIMERS
+#define CONFIG_BLUETOOTH_L2CAP_USE_TIMERS
#undef CONFIG_BLUETOOTH_L2CAP_CONNECTIONLESS
=20
/*****************
* RFCOMM *
*****************/
=20
-
-
/***************
* SDP *
***************/
-
#endif /* CONFIG_BLUETOOTH */
|
|
From: Peter K. <pk...@us...> - 2001-03-05 15:51:26
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.21 1.22=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made it possible to configure the use of a Security Manager and TCI using the kernel configuration. The diff of the modified file(s): --- btconfig.h 2001/03/05 15:40:30 1.21 +++ btconfig.h 2001/03/05 15:53:03 1.22 @@ -51,7 +51,7 @@ ******************/ =20 /* Use TCI layer or not */ -//#define USE_TCI +#undef CONFIG_BLUETOOTH_USE_TCI =20 /* use of /proc files to read status information */ #define CONFIG_BLUETOOTH_PROC @@ -60,9 +60,9 @@ #undef CONFIG_BLUETOOTH_USE_INBUFFER =20 #ifdef __CRIS__ -#define USE_SECURITY_MANAGER +#define CONFIG_BLUETOOTH_USE_SECURITY_MANAGER #else -#undef USE_SECURITY_MANAGER +#undef CONFIG_BLUETOOTH_USE_SECURITY_MANAGER #endif =20 /* Bluetooth HW defines used to setup different HW and to cope with=20 |
|
From: Peter K. <pk...@us...> - 2001-03-05 16:31:59
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.22 1.23=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Moved configuration options that cannot be set using the kernel
configurator to be outside the check for CONFIG_BLUETOOTH.
The diff of the modified file(s):
--- btconfig.h 2001/03/05 15:53:03 1.22
+++ btconfig.h 2001/03/05 16:33:36 1.23
@@ -80,30 +80,10 @@
* HCI *
***************/
=20
-/*=20
- HCI emulation enables using the stack without any bluetooth hardware.=
=20
- With this option defined you can test the stack by connecting two Linux=
=20
- machines with a nullmodem cabel. (If you are defining this you must sta=
rt=20
- btd with no hw init)=20
-*/
-
-//#define HCI_EMULATION
-
/* This should be defined if you are using Ericsson firmware that is
older than P9A */
#undef CONFIG_BLUETOOTH_SET_BAUDRATE_BLOCKING
=20
-/* This define is used during test of the host flow control */
-//#define HOST_FLOW_CTRL
-
-#ifdef __KERNEL__
-/* Don't define these four, they are only used for AXIS internal tests */
-//#define EMC_TEST
-//#define EMC_TEST_INITIATOR
-//#define EMC_LISTNER_ADDR 0x1810ce
-//#define EMC_TEST_DATA_SIZE 678
-#endif
-
/****************
* L2CAP *
****************/
@@ -119,3 +99,26 @@
* SDP *
***************/
#endif /* CONFIG_BLUETOOTH */
+
+/*************************************************************************=
**/
+
+/* The following configurations cannot be set using the kernel
+ configuration tools */
+
+/* HCI emulation enables using the stack without any bluetooth hardware.=
=20
+ With this option defined you can test the stack by connecting two Linux=
=20
+ machines with a nullmodem cabel. (If you are defining this you must sta=
rt=20
+ btd with no hw init) */
+
+//#define HCI_EMULATION
+
+/* This define is used during test of the host flow control */
+//#define HOST_FLOW_CTRL
+
+#ifdef __KERNEL__
+/* Don't define these four, they are only used for AXIS internal tests */
+//#define EMC_TEST
+//#define EMC_TEST_INITIATOR
+//#define EMC_LISTNER_ADDR 0x1810ce
+//#define EMC_TEST_DATA_SIZE 678
+#endif
|
|
From: Gordon M. <gm...@us...> - 2001-03-20 16:45:55
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.23 1.23.2.1=20=20=20=20=20=20=20=20
The accompanying log:
--Forgot to update the configs. This adds CONFIG_BLUETOOTH_HCI_INQUIRY and =
CONFIG_BLUETOOTH_SCO (I think).
The diff of the modified file(s):
--- btconfig.h 2001/03/05 16:33:36 1.23
+++ btconfig.h 2001/03/20 16:48:15 1.23.2.1
@@ -83,6 +83,8 @@
/* This should be defined if you are using Ericsson firmware that is
older than P9A */
#undef CONFIG_BLUETOOTH_SET_BAUDRATE_BLOCKING
+#define CONFIG_BLUETOOTH_HCI_INQUIRY
+#define CONFIG_BLUETOOTH_SCO
=20
/****************
* L2CAP *
|
|
From: Mattias A. <mat...@us...> - 2001-04-25 17:54:07
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.24 1.25=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
* added CONFIG_BLUETOOTH_ENABLE_MSSWITCH and CONFIG_BLUETOOTH_FORCE_MSSWITCH
The diff of the modified file(s):
--- btconfig.h 2001/04/10 12:26:41 1.24
+++ btconfig.h 2001/04/25 17:54:07 1.25
@@ -69,6 +69,10 @@
#undef CONFIG_BLUETOOTH_USE_SECURITY_MANAGER
#endif
=20
+#undef CONFIG_BLUETOOTH_ENABLE_MSSWITCH
+
+#undef CONFIG_BLUETOOTH_FORCE_MSSWITCH
+
/* Bluetooth HW defines used to setup different HW and to cope with=20
limitations in HW */
=20
|
|
From: Gordon M. <gm...@us...> - 2001-04-27 15:38:04
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.25 1.26=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: --Added the Infineon BlueMoon Chipset support provided by Christian Kranz. The diff of the modified file(s): --- btconfig.h 2001/04/25 17:54:07 1.25 +++ btconfig.h 2001/04/27 15:38:04 1.26 @@ -83,6 +83,7 @@ #define CONFIG_BLUETOOTH_ERICSSON #undef CONFIG_BLUETOOTH_GENERIC=20=20=20=20 #undef CONFIG_BLUETOOTH_USBMODULE /* Not implemented */ +#undef CONFIG_BLUETOOTH_INFINEON_BMI =20 /*************** * HCI * |
|
From: Peter K. <pk...@us...> - 2001-04-27 16:45:06
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.26 1.27=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Corrected support for Infineon (as far as I could without actually having access to the hardware). The diff of the modified file(s): --- btconfig.h 2001/04/27 15:38:04 1.26 +++ btconfig.h 2001/04/27 16:45:06 1.27 @@ -54,6 +54,18 @@ * General * ******************/ =20 +/* Bluetooth HW defines used to setup different HW and to cope with=20 + limitations in HW */ + +/* This sets current HW */ +#undef CONFIG_BLUETOOTH_NOINIT +#undef CONFIG_BLUETOOTH_CSR +#undef CONFIG_BLUETOOTH_DIGIANSWER +#define CONFIG_BLUETOOTH_ERICSSON +#undef CONFIG_BLUETOOTH_INFINEON_BMI +#undef CONFIG_BLUETOOTH_GENERIC=20=20=20=20 +#undef CONFIG_BLUETOOTH_USBMODULE /* Not implemented */ + /* Use TCI layer or not */ #undef CONFIG_BLUETOOTH_USE_TCI =20 @@ -70,20 +82,8 @@ #endif =20 #undef CONFIG_BLUETOOTH_ENABLE_MSSWITCH - #undef CONFIG_BLUETOOTH_FORCE_MSSWITCH - -/* Bluetooth HW defines used to setup different HW and to cope with=20 -limitations in HW */ - -/* This sets current HW */ -#undef CONFIG_BLUETOOTH_NOINIT -#undef CONFIG_BLUETOOTH_CSR -#undef CONFIG_BLUETOOTH_DIGIANSWER -#define CONFIG_BLUETOOTH_ERICSSON -#undef CONFIG_BLUETOOTH_GENERIC=20=20=20=20 -#undef CONFIG_BLUETOOTH_USBMODULE /* Not implemented */ -#undef CONFIG_BLUETOOTH_INFINEON_BMI +#undef CONFIG_BLUETOOTH_EARLY_MSSWITCH =20 /*************** * HCI * |
|
From: Peter K. <pk...@us...> - 2001-04-29 11:37:08
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.27 1.28=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Always do master/slave switch as server if it is enabled (it can be turned off using the BTSETMSSWITCH ioctl). The diff of the modified file(s): --- btconfig.h 2001/04/27 16:45:06 1.27 +++ btconfig.h 2001/04/29 11:37:08 1.28 @@ -82,7 +82,6 @@ #endif =20 #undef CONFIG_BLUETOOTH_ENABLE_MSSWITCH -#undef CONFIG_BLUETOOTH_FORCE_MSSWITCH #undef CONFIG_BLUETOOTH_EARLY_MSSWITCH =20 /*************** |
|
From: Mats F. <ma...@us...> - 2001-05-15 15:02:21
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.28 1.29=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added define to enable/disable BCSP The diff of the modified file(s): --- btconfig.h 2001/04/29 11:37:08 1.28 +++ btconfig.h 2001/05/15 15:02:20 1.29 @@ -82,7 +82,10 @@ #endif =20 #undef CONFIG_BLUETOOTH_ENABLE_MSSWITCH + #undef CONFIG_BLUETOOTH_EARLY_MSSWITCH + +#define CONFIG_BLUETOOTH_USE_BCSP =20 /*************** * HCI * |
|
From: Peter K. <pk...@us...> - 2001-06-07 10:47:38
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.29 1.30=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * Added CONFIG_BLUETOOTH_SUPPORT_BCSP. * Only set CONFIG_BLUETOOTH_SUPPORT_BCSP and CONFIG_BLUETOOTH_USE_BCSP if building for CSR hardware. The diff of the modified file(s): --- btconfig.h 2001/05/15 15:02:20 1.29 +++ btconfig.h 2001/06/07 10:47:37 1.30 @@ -82,10 +82,12 @@ #endif =20 #undef CONFIG_BLUETOOTH_ENABLE_MSSWITCH - #undef CONFIG_BLUETOOTH_EARLY_MSSWITCH =20 -#define CONFIG_BLUETOOTH_USE_BCSP +#ifdef CONFIG_BLUETOOTH_CSR +#define CONFIG_BLUETOOTH_SUPPORT_BCSP +#undef CONFIG_BLUETOOTH_USE_BCSP +#endif =20 /*************** * HCI * |
|
From: Anders J. <and...@us...> - 2001-07-31 09:05:04
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.30 1.31=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Changed #INCLUDE_UNPLUG_TEST -> #CONFIG_BLUETOOTH_UNPLUG_TEST
The diff of the modified file(s):
--- btconfig.h 2001/06/07 10:47:37 1.30
+++ btconfig.h 2001/07/31 09:05:03 1.31
@@ -54,6 +54,8 @@
* General *
******************/
=20
+/* Use testcode or not
+//define #CONFIG_BLUETOOTH_UNPLUG_TEST
/* Bluetooth HW defines used to setup different HW and to cope with=20
limitations in HW */
=20
|
|
From: Peter K. <pk...@us...> - 2001-07-31 19:00:28
|
The following file was modified in linux/include/linux/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
btconfig.h 1.31 1.32=20=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Do not define CONFIG_BLUETOOTH_SUPPORT_BCSP and
CONFIG_BLUETOOTH_UNPLUG_TEST here as it is done from the Makefile.
The diff of the modified file(s):
--- btconfig.h 2001/07/31 09:05:03 1.31
+++ btconfig.h 2001/07/31 19:00:28 1.32
@@ -54,8 +54,6 @@
* General *
******************/
=20
-/* Use testcode or not
-//define #CONFIG_BLUETOOTH_UNPLUG_TEST
/* Bluetooth HW defines used to setup different HW and to cope with=20
limitations in HW */
=20
@@ -87,9 +85,14 @@
#undef CONFIG_BLUETOOTH_EARLY_MSSWITCH
=20
#ifdef CONFIG_BLUETOOTH_CSR
-#define CONFIG_BLUETOOTH_SUPPORT_BCSP
+/* This is set from the Makefile, so do not set it here */
+//#define CONFIG_BLUETOOTH_SUPPORT_BCSP
#undef CONFIG_BLUETOOTH_USE_BCSP
#endif
+
+/* Use testcode or not */
+/* This is set from the Makefile if appropriate, so do not set it here */
+//#undef CONFIG_BLUETOOTH_UNPLUG_TEST
=20
/***************
* HCI *
|
|
From: Peter K. <pk...@us...> - 2001-11-19 11:29:31
|
The following file was modified in linux/include/linux/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- btconfig.h 1.32 1.33=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Only define configuration options here if neither CONFIG_BLUETOOTH nor CONFIG_BLUETOOTH_MODULE is set. The diff of the modified file(s): --- btconfig.h 2001/07/31 19:00:28 1.32 +++ btconfig.h 2001/11/19 11:29:29 1.33 @@ -49,7 +49,7 @@ * this next section. See Config.in in the source directory. * --gmcnutt */ -#ifndef CONFIG_BLUETOOTH +#if !defined(CONFIG_BLUETOOTH) && !defined(CONFIG_BLUETOOTH_MODULE) /****************** * General * ******************/ @@ -116,7 +116,7 @@ /*************** * SDP * ***************/ -#endif /* CONFIG_BLUETOOTH */ +#endif /* !CONFIG_BLUETOOTH && !CONFIG_BLUETOOTH_MODULE */ =20 /*************************************************************************= **/ =20 |