[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2021-02-01 Thread Daniel van Vugt
** Tags removed: raring
** Tags added: focal xenial

** Package changed: ubuntu => linux (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2020-06-11 Thread Bug Watch Updater
Launchpad has imported 8 comments from the remote bug at
https://bugzilla.kernel.org/show_bug.cgi?id=84521.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2014-09-14T01:19:10+00:00 es20490446e wrote:

As seen in
, there is
no bluetooth support for Ralink RT3290.

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/115


On 2014-09-16T23:39:41+00:00 es20490446e wrote:

There's a libre driver in
.

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/118


On 2014-09-22T23:02:45+00:00 vpsink wrote:

@Alberto 
That driver just don't work in Ubuntu. 
I patched the rt3290 bt driver according to this page:
http://wirama.web.id/rt3290-bluetooth-rtbth-driver-with-kernel-3-13/
And here's it:
http://www.mediafire.com/download/2t59ayhx9fxxfoh/rtbth-3.9.3-patched.7z
It's partially working on >3.13 kernels.
I'm able to compile it and install. However it's still bugged, I can't turn it 
off and on again (it will not power on again) and it can't pair with any device.

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/119


On 2016-05-13T07:48:31+00:00 user501254 wrote:

Any updates? Is this ever gonna work?

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/193


On 2017-01-14T19:30:11+00:00 mikewortin wrote:

(In reply to Ashesh Kumar Singh from comment #3)
> Any updates? Is this ever gonna work?

No, it does not working in any vanilla kernel.
A workaround is installing rtbth as described here
https://bbs.archlinux.org/viewtopic.php?id=176121
After installing this driver I can pair and send files fro my android phone, 
but cannot connect to my bluetooth headphones.

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/251


On 2017-05-20T13:25:14+00:00 dmjpp wrote:

There exists a rtbth that works with latest kernels
https://github.com/loimu/rtbth-dkms

Can that be integrated into the kernel?

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/282


On 2020-06-11T13:35:18+00:00 oxr463 wrote:

Any updates on this one?

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/302


On 2020-06-11T18:07:08+00:00 es20490446e wrote:

That I'm still failing at dating.

Reply at: https://bugs.launchpad.net/bluetooth/+bug/1189721/comments/303


** Changed in: linux
   Status: Unknown => Confirmed

** Changed in: linux
   Importance: Unknown => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2019-06-01 Thread Jan Vodochalek
I also changed:

case RTBTH_IOCDMAC:
do {
struct rtbth_dmac dmac;

if (copy_from_user(, (void *)arg, sizeof(dmac))) {
retval = -EFAULT;
DebugPrint(ERROR, DBG_INIT,"copy_from_user failed at %d\n", 
__LINE__);
break;
}
DebugPrint(ERROR, DBG_INIT,"RTBTH_IOCDMAC: dmac.dmac_op=%d\n", 
dmac.dmac_op);

if(dmac.dmac_op == 0){
RtbtResetPDMA(gpAd);
}else if(dmac.dmac_op == 1){
BthEnableRxTx(gpAd);
}else if(dmac.dmac_op == 2){
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset ==>\n", 
__func__);
kfifo_reset(gpAd->acl_fifo);
kfifo_reset(gpAd->hci_fifo);
kfifo_reset(gpAd->evt_fifo);
kfifo_reset(gpAd->sco_fifo);
kfifo_reset(gpAd->rx_fifo);
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset <== \n", 
__func__);
}
else {
 DebugPrint(ERROR, DBG_INIT,"No such the dma op = %d\n", 
dmac.dmac_op);
}
}while(0);
break;

to:


case RTBTH_IOCDMAC:
do {
struct rtbth_dmac dmac;

if (copy_from_user(, (void *)arg, sizeof(dmac))) {
retval = -EFAULT;
DebugPrint(ERROR, DBG_INIT,"copy_from_user failed at %d\n", 
__LINE__);
break;
}
DebugPrint(ERROR, DBG_INIT,"RTBTH_IOCDMAC: dmac.dmac_op=%d\n", 
dmac.dmac_op);

if(dmac.dmac_op == 2){
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset ==>\n", 
__func__);
kfifo_reset(gpAd->acl_fifo);
kfifo_reset(gpAd->hci_fifo);
kfifo_reset(gpAd->evt_fifo);
kfifo_reset(gpAd->sco_fifo);
kfifo_reset(gpAd->rx_fifo);
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset <== \n", 
__func__);
}

if(dmac.dmac_op == 0){
RtbtResetPDMA(gpAd);
}
if(dmac.dmac_op == 1){
BthEnableRxTx(gpAd);
} else {
 DebugPrint(ERROR, DBG_INIT,"No such the dma op = %d\n", 
dmac.dmac_op);
}

}while(0);
break;

Now it is the pairing even more reliable. Paired 5 different devices
including bluetooth audio device.

Somehow the execution was not reaching this part:

  if(dmac.dmac_op == 2){
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset ==>\n", 
__func__);
kfifo_reset(gpAd->acl_fifo);
kfifo_reset(gpAd->hci_fifo);
kfifo_reset(gpAd->evt_fifo);
kfifo_reset(gpAd->sco_fifo);
kfifo_reset(gpAd->rx_fifo);
DebugPrint(TRACE, DBG_MISC, "%s:kfifo reset <== \n", 
__func__);
}

It is the interrupt causing it?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2019-06-01 Thread Jan Vodochalek
There is a fix for the pairing on https://github.com/loimu/rtbth-
dkms/pull/4

