|
From: Anders J. <and...@us...> - 2001-07-31 09:02:22
|
The following files were modified in apps/bluetooth/experimental:
Name Old version New version Comment
---- ----------- ----------- -------
Makefile 1.6 1.7=20=20=20=20=20=20=20=20=20=20=20=20=20
bttest.c 1.11 1.12=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):
--- Makefile 2001/06/18 13:59:57 1.6
+++ Makefile 2001/07/31 09:02:21 1.7
@@ -15,6 +15,8 @@
HAVE_READLINE_READLINE =3D 1
#HAVE_READLINE =3D 1
=20
+INCLUDE_UNPLUG_TEST =3D 1
+
INSTDIR =3D $(prefix)/bin/
INSTMODE =3D 0755
INSTOWNER =3D root
@@ -38,6 +40,10 @@
ifdef HAVE_READLINE
LDLIBS +=3D -lreadline -ltermcap
CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include
+endif
+
+ifdef INCLUDE_UNPLUG_TEST
+CFLAGS +=3D -DCONFIG_BLUETOOTH_UNPLUG_TEST
endif
=20
CFLAGS +=3D -MD
--- bttest.c 2001/07/30 15:47:54 1.11
+++ bttest.c 2001/07/31 09:02:21 1.12
@@ -101,7 +101,7 @@
" ecs_testcon <xx:xx:xx:xx:xx:xx> (hex)",=20=20
" enable_dut", /* enable device under test mode */
#endif
-#ifdef INCLUDE_UNPLUG_TEST
+#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST
" upt <teststring>", /* e.g testcase 4.3 't 43' */
#endif
" quit",=20
@@ -348,7 +348,7 @@
bt_testcmd(bt_cfd, buf+7);
}
=20
-#ifdef INCLUDE_UNPLUG_TEST
+#ifdef CONFIG_BLUETOOTH_UNPLUG_TEST
else if (strncmp(buf, "upt", 3) =3D=3D 0)
{
if (sscanf(buf+4, "t %d", &i) =3D=3D 1)
|