This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# system information | |
[rock64@localhost ~]$ uname -a | |
Linux localhost 5.3.0-rc4-1-udl #8 SMP Mon Sep 2 16:29:02 EDT 2019 aarch64 GNU/Linux | |
[rock64@localhost ~]$ lsb_release -a | |
LSB Version: n/a | |
Distributor ID: Manjaro-ARM | |
Description: (none) | |
Release: 19.09 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" | |
# update pacman dbs | |
# sudo pacman -Syy | |
# install 950q driver if missing | |
# https://www.linuxtv.org/wiki/index.php/Hauppauge_WinTV-HVR-950Q | |
if [[ ! -f /lib/firware/dvb-fe-xc5000-1.6.114.fw ]]; then | |
wget http://www.kernellabs.com/firmware/xc5000/dvb-fe-xc5000-1.6.114.fw | |
mv dvb-fe-xc5000-1.6.114.fw /lib/firmware/ |