Open ghost opened 4 years ago
please add skype jack_2431 , i will check .
I solved this by disabling all CONFIG items that had "RC" (i.e. remote control). Probably better option would be to use make menuconfig
to select only the needed options. Running Void with kernel 5.10.16_1.
# Clone repositories
git clone https://github.com/tbsdtv/media_build.git
git clone --depth=1 https://github.com/tbsdtv/linux_media.git -b latest ./media
cd media_build
make dir DIR=../media
# Disable certain modules that do not compile
sed -i '/VIDEO_OV9650/d' ./v4l/versions.txt && sed -i '/9.255.255/a VIDEO_OV9650' ./v4l/versions.txt
sed -i '/VIDEO_OV772X/d' ./v4l/versions.txt && sed -i '/9.255.255/a VIDEO_OV772X' ./v4l/versions.txt
make allyesconfig
# Disable all *_RC* config items
# (without this I got symbol errors for rc_register_device etc)
sed -i -r 's/(^CONFIG.*_RC.*=)./\1n/g' v4l/.config
make -j12
sudo make install
@pkorpine without your script i gry RC error after installing, but when I use your script i get error "lirc_scancode_event" ir-mce kbd-decoder.ko undefined
@pkorpine without your script i gry RC error after installing, but when I use your script i get error "lirc_scancode_event" ir-mce kbd-decoder.ko undefined
sed -i -r 's/(^CONFIG._IR.=)./\1n/g' v4l/.config
solved your issue
but i after i got
[ +0.000715] dvb-usb: found a 'TurboSight TBS 5520SE' in cold state, will try to load a firmware
[ +0.000109] usb 1-1.3: Direct firmware load for dvb-usb-id5520se.fw failed with error -2
[ +0.000015] dvb-usb: did not find the firmware file 'dvb-usb-id5520se.fw' (status -2). You can use
Just missing one step wget http://www.tbsdtv.com/download/document/linux/tbs-tuner-firmwares_v1.0.tar.bz2 sudo tar jxvf tbs-tuner-firmwares_v1.0.tar.bz2 -C /lib/firmware/
What I did to have the tuner working is all below following @pkorpine message
git clone https://github.com/tbsdtv/media_build.git git clone --depth=1 https://github.com/tbsdtv/linux_media.git -b latest ./media
cd media_build make dir DIR=../media
sed -i '/VIDEO_OV9650/d' ./v4l/versions.txt && sed -i '/9.255.255/a VIDEO_OV9650' ./v4l/versions.txt sed -i '/VIDEO_OV772X/d' ./v4l/versions.txt && sed -i '/9.255.255/a VIDEO_OV772X' ./v4l/versions.txt
make allyesconfig
sed -i -r 's/(^CONFIG._RC.=)./\1n/g' v4l/.config sed -i -r 's/(^CONFIG._IR.=)./\1n/g' v4l/.config
make -j12
sudo make install
wget http://www.tbsdtv.com/download/document/linux/tbs-tuner-firmwares_v1.0.tar.bz2 sudo tar jxvf tbs-tuner-firmwares_v1.0.tar.bz2 -C /lib/firmware/
sudo reboot
@JonathanMegevand be warned that Markup Language is being interpreted in your comments and there are two missing per line:
`sed -i -r 's/(^CONFIG._RC.=)./\1n/g' v4l/.config
sed -i -r 's/(^CONFIG._IR.*=)./\1n/g' v4l/.config`
I could not use newer kernel versions, because i would get this error:
So I used these instructions to install the driver:
But i get the following output:
Output: USB2.0 port:
USB3.0 port:
So i searched the forums for a solution, and it was recommended to execute:
-> this statement is already present in the install.sh file, which i used (see first code block). If i only run the two commands above, it does not make a difference.
What can i do next?
uname -a (truncated)