This website works better with JavaScript.
Home
Help
Sign In
LILiK
/
openwrt-packages-dist
Watch
5
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27270
Commits
1
Branch
46 MiB
Tree:
3ef01e4dd9
lilik-openwrt-22.03
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '3ef01e4dd9'
${ noResults }
openwrt-packages-dist
/
multimedia
/
tvheadend
/
files
/
dvb.hotplug
7 lines
105 B
Raw
Normal View
History
tvheadend: multiple improvements - Added menuconfig options: - TV sources and protocols: SAT>IP, IPTV, HDHomeRun - SoftCAM (3 options) - Image cache (default changed to OFF) - Trace debug option (default changed to OFF) - Added menuconfig descriptions. - Removed codecs. - Made PIE option dependent on global OpenWRT PIE setting. - Run as regular user, not root. - Added USB hotplug script to change DVB tuners permissions. - Fixed a first-start bug(?) that I encountered: admin account created but not saved. Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
3 years ago
tvheadend: correct group permissions for /dev/dvb Provide group read, write and execute permissions for /dev/dvb, otherwise adapters will not be accessible from tvheadend. Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
3 years ago
tvheadend: multiple improvements - Added menuconfig options: - TV sources and protocols: SAT>IP, IPTV, HDHomeRun - SoftCAM (3 options) - Image cache (default changed to OFF) - Trace debug option (default changed to OFF) - Added menuconfig descriptions. - Removed codecs. - Made PIE option dependent on global OpenWRT PIE setting. - Run as regular user, not root. - Added USB hotplug script to change DVB tuners permissions. - Fixed a first-start bug(?) that I encountered: admin account created but not saved. Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
3 years ago
#!/bin/sh
case "$ACTION" in
add)
chgrp -R dvb /dev/dvb/*
chmod -R g+rwX /dev/dvb/*
;;
esac