aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/bluez/bluez-utils
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-10-03 12:38:47 +0200
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-10-03 12:50:37 +0200
commitfee76fce88db1f3ce5815aeebbc065b9219fbc01 (patch)
treef385e0d2deef75a718fb65c4075f4dd9185f4238 /recipes/bluez/bluez-utils
parentc973bbe10c7ae68ed392b6f5758a82a676304e2b (diff)
downloadopenembedded-fee76fce88db1f3ce5815aeebbc065b9219fbc01.tar.gz
bluez : moved unused files to obsolete dir
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/bluez/bluez-utils')
-rw-r--r--recipes/bluez/bluez-utils/ppoll-uclibc-arm-r0.patch14
-rw-r--r--recipes/bluez/bluez-utils/uclibc-fix.patch46
2 files changed, 0 insertions, 60 deletions
diff --git a/recipes/bluez/bluez-utils/ppoll-uclibc-arm-r0.patch b/recipes/bluez/bluez-utils/ppoll-uclibc-arm-r0.patch
deleted file mode 100644
index 391a7ae3de..0000000000
--- a/recipes/bluez/bluez-utils/ppoll-uclibc-arm-r0.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: bluez-utils-3.9/common/ppoll.h
-===================================================================
---- bluez-utils-3.9.orig/common/ppoll.h 2007-05-17 17:42:23.000000000 +0200
-+++ bluez-utils-3.9/common/ppoll.h 2007-05-17 17:43:18.000000000 +0200
-@@ -1,4 +1,8 @@
--static inline int ppoll(struct pollfd *fds, nfds_t nfds,
-+#ifdef ppoll
-+#undef ppoll
-+#endif
-+#define ppoll bluez_ppoll
-+static inline int bluez_ppoll(struct pollfd *fds, nfds_t nfds,
- const struct timespec *timeout, const sigset_t *sigmask)
- {
- return poll(fds, nfds, timeout ? timeout->tv_sec * 1000 : 500);
diff --git a/recipes/bluez/bluez-utils/uclibc-fix.patch b/recipes/bluez/bluez-utils/uclibc-fix.patch
deleted file mode 100644
index 6d4753c2e5..0000000000
--- a/recipes/bluez/bluez-utils/uclibc-fix.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Uclibc doesn't define or support speeds above 115200. So check the existence
-of the defines before allowing them to actually be used.
-
-Index: bluez-utils-3.9/tools/hciattach.c
-===================================================================
---- bluez-utils-3.9.orig/tools/hciattach.c 2007-05-17 12:34:28.000000000 +1000
-+++ bluez-utils-3.9/tools/hciattach.c 2007-05-17 12:40:20.000000000 +1000
-@@ -105,22 +105,38 @@
- return B57600;
- case 115200:
- return B115200;
-+#ifdef B230400
- case 230400:
- return B230400;
-+#endif
-+#ifdef B460800
- case 460800:
- return B460800;
-+#endif
-+#ifdef B500000
- case 500000:
- return B500000;
-+#endif
-+#ifdef B576000
- case 576000:
- return B576000;
-+#endif
-+#ifdef B921600
- case 921600:
- return B921600;
-+#endif
-+#ifdef B1000000
- case 1000000:
- return B1000000;
-+#endif
-+#ifdef B1152000
- case 1152000:
- return B1152000;
-+#endif
-+#ifdef B1500000
- case 1500000:
- return B1500000;
-+#endif
- default:
- return B57600;
- }