aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/bluez/files
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/files
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/files')
-rw-r--r--recipes/bluez/files/base.patch33
-rw-r--r--recipes/bluez/files/blueboxes.patch18
-rw-r--r--recipes/bluez/files/hciattach_devlength.patch11
-rw-r--r--recipes/bluez/files/no-user-include.patch18
4 files changed, 0 insertions, 80 deletions
diff --git a/recipes/bluez/files/base.patch b/recipes/bluez/files/base.patch
deleted file mode 100644
index 337c9aa73e..0000000000
--- a/recipes/bluez/files/base.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- bluez-utils-2.17/pcmcia/bluetooth~base.patch
-+++ bluez-utils-2.17/pcmcia/bluetooth
-@@ -15,9 +15,16 @@
-
- if [ -r ./shared ]; then . ./shared ; else . /etc/pcmcia/shared ; fi
-
-+# Give the port some time to complete initialization
-+sleep 5
-+
- # Get device attributes
- get_info $DEVICE
-
-+test "$DEVICE" = "ttyS7" && DEVICE="/dev/tts/7"
-+test -z "$MANFID" && MANFID="bcsp"
-+test "$MANFID" = "0000,0000" && MANFID="bcsp"
-+
- #
- # Serial devices
- #
-@@ -25,7 +32,7 @@
- IRQ=`setserial /dev/$DEVICE | sed -e 's/.*IRQ: //'`
- setserial /dev/$DEVICE irq 0 ; setserial /dev/$DEVICE irq $IRQ
-
-- /usr/sbin/hciattach $DEVICE $MANFID
-+ /sbin/hciattach $DEVICE $MANFID
- }
- stop_serial() {
- do_fuser -k -HUP /dev/$DEVICE > /dev/null
diff --git a/recipes/bluez/files/blueboxes.patch b/recipes/bluez/files/blueboxes.patch
deleted file mode 100644
index c429b06c06..0000000000
--- a/recipes/bluez/files/blueboxes.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-
-#
-# Patch managed by http://www.holgerschurig.de/patcher.html
-#
-
---- bluez-utils-2.14/pcmcia/bluetooth.conf~base
-+++ bluez-utils-2.14/pcmcia/bluetooth.conf
-@@ -26,6 +26,10 @@
- version "Brain Boxes", "Bluetooth PC Card"
- bind "serial_cs" class "bluetooth"
-
-+card "F+ Bluetooth_Card, BCSP"
-+ manfid 0x0160, 0xaba0
-+ bind "serial_cs" class "bluetooth"
-+
- card "IBM Bluetooth PC Card II"
- version "IBM", "Bluetooth PC Card II"
- bind "serial_cs" class "bluetooth"
diff --git a/recipes/bluez/files/hciattach_devlength.patch b/recipes/bluez/files/hciattach_devlength.patch
deleted file mode 100644
index 8d84cb1b00..0000000000
--- a/recipes/bluez/files/hciattach_devlength.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- bluez-utils-2.21/tools/hciattach.c.orig 2005-12-15 16:29:55.000000000 +0100
-+++ bluez-utils-2.21/tools/hciattach.c 2005-12-15 16:29:37.000000000 +0100
-@@ -973,7 +973,7 @@
- int send_break = 0;
- pid_t pid;
- struct sigaction sa;
-- char dev[20];
-+ char dev[25];
-
- detach = 1;
- printpid = 0;
diff --git a/recipes/bluez/files/no-user-include.patch b/recipes/bluez/files/no-user-include.patch
deleted file mode 100644
index 8c1b1b6d6d..0000000000
--- a/recipes/bluez/files/no-user-include.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Do not add -I/usr/include to the compile line just because we will
-install bluez-utils there says zecke...
-
-Index: bluez-utils-2.25/acinclude.m4
-===================================================================
---- bluez-utils-2.25.orig/acinclude.m4 2006-05-18 12:39:57.473577920 +0200
-+++ bluez-utils-2.25/acinclude.m4 2006-05-19 00:58:52.694599848 +0200
-@@ -69,7 +69,9 @@
- ac_save_LDFLAGS=$LDFLAGS
-
- BLUEZ_CFLAGS=""
-- test -d "${bluez_prefix}/include" && BLUEZ_CFLAGS="$BLUEZ_CFLAGS -I${bluez_prefix}/include"
-+ if test "$cross_compiling" = no; then
-+ test -d "${bluez_prefix}/include" && BLUEZ_CFLAGS="$BLUEZ_CFLAGS -I${bluez_prefix}/include"
-+ fi
-
- CPPFLAGS="$CPPFLAGS $BLUEZ_CFLAGS"
- AC_CHECK_HEADER(bluetooth/bluetooth.h, dummy=yes, AC_MSG_ERROR(Bluetooth header files not found))