summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2017-01-27 16:41:06 +0100
committerMichael Palimaka <kensington@gentoo.org>2017-01-30 04:40:03 +1100
commitc82f2c107f426f69cd82ba2b4ad569ca78d0d1bf (patch)
tree1704df2f8c2f5ae1aa702792ad1fd6ac2a65cdbb /net-wireless/bluez/files
parentnet-im/openmittsu: Initial import. (diff)
downloadgentoo-c82f2c107f426f69cd82ba2b4ad569ca78d0d1bf.tar.gz
gentoo-c82f2c107f426f69cd82ba2b4ad569ca78d0d1bf.tar.bz2
gentoo-c82f2c107f426f69cd82ba2b4ad569ca78d0d1bf.zip
net-wireless/bluez: remove unused patches
Diffstat (limited to 'net-wireless/bluez/files')
-rw-r--r--net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch29
-rw-r--r--net-wireless/bluez/files/bluez-5.37-endian.patch51
2 files changed, 0 insertions, 80 deletions
diff --git a/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch b/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch
deleted file mode 100644
index 55d5af654a93..000000000000
--- a/net-wireless/bluez/files/0001-work-around-Logitech-diNovo-Edge-keyboard-firmware-i.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From aa73bf5039dfd2cf0a52dd6fd22501d955cc1a00 Mon Sep 17 00:00:00 2001
-From: Tommy <mesilliac@gmail.com>
-Date: Thu, 10 Jan 2013 09:18:43 +0100
-Subject: [PATCH] work around Logitech diNovo Edge keyboard firmware issue
-
-https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/269851
----
- tools/hid2hci.rules | 5 ++++-
- 1 files changed, 4 insertions(+), 1 deletions(-)
-
-diff --git a/tools/hid2hci.rules b/tools/hid2hci.rules
-index db6bb03..7db4572 100644
---- a/tools/hid2hci.rules
-+++ b/tools/hid2hci.rules
-@@ -11,7 +11,10 @@ ATTR{bInterfaceClass}=="03", ATTR{bInterfaceSubClass}=="01", ATTR{bInterfaceProt
- RUN+="hid2hci --method=dell --devpath=%p", ENV{HID2HCI_SWITCH}="1"
-
- # Logitech devices
--KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[34bc]", \
-+KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[5e]", \
-+ RUN+="hid2hci --method=logitech-hid --devpath=%p"
-+# Logitech, Inc. RAW communicating devices
-+KERNEL=="hidraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[34abc]|c71[34bc]", \
- RUN+="hid2hci --method=logitech-hid --devpath=%p"
-
- ENV{DEVTYPE}!="usb_device", GOTO="hid2hci_end"
---
-1.8.0.1
-
diff --git a/net-wireless/bluez/files/bluez-5.37-endian.patch b/net-wireless/bluez/files/bluez-5.37-endian.patch
deleted file mode 100644
index 1ffa3507d8b7..000000000000
--- a/net-wireless/bluez/files/bluez-5.37-endian.patch
+++ /dev/null
@@ -1,51 +0,0 @@
---- a/profiles/audio/a2dp-codecs.h
-+++ b/profiles/audio/a2dp-codecs.h
-@@ -149,6 +149,17 @@
- uint16_t codec_id;
- } __attribute__ ((packed)) a2dp_vendor_codec_t;
-
-+typedef struct {
-+ a2dp_vendor_codec_t info;
-+ uint8_t channel_mode:4;
-+ uint8_t frequency:4;
-+} __attribute__ ((packed)) a2dp_aptx_t;
-+
-+typedef struct {
-+ a2dp_vendor_codec_t info;
-+ uint8_t unknown[2];
-+} __attribute__ ((packed)) a2dp_ldac_t;
-+
- #if __BYTE_ORDER == __LITTLE_ENDIAN
-
- typedef struct {
-@@ -183,17 +194,6 @@
- uint8_t bitrate3;
- } __attribute__ ((packed)) a2dp_aac_t;
-
--typedef struct {
-- a2dp_vendor_codec_t info;
-- uint8_t channel_mode:4;
-- uint8_t frequency:4;
--} __attribute__ ((packed)) a2dp_aptx_t;
--
--typedef struct {
-- a2dp_vendor_codec_t info;
-- uint8_t unknown[2];
--} __attribute__ ((packed)) a2dp_ldac_t;
--
- #elif __BYTE_ORDER == __BIG_ENDIAN
-
- typedef struct {
-@@ -228,12 +228,6 @@
- uint8_t bitrate3;
- } __attribute__ ((packed)) a2dp_aac_t;
-
--typedef struct {
-- a2dp_vendor_codec_t info;
-- uint8_t frequency:4;
-- uint8_t channel_mode:4;
--} __attribute__ ((packed)) a2dp_aptx_t;
--
- #else
- #error "Unknown byte order"
- #endif