Package Details: rts_bpp-dkms-git 12-1

Git Clone URL: https://aur.archlinux.org/rts_bpp-dkms-git.git (read-only, click to copy)
Package Base: rts_bpp-dkms-git
Description: A kernel module for Realtek Card Reader RTL8402/8411/8411B Device
Upstream URL: https://github.com/M0Rf30/rts_bpp
Keywords: 10EC:5286 10EC:5287 10EC:5289 Barossa RTL8402 RTL8411 RTL8411B
Licenses: GPL
Submitter: robertfoster
Maintainer: robertfoster
Last Packager: robertfoster
Votes: 4
Popularity: 0.000000
First Submitted: 2016-08-05 13:36 (UTC)
Last Updated: 2023-03-03 11:37 (UTC)

Dependencies (2)

Required by (0)

Sources (3)

Latest Comments

1 2 Next › Last »

brandon.arnold commented on 2023-05-08 20:50 (UTC)

Can someone explain what is broken with this dkms module? SD cards no longer work on my laptop. And judging by the last comments, I'm not the only one.

xpt commented on 2023-02-20 23:55 (UTC)

dkms install --no-depmod rts_bpp/11 -k 6.1.12-1-lts Error! Bad return status for module build on kernel: 6.1.12-1-lts (x86_64)

aquator commented on 2022-10-17 06:40 (UTC)

==> dkms install --no-depmod rts_bpp/11 -k 6.0.2-arch1-1
Error! Bad return status for module build on kernel: 6.0.2-arch1-1 (x86_64)

aquator commented on 2022-05-18 10:06 (UTC) (edited on 2022-05-18 10:06 (UTC) by aquator)

==> dkms install --no-depmod rts_bpp/11 -k 5.17.8-arch1-1
Error! Bad return status for module build on kernel: 5.17.8-arch1-1 (x86_64)

cdine commented on 2021-12-09 01:28 (UTC)

Working well currently in Arch with 5.15.7-hardened1-1-hardened

eudes commented on 2020-07-28 00:41 (UTC)

Works in Manjaro, kernel 4.19 LTS, with Realtek RT525A. Thanks!

PythonNut commented on 2020-05-05 01:14 (UTC)

I implemented some fixes for Linux 5.6 at https://github.com/PythonNut/rts_bpp

KacperA commented on 2020-02-23 11:44 (UTC)

In PKGBUILD

pkgver() {
    cd ${_pkgname}
    echo $(git rev-list --count master)
}

echo returns 9 instead of 10 and it's cloning back version 9 which causing infinity 9->10 update. @robertfoster check this out please.

KacperA commented on 2020-02-23 11:31 (UTC)

It's installing version 9 every time

(1/4) Reloading device manager configuration...
(2/4) Arming ConditionNeedsUpdate...
(3/4) Install DKMS modules
==> dkms install rts_bpp/9 -k 5.5.5-1-ck-skylake
(4/4) Cleaning pacman cache with paccache …
==> no candidate packages found for pruning

arteme commented on 2020-01-21 08:16 (UTC)

Thank you for picking up my dkms.conf suggestion, but we now have a different problem. git+https://github.com/Ri0n/rts_bpp.git doesn't have "define.h", while git+https://github.com/M0Rf30/rts_bpp.git does. Ri0n's Makefile is made to run "make" and "make install" in the module source dir, which is not what dkms does. Dkms runs something like "make -j8 KERNELRELEASE=5.4.13-arch1-1 -C /usr/lib/modules/5.4.13-arch1-1/build M=/var/lib/dkms/rts_bpp/10/build", (i.e. using kenel's Makefile, not the modules) that's why the default step of copying "define.release" to "define.h" never takes place.

You have multiple options: 1) copy the file in PKGBUILD's pakage() function; 2) add an executable script that does "test -f define.h || cp define.release define.h" and put it as "PRE_BUILD=my_copy_script.sh" in the dkms.conf file (putting the shell command there doesn't work, it needs to be an executablescript); 3) something else entirely...