for the RTBTH_IOCDMAC: dmac.dmac_op=2

Blaze, can you take look at this pull request and let it test?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2019-02-22 Thread rigodon via ubuntu-bugs
Here is the solution at least for ASUS X552L & Linux Mint 19.1
https://webwiks.com/techcorner/get-ralink-rt3290-wifi-work-linux-distribution/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-11-22 Thread eyes only
#288
Update. Now on kernel 4.15, it seems that it cannot be compiled.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-05-20 Thread swadesh Parasher
Will there ever be a fix for this bug?
Have been waiting for a while.
I am using ubuntu 18.04 and it is a nuisance not being able to listen to music 
or use bluetooth devices.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-04-02 Thread fjrial
Update:

After struggling with blueman software, I managed to get the A2DP
profile sound to work.

Basically, dont connect the bt hardware with the Preferences->Bluetooth
section. Just ignore it in this section.

Then, connect the device with blueman software. After you've configured
it, select the A2DP profile

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-04-02 Thread fjrial
Just to be clear.. the quality of the sound is related to the driver,
not to the bt headphones.. I mean, maybe it's an old driver that does
not support A2DP

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-04-02 Thread fjrial
#286

Just to confirm, the instructions from comment #286 still work in latest
Ubuntu 17.10.1

There is a but, you have to modify source code from the cloned
repository in order to compile it

You have to change

HCI_BREDR

with

HCI_PRIMARY

in rtbth_core_bluez.c.

After that, all compiles and works.

I'm using it with my bt headphones (SBH-20), **but the quality of the
sound is awful**

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-03-13 Thread corrado venturini
still same problem on Ubuntu Bionic 18.04
corrado@corrado-HP-p3-bb:~$ inxi -SCx
System:Host: corrado-HP-p3-bb Kernel: 4.15.0-10-generic x86_64 bits: 64 
gcc: 7.3.0
   Desktop: Gnome 3.27.92 (Gtk 3.22.28-1ubuntu3)
   Distro: Ubuntu Bionic Beaver (development branch)
CPU:   Dual core Intel Core i5-4210U (-MT-MCP-) arch: Haswell rev.1 cache: 
3072 KB
   flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx) bmips: 9578
   clock speeds: max: 2700 MHz 1: 1304 MHz 2: 1448 MHz 3: 1210 MHz 4: 
1484 MHz
corrado@corrado-HP-p3-bb:~$
09:00.1 Bluetooth: Ralink corp. RT3290 Bluetooth
Subsystem: Hewlett-Packard Company Ralink RT3290LE 802.11bgn 1x1 Wi-Fi 
and Bluetooth 4.0 Combo Adapter
Flags: bus master, fast devsel, latency 0
Memory at b250 (32-bit, non-prefetchable) [size=64K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/32 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Device Serial Number 00-00-5e-03-82-b8-d1-ac

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-02-15 Thread brad
https://forums.linuxmint.com/viewtopic.php?f=49=172945=64abd72188d9ab7e90aa76da2a241d0f=20#p1278925

Can anyone confirm if this solution from the Linux mint forums works?

"Step-by-step solution Open new terminal (ctrl+alt+t) and type as
follows:

mkdir ~/tmp
cd ~/tmp
git clone https://github.com/alinefr/rtbth.git
cd rtbth
make
sudo make install
sudo cp -r ~/rtbth /usr/src/rtbth-3.9.3
sudo dkms install rtbth/3.9.3
sudo nano /etc/modules
Add there "rtbth" at the end, then ctrl+o and ENTER (to save the file) and 
ctrl+x to close the editor
Reboot"

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2018-01-11 Thread Carlos Renê
Here too. Lubuntu 18.04 LTS daily build 01/11/2018. HP Pavilion x360.
Kernel 4.13.0-25.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-10-22 Thread Ashesh
Four years since this was reported and still no proper Bluetooth support
on this!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-07-21 Thread slaykristian
No pairing even on my ubuntu 16.04 4-8..-rt 
Sad, bluetooth is one function basic for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-07-19 Thread corrado venturini
Still fail in Aardvark 17.10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-05-23 Thread Alex10336
Hello,

Step followed, one by one.
Still fail on pairing. saying no same paring code for a phone. Just fail for a 
mouse.

kernel 4.4.0 / ubuntu base 17.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-05-23 Thread Blaze
Alex10336 wrote:
> @Blaze: Can you update make/install instruction ?
> 
> clone & make seem to work. (gcc 5.4)

GCC 4.5 is an oldish GCC version Ubuntu 12.04 had in times of the driver 
release (see the doc provided by Ralink). But today you need to compile 
and install it yourself. Computer savvy people required.

Ralink doc on the driver:
https://github.com/loimu/rtbth-dkms/blob/master/doc/Ubuntu
%20RT3290%20Bluetooth%20Host%20Driver%20User%20Guide.pdf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-05-22 Thread Alex10336
@Blaze: Can you update make/install instruction ?

clone & make seem to work. (gcc 5.4)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-05-22 Thread Blaze
Høst wrote:
> According to https://bugzilla.kernel.org/show_bug.cgi?id=84521, there's
> a kernel module that seems to be working (https://github.com/loimu
> /rtbth-dkms). I can't test it by myself since I replaced the wireless
> combo with a Qualcomm-Atheros card.
> 
> It's (at least) compatible with most HP laptops and all-in-one desktops. I
> can understand that a lot of you aren't in the position of buying a new
> card, but if you're interested here's the datasheet:
> https://wikidevi.com/files/Atheros/specsheets/AR9462.pdf

Well, that's my Github profile. And I already asked a number of times to 
test the driver against GCC 4.5 to see if the pairing works, but still no one 
did.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-05-22 Thread Høst
According to https://bugzilla.kernel.org/show_bug.cgi?id=84521, there's
a kernel module that seems to be working (https://github.com/loimu
/rtbth-dkms). I can't test it by myself since I replaced the wireless
combo with a Qualcomm-Atheros card.

It's (at least) compatible with most HP laptops and all-in-one desktops. I can 
understand that a lot of you aren't in the position of buying a new card, but 
if you're interested here's the datasheet:
https://wikidevi.com/files/Atheros/specsheets/AR9462.pdf

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-04-05 Thread shihiro
New Deb-File look here: https://launchpad.net/~blaze/+archive/ubuntu
/rtbth-dkms

Use in terminal

sudo add-apt-repository ppa:blaze/rtbth-dkms sudo apt-get update

and look in synaptic for package rtbth-dkms and install it

or load and install it here https://launchpad.net/~blaze/+archive/ubuntu
/rtbth-dkms/+packages

On the first link there is the source link to GitHub
https://github.com/loimu/rtbth-dkms

On README.md you can read:

# Init sudo modprobe rtbth
sudo rfkill unblock bluetooth
hcitool dev # check

i typed it in terminal and everything works.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-02-24 Thread Jan Vodochalek
Can you pair with BT V4 devices?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-02-23 Thread Antonio
I had this problem on Hp ENVY 15-j040el and Ubuntu 16.04 and I solved the 
problem with this (Italian) guide
http://forum.ubuntu-it.org/viewtopic.php?f=9=617322=4961328#p4961328

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-02-04 Thread Jan Vodochalek
I have got the same trace on Ubuntu 15.10. So LM_Find_Link_Table_Entry()
returns a valid pointer value as it should. However I still haven't got
pairing in 15.10.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-02-04 Thread Jan Vodochalek
I traced the rtbt binary on 12.10. The result is:
Ubuntu 12.10:

48609b - jump taken
4860b3  -jump
4860cc - no jump
486102  - jump
48615c - jump

It means, that the _v16 value is zero on Ubuntu 12.10. So the function 
LM_Find_Link_Table_Entry() should return 0 value. For some reason the 
comparison in that routine is returning non zero value on 15.10.
The rest of the LMssp_LM_User_Confirmation_Request_Reply() routine on 12.10 
clears the timer and writes du then quits.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Blaze
How about to try compiling the driver with an ancient gcc version
(4.5.3)?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Blaze
So my basic theory is: LM_Find_Link_Table_Entry() is trying to read
something (link table) from efuse data and when the data is malformed
LMssp_LM_User_Confirmation_Request_Reply() fails. Now it's only left to
find out why is the data malformed.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Blaze
Correction:
>on the last iteration
on every iteration
Or there's another way also but it doesn't really make sense. I'm being 
confused here.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Jan Vodochalek
At the address 0x48615c I've got jump, so the memory at the address
(_v16 + 220) & 255) equals 0, which is wrong. This way we never reach
the _LMssp_Send_LMP_DH_Key_Check() routine.

