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.
26638
Commits
1
Branch
46 MiB
Tree:
6f1e8ab67c
lilik-openwrt-22.03
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from '6f1e8ab67c'
${ noResults }
openwrt-packages-dist
/
multimedia
/
tvheadend
/
files
/
dvb.hotplug
7 lines
108 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: update to git master 2021-11-16, package cleanup, more options Changes: - Update to tvheadend git master branch, commit 2efe90cdcf74fdc4179692d283cf46c85e1cf681 dated 2021-11-16 - Removed patches that are not needed anymore. - Add patch to ignore a ICONV test that runs at tvheadned startup. This test fails without "full language support" in OpenWrt, but tvheadend appears to run fine anyway. - Descrambling needs libdvbcsa, a BUILD_PATENTED package. Control Word clients now depend on descrambling. - Added options: - CCCAM client - RegEx library choice: POSIX (internal) / libpcre (more compatible) / libpcre2 - Optimize for speed (-O3, LTO) - FFMPEG is working again. Added options for transcoding, but commented-out. If anyone needs this, just uncomment, make menuconfig and build. - Sort everything in a more logical order Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
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)
chown -R root:dvb /dev/dvb/*
chmod -R 660 /dev/dvb/*
;;
esac