Package Details: rtbth-dkms 3.9.6-1

Git Clone URL: https://aur.archlinux.org/rtbth-dkms.git (read-only, click to copy)
Package Base: rtbth-dkms
Description: rtbth Kernel module sources for Ralink RT3290 bluetooth, lomiu's solution.
Upstream URL: http://www.mediatek.com/
Licenses: Mixed
Conflicts: rtbth-dkms-git
Provides: rtbth
Submitter: tacchinotacchi
Maintainer: None
Last Packager: TheGoliath
Votes: 9
Popularity: 0.000000
First Submitted: 2015-08-20 06:56 (UTC)
Last Updated: 2020-06-29 13:12 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

ant0nio commented on 2016-05-16 21:06 (UTC) (edited on 2016-05-16 22:47 (UTC) by ant0nio)

it's broken with kernel 4.5.4-1.. the driver loads ok, but when you start rtbt program your logs get flooded with "BthIsr():-->HCI_RUNNING not set!" Edited: Just install 4.4.10-1-lts and its working ok!!

MrBlackWolf commented on 2016-04-08 20:22 (UTC)

Someone tested with kernel 4.4.5?

RonaldoAndreoli commented on 2016-02-07 18:11 (UTC)

After instaldo the drive did not work with the kernel 4.4.1-2 running on 14 HP Pavilion Notebook PC. When using the option to "modprobe -r rtbth" or "rmmod -f rtbth" the system froze. After much research and searching, I found the site http://software.techforums.space/software/rt3290-wifibluetooth-problem-3b1efe0f.html with unknown author the following solution that worked for me: "Is still working .. and fully integrated with gnome.to make it work automatically on each boot, i did some changes if it helps after install rtbth-dkms using pacaur.: 1. blacklist the module to Prevent it from load on boot: #echo "blacklist rtbth" > /etc/modprobe.d/ralink-bt.conf 2. Local script, / usr / local / sbin / rtbth, to load and start rtbt tool: #!/bin/bash sleep 5 /sbin/modprobe --ignore-install rtbth; /usr/bin/mknod /dev/rtbth c 192 0; /usr/bin/rtbt & 3. systemctl service, the /etc/systemd/system/rtbth.service file: [Unit] Description = Fix rtbth bluetooth after gmd start After = display-manager.service [Service] Type = oneshot ExecStart =/usr/local/sbin/rtbth TimeoutSec = 0 RemainAfterExit = true [Install] WantedBy = multi-user.target 4. enable it to start on boot: #systemctl enable rtbth Hope it helps!" Blessings to the unknown author!!!

RonaldoAndreoli commented on 2016-01-27 02:06 (UTC)

First: yaourt -S linux-headers then yaourt -S rtbth-dkms

p4n74 commented on 2016-01-10 11:51 (UTC) (edited on 2016-01-10 11:55 (UTC) by p4n74)

Hi while doing `makepkg -sri`, it is giving error as: Error! echo Your kernel headers for kernel 4.3.3-2-ARCH cannot be found at /usr/lib/modules/4.3.3-2-ARCH/build or /usr/lib/modules/4.3.3-2-ARCH/source. error: command failed to execute correctly Here is the full detail on the installation part: http://pastebin.com/Y6ukJnr0 Any help on how to solve this error?

tacchinotacchi commented on 2015-10-25 17:21 (UTC) (edited on 2015-10-25 17:27 (UTC) by tacchinotacchi)

i'm sorry, but before i should ask: what changes justify the version change? I only see a typo. Did that typo actually give any compilation or run-time problems? EDIT: I see now. The commit fixes your legacy support, and i didn't notice because the legacy support itself is still not included in the package. Updating soon.

f1u77y commented on 2015-10-24 17:29 (UTC) (edited on 2015-10-24 18:47 (UTC) by f1u77y)

bump version to 3.9.4.1

tacchinotacchi commented on 2015-10-23 13:55 (UTC)

Done, thank you.

betseg commented on 2015-09-18 17:57 (UTC)

PKGBUILD should be: pkgname=rtbth-dkms pkgver=3.9.4 pkgrel=2 pkgdesc="rtbth Kernel module sources for Ralink RT3290 bluetooth" arch=('i686' 'x86_64') url='http://www.mediatek.com/' license=('mixed') depends=('dkms') optdepends=('bluez: Canonical implementation of bluetooth protocol' 'bluez-utils: Utilities for Bluez') provides=('rtbth') install='rtbth-dkms.install' source=("https://github.com/f1u77y/rtbth-dkms-aur/archive/${pkgver}.tar.gz") sha256sums=('90224da440e15308d9ef25dcb765400b1471c75c5bb4905e8e6665dd81a571da') prepare() { cd ${srcdir} tar -xf "${pkgver}".tar.gz cd "${provides}-${pkgver}" } package() { cd "${srcdir}/${provides}-${pkgver}" mkdir -p "${pkgdir}"/usr/bin mkdir -p "${pkgdir}"/usr/src mkdir -p "${pkgdir}"/etc/modprobe.d/ cp -r ./ "${pkgdir}/usr/src/${provides}-${pkgver}" cp tools/rtbt "${pkgdir}"/usr/bin/rtbt cp tools/ralink-bt.conf "${pkgdir}"/etc/modprobe.d/ralink-bt.conf }