I would need to trace this on Ubuntu 12.10 where is the pairing
successful.

I could nop-out the jump at the address 0x48615c and reach the
_LMssp_Send_LMP_DH_Key_Check(), but the comparison is done in the
_LMssp_Send_LMP_DH_Key_Check(), so the patch of rtbt was so far without
pairing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Blaze
Logic an physical link table structures from include/rt3298_iomap.h:

http://paste.ubuntu.com/23881034/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Blaze
_v16 stores the output of LM_Find_Link_Table_Entry() which can be 0 when
RtlCompareMemory() is non-zero (error) on the last iteration. See the
link below.

http://paste.ubuntu.com/23880923/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-28 Thread Jan Vodochalek
@Host

Can you trace with edb debugger this routine inside rtbt?

LMssp_LM_User_Confirmation_Request_Reply()
{// addr = 0x00486064
long long _v16;// _cfa_fff0
long long _v32;// _cfa_ffe0
long long _v40;// _cfa_ffd8
long long _v48;// _cfa_ffd0
_unknown_ __rbp;   // r59
long long _t73;// _t73
long long _t96;// _t96
long long _t102;   // _t102
long long _t109;   // _t109
long long _t110;   // _t110

_v32 = _t102;
_v40 = _t109;
_v48 = _t96;
_t73 = _v40;
_t110 = _t73;
LM_Find_Link_Table_Entry();
_v16 = _t73;
if(_v16 == 0) {
return;
}
if(( *(_v16 + 122) & 65535) == 31) {  // *(_v16 + 122) & 65535) = 31
if(( *(_v16 + 219) & 255) != 0) {
DM_Clear_Timer(); //0x0049bbf4  //timer cleared
 *(_v16 + 219) = 0;
}
if(( *(_v16 + 216) & 255) == 0) { 
 *(_v16 + 221) = 1;
if(( *(_v16 + 220) & 255) == 0) {  //0x48615c we go here
 *(_v16 + 122) = 33; //put 33 decimal value to pointer *(_v16 + 
122) and quit writing du 
} else {
if(( *(_v16 + 221) & 255) == 1) {
r8d = 65;
LMP_Send_Accepted();  //0x00494DF6
_t110 = _v16;
_LMssp_Send_LMP_DH_Key_Check() //0x0048983A
   }
}
} else {
 *(_v16 + 221) = 1;
if(( *(_v16 + 225) & 255) != 0) {
_t110 = _v16;
_LMssp_Send_LMP_DH_Key_Check();//0x0048983A
 *(_v16 + 122) = 32;
}
}
write_du(6, _v16 + 424, _v48, _t110); //we get here and quit
return;
} else {
return;
}

Somehow the value at the *(_v16 + 220) in this routine is zero and the
program is quitting before _LMssp_Send_LMP_DH_Key_Check() is reached.
This is not the case on Ubuntu 12.04 and 12.10 where it is pairing. I
would be interested how it is on Ubuntu 12.10. You will need a BT V4
device in order to pair with simple secure mode and reach this routine.

The decompiled file is provided in the earlier post.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-26 Thread Høst
@kukulo2011 (post 252)

Having Windoze doesn't always mean that it will update critical firmware
components (it doesn't, and I barely use Windows). I just installed
Ubuntu 13.10 on a usb drive along with the respective drivers (rt3290sta
for wifi and rtbt for bt) and almost everything works as expected.
However I noticed some things that as far I remember didn't happen in
12.04-13.04:

- When trying to send/receive a file, the transfer dialog returns an error (it 
doesn't even connect to the device).
- BT FTP browsing works, but nautilus gives an error (it was something like 
'backend doesn't support this') when trying to download/upload a file to the bt 
client, which, in this case, was my phone.  It's not my phone's fault, though.
- Oddly, applications can download data if you open anything. For example, if 
you open a picture, the image viewer will download and display it.
- The connection doesn't drop when using the PC as bluetooth speaker.
This suggests me that something is wrong in Ubuntu's bluetooth stack.


I've been following this since a while ago and I remember that back when Ubuntu 
14.04 was out I tried:
- downgrading the kernel
- downgrading everything bluez-related
Nothing worked. I'm now thinking about downloading older Ubuntu versions on 
which the driver worked ok and then try upgrading bluez/kernel to see what 
happens.
Count me in if you want a tester.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-25 Thread Jan Vodochalek
I would first get the source diff of bluez and when we have the root
cause of the pin mismatch, then I would decide whether is reasonable to
patch bluez or the rtbt binary.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-24 Thread Blaze
Oh, I guess you may be right. It looks more like a protocol story rather
than an API story. In the worst case scenario we can patch bluez and
bluez-obexd to make the whole thing work again as it should.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-24 Thread Jan Vodochalek
The default pin does not matter. In ssm both pins are shown up. Each
time a new set of pins is generated. When I click on accept pin, the
rtbt routine LMssp_LM_User_Confirmation_Request_Reply is being executed.
When I traced the binary, for some reason the comparison routine is not
reached. It can be that some signals in the bluez changed in the header
files, the hexadecimal value of some strings. I would be looking for
something like that. The bluez 4.98 was with kernel 3.18 working, the
bluez 5.35 with kernel 4.2.0 is not pairing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-24 Thread Blaze
Can it be that some security imrovements had been made on the bluez
side? As a result default pin is not being accepted in simple secure
mode.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-24 Thread Jan Vodochalek
Is it possible that the changes to bluetooth package affect the driver
pairing? What I have tested, the Bt v4 pairing on Ubuntu 12.04 and 12.10
succeeds, but on 14.04 and later not. The differences that could affect
the functioning are kernel and bluetooth package - bluez. When I tried
to pair with command line on 15.10, the pairing was not successful due
to mismatched pin.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-23 Thread Blaze
But I had to revisit and rework all the changes that were done before up
to an original version in order to make the module compile with every
kernel since v3.2. So now I'm pretty confident that every single change
works how it should and has no sideffects.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-23 Thread Jan Vodochalek
The work was done previously, before you took over the source. Check the
kernel macros in the source.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-23 Thread Blaze
But I didn't touch any structures except "rtbt_hps_ops" and now it's in
an original state besides it's not being used inside the userspace part.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-23 Thread Jan Vodochalek
It is quite hard, since I have no source for the rtbt. The kernel 3.18
was ok to pair, but the kernel 4.02 is not pairing in simple secure
mode. When I compiled the wrapper rtbth some time ago, I checked the
source and there are data structure changes between these two versions.
You have this already implemented in your source via macros, which is
checking the kernel version. Can happen that some more structures are
changes.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-22 Thread Blaze
>In the later kernels
>the data structures were changing, but the rtbt binary remained
>unchanged and thus some structures are failing to get processed by rtbt
>binary.

But is it possible to track down the exact kernel version where those
changes did happen? So we can find out at least what was changed (ioctl
api for example). That's the information I'm trying to get here all the
way, but nobody's willing to help. Maybe it's even possible to came up
with some workaround on the kernelspace side but only if you know
exactly what's wrong.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-22 Thread Jan Vodochalek
@Host

The bluetooth driver I was using with Ubuntu 12.04 and 12.10 was the
loimu's driver. The rtbth.ko was compiled without problems. Pairing with
BT V2 possible, pairing with BT V4 as well, but I was unable to send
data to BT V4 and the connection dropped after 2 seconds. I've tried the
firmware from windows bluetooth driver: I shortened the file by three
bytes and used the update-driver.sh in the tools directory, then used
sudo make install. Unfortunately the windows firmware is working the
same way - I cannot pair in simple secure mode. The rtbt user space
driver is doing the pin comparison and rejecting the connection. I guess
the rtbt user space driver needs to be corrected. In the later kernels
the data structures were changing, but the rtbt binary remained
unchanged and thus some structures are failing to get processed by rtbt
binary. If we would have source then the thing would be straight
forward, but without source modifying the rtbt binary really depends on
how lucky is the one, who is tracing the binary. The rtbt binary is
possible to trace with edb debugger in user space, but the tracing is
complicated in the timeout routines, where the other bluetooth party is
setting timeout on communication channel and thus making the tracing
difficult.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-17 Thread Blaze
2 Höst

1. It's simply not possible that you were using the same driver every
and each ubuntu release because kernel API is constantly changing.

2. Since you are a dualboot user there is a high probability that you
already had an updated firmware from windoze session. That's why you had
no issues at some point. But now it's fixed and the stock firmware is
being loaded at every driver startup. Ironically it's the old outdated
and buggy firmware. :) Remember: it's almost 5 years old.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-17 Thread Høst
@kukulo2011
Which driver are you using? There's a zip somewhere among all the previous 
replies that works *absolutely* flawlessly. I guess the patched version doesn't 
work with older kernel releases.

Try using Ubuntu 13.10 - the last Ubuntu release on which the driver
worked with no problems.


As for the driver, whatever I did it wouldn't work. Even without patching the 
driver it should at least initialize the bt device, but it doesn't seem to 
enable the bt chip. The module is loaded in kernel, though. Perhaps it doesn't 
work on non-ubuntu kernels.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-17 Thread Jan Vodochalek
I tried the Ubuntu 12.10 with the rtbt driver, but the situation is the
same as with the 12.04: The BT V4 device can pair, but cannot transfer
files. Moreover the connection drops each 1-2 seconds, then reconnects.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-16 Thread Jan Vodochalek
When you want to patch the rtbt binary with newest firmware, you should
do it befofe sudo make install. You can repeat the sudo make install
after patching the binary. I will give it a try on 12.10 live system.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-16 Thread Høst
@kukulo2011 
If you're going to use the driver on Ubuntu 12.04 you can use the unpatched 
version that is several replies back in this thread. It works flawlessly with 
Ubuntu 12.10 (up to Ubuntu 13.10).

Just installed the driver on Manjaro Linux, but the bt chip appears to
not be recognized by the OS. Also, I remember that if I did an 'sudo
modprobe rtbth', the light would turn from orange to white. But it's not
turning white, lol.

Some outputs
[schutzstaffel@kristallnacht ~]$ uname -a
Linux kristallnacht 4.9.0-1-MANJARO #1 SMP PREEMPT Fri Dec 23 10:47:01 UTC 2016 
x86_64 GNU/Linux

sudo lspci -v:
02:00.1 Bluetooth: Ralink corp. RT3290 Bluetooth
Subsystem: Hewlett-Packard Company Ralink RT3290LE 802.11bgn 1x1 Wi-Fi 
and Bluetooth 4.0 Combo Adapter
Flags: bus master, fast devsel, latency 0, IRQ 16
Memory at f020 (32-bit, non-prefetchable) [size=64K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/32 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Device Serial Number 00-00-ba-ac-a0-dc-84-0c
Kernel driver in use: rtbt
Kernel modules: rtbth

relevant dmesg output when rmmod'ing rtbth and then modprobe'ing it
again:

[  +5.990406] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed 
to flush
[Jan16 20:38] ieee80211 phy0: rt2x00queue_flush_queue: Warning - Queue 2 failed 
to flush
[ +12.505436] Bluetooth: rtbt_hps_iface_deinit(): hciDev=0x9cb2b5504000
[  +0.002935] Bluetooth: remove rtbt_pci_driver done!
[ +13.172726] Bluetooth: RTBT_Tb: vendor=0x1814, device=0x3298
[  +0.02] Bluetooth: RTBT_Tb: vendor=0x0, device=0x0
[  +0.02] Bluetooth: DynamicAlloc pci_device_id table at 0x9cb2491e4f40 
with size 64
[  +0.01] Bluetooth: RTBT_Tb: vendor=0x1814, device=0x3298
[  +0.01] Bluetooth: Convert: vendor=0x1814, device=0x3298
[  +0.02] Bluetooth: RTBT_Tb: vendor=0x0, device=0x0
[  +0.01] Bluetooth: pci_device_id: vendor=0x1814, device=0x3298
[  +0.000186] Bluetooth: rtbt_pci_probe(): PCI Dev(:02:00.1) get resource 
at 0xf020,VA 0xb95442c6,IRQ 16.
[  +0.10] Bluetooth: call dev_ops->dev_ctrl_init!
[  +0.17] Bluetooth: call dev_ops->dev_resource_init!
[  +0.000208] RX_Base_PTR0(0x180)= 0x371cd000
[  +0.000798] RX_Base_PTR1(0x190)= 0x280


Installed the driver from the last github link with 'sudo make install' (yes I 
did comment the 3 lines before installing it) and then patched it. No luck so 
far.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-15 Thread Jan Vodochalek
The problem is in the rtbt binary. The BT V4 and BT V2 pairing routines
are completely different. I traced the rtbt binary with edb debugger and
I could find the LMssp_LM_User_Confirmation_Request_Reply routine
activated only with BT V4 devices. Eventually we could pair BT V4
devices with patched rtbt binary in order to pair BT V4 devices.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-13 Thread Jan Vodochalek
You will need following source files. I am attaching the list.

** Attachment added: "rtbt_file_list.txt"
   
https://bugs.launchpad.net/bluetooth/+bug/1189721/+attachment/4803956/+files/rtbt_file_list.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-12 Thread Jan Vodochalek
I am wondering what the Mediatek is going to protect with NDA. The
rt3290 combo card is a legacy product and moreover they abandoned the
support of the card. Will be they selling this product in the future ?
Anyway, there is only 64bit version out in the linux domain only for one
platform. új

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-12 Thread Blaze
Yeah, I have a decompiled file already. But, as far as it cannot be
compiled back with all the resources included, there's not much use of
it. There are non-zero chances to get the sources from Mediatek, but you
need to find the right person and maybe to sign some NDA. It would be
better to try that.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Jan Vodochalek
I can confirm successful pairing on Precise 12.04.5 with Bluetooth V4,
but file sending is not working as the connection is dropping after 1 or
2 seconds and then reconnects.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Jan Vodochalek
Sure, but I have a problem with my computer which is using AMD graphics
and that was not working with Raring, but I will give it a try.
Meanwhile I decompiled the rtbt binary. I am attaching the output.
Hopefully you can make a use of it. The syntax is C+, but I think it is
far from being able compiled by gcc.

The version of the rtbt which was decompiled it the same on your github
+ contains the newest firmware.

** Attachment added: "rtbt binary driver decompiled"
   
https://bugs.launchpad.net/bluetooth/+bug/1189721/+attachment/4802971/+files/rtbt.rec

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Blaze
Oh, btw can you test this driver on a 12.04 LTS live session?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Blaze
Some people say it's working or was working before. However for me it's
still not clear, as I have no devices to test with.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Jan Vodochalek
Is the driver confirmed to work with BT V4?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Blaze
Sources are not available, it's a proprietary part. But it's Linux API
agnostic, so if something changes it shouldn't affect the functionality
of the driver.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-11 Thread Jan Vodochalek
Yes, I did it with sudo make install. Of course I modified the makefile,
so I could use the make install command. I tried it yesterday again with
the same result. Is the source for the rtbt available?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-10 Thread Blaze
rtbt isn't a loader it's the driver itself. And it's running in
userspace. The other stuff (kernel module) is just a userspace-to-
kernelspace wrapper. Have you replaced /usr/bin/rtbt with the patched
one?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-10 Thread Jan Vodochalek
Strange, because I used the script in tools to update the firmware in
the binary rtbth driver loader, then reloaded the driver with modprobe.
Is the driver confirmed to work on other systems? Does it pair BT V4
devices as well? I can pair and transfer files with BT V2, but not
cannot pair with BT V4. When pairing with BT V4, after confirming the
pin, the Bluetooth manager says an error message that the pin does not
match.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2017-01-07 Thread Blaze
>The pairing with BT 4 LE devices still not possible.

The most liable reason behind that is an outdated firmware.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-28 Thread Blaze
I've tried to use the latest firmware and as far as I can see it works
better or at least faster. The result of my investigations was published
here:

https://github.com/loimu/rtbth-dkms/tree/master/tools#firmware-upgrade

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-20 Thread corrado venturini
Downloaded from launchpad and installed succesfuly on Ubuntu 16.04

corrado@corrado-HP-xeni:~$ inxi
CPU~Dual core Intel Core i5-4210U (-HT-MCP-) speed/max~1685/2700 MHz 
Kernel~4.4.0-51-generic x86_64 Up~34 min Mem~1156.2/3883.3MB HDD~500.1GB(3.3% 
used) Procs~232 Client~Shell inxi~2.2.35  
corrado@corrado-HP-xeni:~$ 

activated with 'sudo modprobe rtbth' I was able to connect and use my
Bluetooth loudspeaker and also send sound and a file to another laptop
using a different bluetooth chip and running Ubuntu 16.04.

The 1st time i was unable to use the driver in Ubuntu 16.04. may be the
Bluetooth remain some way active also after shutdown+power-off and
reboot?

Let me know if you need more info (log, dmesg ...)

also with 16.10 and 17.04 it was successful!!!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-15 Thread corrado venturini
I was also able to connect and play music to another laptop using a
different bluetooth chip and running Ubuntu 16.04

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-14 Thread corrado venturini
Downloaded from launchpad and installed succesfuly on Ubuntu 12.04.4

corrado@corrado-HP-pre:~$ uname -a
Linux corrado-HP-pre 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 
17:39:31 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
corrado@corrado-HP-pre:~$ 

activated with 'sudo modprobe rtbth' I was able to connect and use my Bluetooth 
loudspeaker.
Let me know if you need more info (log, dmesg ...)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-12 Thread Blaze
Hello, corrado venturini. Thank you for testing, but as Mr. Høst says
here some changes affecting pairing did happen before Trusty (kernel
3.13) or maybe since that actual release. Therefore it would be nice if
someone will test out the driver against Ubuntu Precise (12.04 LTS).
It's not necessary to install it, live session  would do also.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-11 Thread corrado venturini
@Blaze: On my laptop HP250 I downloaded the package from launchpad on Ubuntu 
Trusty:
corrado@corrado-trusty:~$ uname -a
Linux corrado-trusty 3.13.0-105-generic #152-Ubuntu SMP Fri Dec 2 15:37:11 UTC 
2016 x86_64 x86_64 x86_64 GNU/Linux
corrado@corrado-trusty:~$ 
Installed succesfuly.
activated with 'sudo modprobe rtbth' 
Bluetooth status appears in the menu bar but I'm unable to connect a Bluetooth 
loudspeaker that is working fine on my HP620.
Bluetooth loudspeaker is detected, added successfuly, but failed to connect.
In the attached zip you will find output from: dmesg, inxi, log, lspci.
I hope this will be useful, let me know if You need more info.
Tomorrow i hope to repeat the same try on Ubuntu Xenial and Zesty.
Thanks for Your work.

** Attachment added: "output from: dmesg, inxi, log, lspci."
   
https://bugs.launchpad.net/bluetooth/+bug/1189721/+attachment/4790230/+files/trustyblue.tar.gz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-05 Thread raffaele
@Blaze

I tried the deb package from launchpad but does not work, the bluetooth
is unavailable. Any suggestions?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-05 Thread Blaze
>Here's some dmesg output:

This output simply means that the remote device closes the connection.
Why? Who knows.

You can get more verbose output by changing the DebugLevel variable's
value (rtbth_hlpr_dbg.c) from ERROR to TRACE and recompiling the driver,
but I'm not sure this can help either.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-04 Thread Høst
@Blaze
Just tried your latest package for xenial in live-cd mode and with my main 
computer, no luck so far. 

I'll try this driver in the upcoming days with older Ubuntu releases. I
remember that Ubuntu 13.10 was the last distro on which this driver
worked perfectly (I mean I was even able to use my computer as bluetooth
speaker).

Here's some dmesg output:
[  +0.11] Bluetooth: RFCOMM ver 1.11
[Dec 4 12:14] RTBTH_IOCDMAC: dmac.dmac_op=2
[  +1.254250] Bluetooth: rtbt_hci_dev_notify(dev=0x8c42135f): evt=0x1
[  +1.381398] RTBTH_IOCDMAC: dmac.dmac_op=2
[  +0.035970] Bluetooth: rtbt_hci_dev_notify(dev=0x8c42135f): evt=0x2
[ +11.771352] Bluetooth: rtbt_hci_dev_notify(dev=0x8c42135f): evt=0x1
[  +7.484640] RTBTH_IOCDMAC: dmac.dmac_op=2
[  +0.020686] Bluetooth: rtbt_hci_dev_notify(dev=0x8c42135f): evt=0x2

That's what I get when I try to pair with my phone (BT 4.0 LE). As
someone else mentioned earlier, I think that there are no problems with
BT <4.0 devices (that's why people is able to connect with bt keyboards
and such things).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-12-04 Thread raffaele
hi @Blaze and @Cieslix,
is enough install tha deb hosted here 
https://launchpad.net/~blaze/+archive/ubuntu/rtbth-dkms/+packages?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-23 Thread Cieslix
@Blaze

I have Ubuntu 16.04 and ASUS with RT3290 Wireless/BT. After I've
installed your driver I able to connect to my Android phone (pair is not
failing, I was also able to use Bluetooth Router). I successfully
connected BT Headset and BT Keyboard.

Just I've had to run "sudo modprobe rtbth"

Thx

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-23 Thread Cieslix
@Blaze

I have Ubuntu 16.04 and ASUS with RT3290 Wireless/BT. After I've
installed your driver I able to connect to my Android phone (pair is not
failing, I was also able to use Bluetooth Router). I successfully
connected BT Headset and BT Keyboard.

Thx

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-22 Thread Blaze
For everyone who wanna test the shit out of this driver there're new packages 
here:
https://launchpad.net/~blaze/+archive/ubuntu/rtbth-dkms/+packages

Now the driver can be used with any kernel since 2012 and maybe even earlier.
Therefore it's possible to track down the exact one where something went wrong.

But I still think that the cause behind the pairing issue is rather
inside the outdated old firmware.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-14 Thread Blaze
@Host

Do you mean this patch https://gist.github.com/initrunlevel0/11025774 ?

The first three changes are ok, however he did them without checking the
kernel version (ugh, bad),  but commenting out the line

>hdev->ioctl = rtbt_hci_dev_ioctl;

wasn't so smart. So ok, I'll look what I can do here.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-14 Thread Høst
No one is officially working on this. It's more useful to have an open
bug with no 'maintainer' rather than one with a ghost 'maintainer'.

** Changed in: bluetooth
 Assignee: Tomáš (halamek-tomas) => (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-14 Thread Høst
@Blaze
According to:
http://wirama.web.id/rt3290-bluetooth-rtbth-driver-with-kernel-3-13/ there were 
some changes made to the kernel that rendered our driver useless. If you don't 
have any device atm for testing I can be your tester.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-11-08 Thread corrado venturini
Still not working with Ubuntu 17.04 on my HP 250

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-27 Thread Blaze
Well, there's nothing interesting between 3.11 and 3.13 kernel releases.
I see no changes that can affect device pairing.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-16 Thread corrado venturini
Still not working with Ubuntu 16.10 on my HP 250

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-02 Thread Høst
>From Ubuntu's wiki

"Ubuntu 13.10 includes the 3.11.0-12.19 Ubuntu Linux kernel which was
based on the v3.11.3 upstream Linux kernel"

But somewhat Ubuntu >14.04 managed to mess things up because even if you
install that kernel BT still won't work. There must be a problem (as
well) with the BT manager.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-02 Thread Blaze
>It used to work on Ubuntu <13.10 with my BT4.0 LE device.

Okay, but I have no devices to debug this stuff atm.
Anyways, does anyone know which was the last kernel version it was working with 
finely?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-02 Thread Høst
@blaze
 
The information must be wrong. It doesn't support WiFi ac nor it's just BT 
3.0+HS. 


http://www.ubuntu.com/certification/catalog/component/pci/103c:18ec/1814:3298/
http://h20564.www2.hp.com/hpsc/swd/public/detail?swItemId=vc_132456_1
Windoze device manager recognizes it as a BT4.0 chip, too. 

Be it 3.0 or 4.0, the pairing feature is still broken. It used to work
on Ubuntu <13.10 with my BT4.0 LE device.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-02 Thread Blaze
>Features
>802.11n with Bluetooth 3.0+HS

http://www.mediatek.com/en/products/connectivity/wifi/pc/combo/rt3290/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-02 Thread Blaze
Dunno if this chip even supports Bluetooth 4.0+ but blob does not for
sure.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-10-01 Thread Høst
@blaze
Just installed the Xenial package and apparently bluetooth now seems to work, 
but I'm still getting the pairing error (can't send/receive files too). Tested 
with a 4.0 BT LE device.

dmesg output:
[  +0.002681] RTBTH_IOCDMAC: dmac.dmac_op=1
[  +0.519990] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[  +0.06] Bluetooth: BNEP filters: protocol multicast
[  +0.09] Bluetooth: BNEP socket layer initialized
[  +0.712093] Bluetooth: RFCOMM TTY layer initialized
[  +0.12] Bluetooth: RFCOMM socket layer initialized
[  +0.13] Bluetooth: RFCOMM ver 1.11
[ +34.549791] RTBTH_IOCDMAC: dmac.dmac_op=2 <- this line keeps appearing 
whenever I try to pair with the bt device

rfkill list:
1: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

uname -a:
Linux schutzstaffel 4.7.0-040700-generic #201608021801 SMP Tue Aug 2 22:03:09 
UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-28 Thread Blaze
>Is there additional
>installation that needs to be done?

$ sudo modprobe rtbth
$ sudo rfkill unblock bluetooth

Check if it's working.
$ hcitool dev

It's not necessary to use rfkill every time. DE GUI tools can enable
Bluetooth too.

Systemd service for autoloading this driver is in the pipe.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-27 Thread Randy Winchester
I installed the .deb, #2 for 16.04LTS and rebooted.  I still see the "No
bluetooth adapters found" message in the settings app.  Is there additional
installation that needs to be done?


On Tue, Sep 27, 2016 at 2:39 AM, Blaze <1189...@bugs.launchpad.net>
wrote:

> It's already published.
>
> Packages:
> for Yakkety
> https://launchpad.net/~blaze/+archive/ubuntu/test/+files/
> rtbth-dkms_3.9.4.4-1~yakkety~ppa1_all.deb
> for Xenial
> https://launchpad.net/~blaze/+archive/ubuntu/lts-backports/+
> files/rtbth-dkms_3.9.4.4-1~yakkety~ppa1_all.deb
> Yeah, it says "yakkety", I know.
>
> Source:
> https://launchpad.net/~blaze/+archive/ubuntu/test/+files/
> rtbth-dkms_3.9.4.4.orig.tar.xz
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1189721
>
> Title:
>   Ralink RT3290 doesn't have a bluetooth driver
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions
>


-- 
Randy Winchester
PO Box 426074
Cambridge, MA  02142
ranwinches...@gmail.com

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-27 Thread Blaze
It's already published.

Packages:
for Yakkety
https://launchpad.net/~blaze/+archive/ubuntu/test/+files/rtbth-dkms_3.9.4.4-1~yakkety~ppa1_all.deb
for Xenial
https://launchpad.net/~blaze/+archive/ubuntu/lts-backports/+files/rtbth-dkms_3.9.4.4-1~yakkety~ppa1_all.deb
Yeah, it says "yakkety", I know.

Source:
https://launchpad.net/~blaze/+archive/ubuntu/test/+files/rtbth-dkms_3.9.4.4.orig.tar.xz

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-26 Thread Høst
@Blaze
I don't see any "work", lol
But seriously speaking, if you fixed it and you're gonna publish the fix, then 
we all are gonna be very thankful with you.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-25 Thread Blaze
If someone thinks that hacking this unpleasant kernel module code is a
piece of cake then why didn't he do it himself?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-25 Thread rigodon
Still an issue with ubuntu 16.04 and Mint 18...does not have bluetooth
support.

ASUS X552L

lspci -v output
03:00.1 Bluetooth: Ralink corp. RT3290 Bluetooth
Subsystem: Foxconn International, Inc. RT3290 Bluetooth
Flags: bus master, fast devsel, latency 0, IRQ 10
Memory at f7c0 (32-bit, non-prefetchable) [size=64K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/32 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [140] Device Serial Number 00-00-7c-95-c0-b1-08-10

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-23 Thread Alex10336
What « work » are you talking about ?

You should consider this is not a place to claim or requesting donate...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-23 Thread Blaze
Fixed kernel panics on driver load/unload with kernels above 4.4.
Rfkill now works pretty good too.

If you find my work here helpful please consider to donate
via my Pateron account https://www.patreon.com/blazy

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-21 Thread Blaze
I've updated the driver to work with kernel 4.8 and kernels above 4.5
(probably).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-05 Thread Blaze
>kernel 4.7.2
You need a stock kernel.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1189721] Re: Ralink RT3290 doesn't have a bluetooth driver

2016-09-04 Thread Tankypon
I just tried your driver on Ubuntu 16.04 with the kernel 4.7.2 and I
cannot make it work. My system log is spammed with:
'BthIsr():-->HCI_RUNNING not set!'.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1189721

Title:
  Ralink RT3290 doesn't have a bluetooth driver

To manage notifications about this bug go to:
https://bugs.launchpad.net/bluetooth/+bug/1189721/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


  1   2   >