mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-18 17:33:31 +00:00
add lucii-app-oscam and oscam for SATV
This commit is contained in:
parent
f364ed4360
commit
d27dad8d2b
19
package/lean/luci-app-oscam/Makefile
Normal file
19
package/lean/luci-app-oscam/Makefile
Normal file
@ -0,0 +1,19 @@
|
||||
#
|
||||
# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
|
||||
#
|
||||
# This is free software, licensed under the Apache License, Version 2.0 .
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=LuCI for OSCAM
|
||||
LUCI_DEPENDS:=+oscam
|
||||
LUCI_PKGARCH:=all
|
||||
PKG_VERSION:=1.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(TOPDIR)/feeds/luci/luci.mk
|
||||
|
||||
# call BuildPackage - OpenWrt buildroot signature
|
||||
|
||||
|
@ -0,0 +1,16 @@
|
||||
module("luci.controller.admin.sattv", package.seeall)
|
||||
|
||||
function index()
|
||||
|
||||
-- entry({"admin", "Others"}, cbi("sattv/epg"), i18n("Others"), 70)
|
||||
|
||||
if nixio.fs.access("/etc/config/epg") then
|
||||
entry({"admin", "Others"}, cbi("sattv/epg"), _("sattv"), 66).index = true
|
||||
entry({"admin", "Others", "epg"}, cbi("sattv/epg"), _("EPG"), 1).i18n = "diskapply"
|
||||
end
|
||||
|
||||
if nixio.fs.access("/etc/config/oscam") then
|
||||
entry({"admin", "Others", "oscam"}, cbi("sattv/oscam"), _("OSCAM"), 12).i18n = "diskapply"
|
||||
end
|
||||
|
||||
end
|
50
package/lean/luci-app-oscam/luasrc/model/cbi/sattv/epg.lua
Normal file
50
package/lean/luci-app-oscam/luasrc/model/cbi/sattv/epg.lua
Normal file
@ -0,0 +1,50 @@
|
||||
require("luci.tools.webadmin")
|
||||
|
||||
--[[
|
||||
config epg_set
|
||||
option enable 1
|
||||
option time 30
|
||||
option src_url http://dm.epg.net.cn/a/epg.xml
|
||||
option src_url1 http://dm1.epg.net.cn/a/epg.xml
|
||||
option src_url2 http://epg.xltvrobbs.net/atmosphere/epg/epg.xml
|
||||
option src_url3 http://epg1.xltvrobbs.net/atmosphere/epg/epg.xml
|
||||
|
||||
]]--
|
||||
|
||||
|
||||
m = Map("epg", translate("epg_title","Set epg download address"),translate("epg_desc",
|
||||
"Set epg auto download for dm500 atmosphere"))
|
||||
|
||||
s = m:section(TypedSection, "epg_set", translate("epgset","settings"))
|
||||
s.anonymous = true
|
||||
s.addremove = false
|
||||
|
||||
enable = s:option(Flag, "enable", translate("enable", "enable"))
|
||||
enable.default = false
|
||||
enable.optional = false
|
||||
enable.rmempty = false
|
||||
|
||||
interval = s:option(Value, "interval", translate("interval","interval"))
|
||||
interval.default = 30
|
||||
interval.optional = false
|
||||
interval.rmempty = false
|
||||
|
||||
|
||||
s = m:section(TypedSection, "downaddress", translate("downaddress","downaddress"))
|
||||
s.template = "cbi/tblsection"
|
||||
s.anonymous = false
|
||||
s.addremove = true
|
||||
|
||||
enable = s:option(Flag, "addr_enable", translate("enable", "enable"))
|
||||
enable.default = false
|
||||
enable.optional = false
|
||||
enable.rmempty = false
|
||||
|
||||
|
||||
url = s:option(Value, "address", translate("dowload address","dowload address"))
|
||||
url.optional = false
|
||||
url.rmempty = false
|
||||
|
||||
|
||||
return m
|
||||
|
67
package/lean/luci-app-oscam/luasrc/model/cbi/sattv/oscam.lua
Normal file
67
package/lean/luci-app-oscam/luasrc/model/cbi/sattv/oscam.lua
Normal file
@ -0,0 +1,67 @@
|
||||
--[[
|
||||
LuCI - Lua Configuration Interface
|
||||
|
||||
Copyright 2011 flyzjhz <flyzjhz@gmail.com>
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
]]--
|
||||
|
||||
|
||||
local fs = require "nixio.fs"
|
||||
local uci = require "luci.model.uci".cursor()
|
||||
local lanipaddr = uci:get("network", "lan", "ipaddr") or "192.168.1.1"
|
||||
--- Retrieves the output of the "get_oscam_port" command.
|
||||
-- @return String containing the current get_oscam_port
|
||||
function get_oscam_port()
|
||||
|
||||
local oscam_conf= fs.readfile("/usr/oscam/oscam.conf")
|
||||
local oscam_conf_port = tonumber(oscam_conf:match("[Hh]ttppor[Tt].-= ([^\n]+)")) or "8899"
|
||||
return oscam_conf_port
|
||||
end
|
||||
|
||||
local oscamport = get_oscam_port()
|
||||
|
||||
m = Map("oscam", translate("OSCAM","OSCAM"),translate("oscam desc",
|
||||
"oscam for openwrt"))
|
||||
|
||||
s = m:section(TypedSection, "setting", translate("set","settings"))
|
||||
s.anonymous = true
|
||||
s.addremove = false
|
||||
|
||||
enable = s:option(Flag, "enable", translate("enable", "enable"))
|
||||
enable.default = false
|
||||
enable.optional = false
|
||||
enable.rmempty = false
|
||||
|
||||
interval = s:option(Value, "interval", translate("interval","interval"),
|
||||
translate("interval_desc","interval_desc"))
|
||||
interval.optional = false
|
||||
interval.rmempty = false
|
||||
interval.default = 30
|
||||
|
||||
s:option(DummyValue,"oscamweb" ,translate("<a target=\"_blank\" href='http://"..lanipaddr..":"..oscamport.."'>OSCAM Web Intelface</a> "),translate("Open the oscam Web"))
|
||||
|
||||
tmpl = s:option(Value, "_tmpl",
|
||||
translate("Edit oscam configuration."),
|
||||
translate("This is the content of the file '/usr/oscam/oscam.conf'"))
|
||||
|
||||
tmpl.template = "cbi/tvalue"
|
||||
tmpl.rows = 20
|
||||
|
||||
function tmpl.cfgvalue(self, section)
|
||||
return nixio.fs.readfile("/usr/oscam/oscam.conf")
|
||||
end
|
||||
|
||||
function tmpl.write(self, section, value)
|
||||
value = value:gsub("\r\n?", "\n")
|
||||
nixio.fs.writefile("//usr/oscam/oscam.conf", value)
|
||||
end
|
||||
|
||||
return m
|
||||
|
||||
|
13
package/lean/luci-app-oscam/root/etc/config/epg
Normal file
13
package/lean/luci-app-oscam/root/etc/config/epg
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
config 'epg_set'
|
||||
option 'enable' '0'
|
||||
option 'interval' '30'
|
||||
|
||||
config 'downaddress' 'epg1'
|
||||
option 'addr_enable' '1'
|
||||
option 'address' 'http://dm.epg.net.cn/a/epg.xml'
|
||||
|
||||
config 'downaddress' 'epg2'
|
||||
option 'addr_enable' '1'
|
||||
option 'address' 'http://epg.xltvrobbs.net/atmosphere/epg/epg.xml'
|
||||
|
4
package/lean/luci-app-oscam/root/etc/config/oscam
Normal file
4
package/lean/luci-app-oscam/root/etc/config/oscam
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
config 'setting'
|
||||
option 'enable' '0'
|
||||
|
23
package/lean/luci-app-oscam/root/etc/init.d/epg
Executable file
23
package/lean/luci-app-oscam/root/etc/init.d/epg
Executable file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# copyrights
|
||||
# (1)epg dowload Script VER 0.10for openwrt by zjhzzyf
|
||||
|
||||
|
||||
|
||||
START=96
|
||||
|
||||
|
||||
|
||||
start(){
|
||||
|
||||
|
||||
/usr/bin/epg start
|
||||
}
|
||||
|
||||
stop() {
|
||||
echo "not implemented yet!"
|
||||
}
|
||||
|
||||
restart() {
|
||||
start
|
||||
}
|
70
package/lean/luci-app-oscam/root/etc/init.d/oscam
Executable file
70
package/lean/luci-app-oscam/root/etc/init.d/oscam
Executable file
@ -0,0 +1,70 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# oscam Script VER 0.10 for openwrt by zjhzzyf
|
||||
|
||||
START=94
|
||||
|
||||
. /etc/functions.sh
|
||||
path="/usr/oscam/"
|
||||
|
||||
|
||||
kill_oscam()
|
||||
{
|
||||
local otherpids
|
||||
local execute
|
||||
otherpids=$(ps -a 2>&1 | grep "/usr/bin/oscam" | grep -v $$ | awk -F " " '{print $1}')
|
||||
echo "$otherpids" | while read execute
|
||||
do
|
||||
kill -9 ${execute}
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
|
||||
oscam_start()
|
||||
{
|
||||
|
||||
/usr/bin/oscam -b -c $path
|
||||
echo "readdy go....."
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
start(){
|
||||
echo "game start....."
|
||||
enable=$(uci get oscam.@setting[0].enable)
|
||||
if [ "$enable" == "" ];then
|
||||
enable=0
|
||||
fi
|
||||
|
||||
[ "$enable" == "1" ]&&oscam_start
|
||||
|
||||
interval=$(uci get oscam.@setting[0].interval)
|
||||
oscam_cron=`cat /etc/crontabs/root | grep "/etc/init.d/oscam restart"`
|
||||
if [ "$enable" == "1" -a "$interval" != "0" ]; then
|
||||
oscam_new="*/${interval} * * * * /etc/init.d/oscam restart"
|
||||
if [ "z${oscam_cron}" != "z${oscam_new}" ] ; then
|
||||
cat /etc/crontabs/root | grep -v "/etc/init.d/oscam restart" > /tmp/crontabs_oscam
|
||||
echo "" >> /tmp/crontabs_oscam
|
||||
echo "*/${interval} * * * * /etc/init.d/oscam restart" >> /tmp/crontabs_oscam
|
||||
cat /tmp/crontabs_oscam | grep -v ^$ > /etc/crontabs/root
|
||||
/etc/init.d/cron restart
|
||||
fi
|
||||
else
|
||||
if [ "z${oscam_cron}" != "z" ] ; then
|
||||
cat /etc/crontabs/root | grep -v "/etc/init.d/oscam restart" > /tmp/crontabs_oscam
|
||||
cat /tmp/crontabs_oscam | grep -v ^$ > /etc/crontabs/root
|
||||
/etc/init.d/cron restart
|
||||
fi
|
||||
|
||||
fi
|
||||
rm -f /tmp/crontabs_oscam
|
||||
|
||||
}
|
||||
|
||||
stop() {
|
||||
kill_oscam
|
||||
echo "oscam stopped"
|
||||
}
|
||||
|
||||
|
39
package/lean/luci-app-oscam/root/etc/oscam/oscam.conf
Normal file
39
package/lean/luci-app-oscam/root/etc/oscam/oscam.conf
Normal file
@ -0,0 +1,39 @@
|
||||
# oscam.conf generated automatically by Streamboard OSCAM 1.00-unstable_svn build #r4503
|
||||
# Read more: http://streamboard.gmc.to/oscam/browser/trunk/Distribution/doc/txt/oscam.conf.txt
|
||||
|
||||
[global]
|
||||
logfile = /dev/shm/oscam.log
|
||||
disablelog = 1
|
||||
clientmaxidle = 36000
|
||||
bindwait = 5
|
||||
netprio = 9
|
||||
nice = 9
|
||||
waitforcards = 0
|
||||
lb_mode = 1
|
||||
|
||||
[monitor]
|
||||
port = 9988
|
||||
nocrypt =
|
||||
aulow = 120
|
||||
hideclient_to = 0
|
||||
monlevel = 255
|
||||
appendchaninfo = 0
|
||||
|
||||
[dvbapi]
|
||||
enabled = 1
|
||||
au = 1
|
||||
boxtype = none
|
||||
user = user1
|
||||
pmt_mode = 0
|
||||
request_mode = 0
|
||||
|
||||
[webif]
|
||||
httpport = 8899
|
||||
httpuser = oscam
|
||||
httppwd = oscam
|
||||
httprefresh = 0
|
||||
httpallowed = 1.0.0.0-255.255.0.0
|
||||
httphideidleclients = 0
|
||||
httpreadonly = 0
|
||||
httpsavefullcfg = 0
|
||||
|
28
package/lean/luci-app-oscam/root/etc/oscam/oscam.server
Normal file
28
package/lean/luci-app-oscam/root/etc/oscam/oscam.server
Normal file
@ -0,0 +1,28 @@
|
||||
# oscam.server generated automatically by Streamboard OSCAM 1.00-unstable_svn build #r4503
|
||||
# Read more: http://streamboard.gmc.to/oscam/browser/trunk/Distribution/doc/txt/oscam.server.txt
|
||||
|
||||
[reader]
|
||||
label = reshare1
|
||||
enable = 0
|
||||
protocol = cccam
|
||||
device = oscam.3322.org,13111
|
||||
user = test01
|
||||
password = test01
|
||||
inactivitytimeout = 1
|
||||
reconnecttimeout = 3
|
||||
group = 1
|
||||
blockemm-unknown = 1
|
||||
blockemm-u = 1
|
||||
blockemm-s = 1
|
||||
blockemm-g = 1
|
||||
lb_weight = 100
|
||||
cccversion = 2.1.2
|
||||
cccmaxhops = 12
|
||||
ccckeepalive = 1
|
||||
audisabled = 1
|
||||
cccdisableautoblock = 1
|
||||
|
||||
|
||||
|
||||
|
||||
|
6
package/lean/luci-app-oscam/root/etc/oscam/oscam.user
Normal file
6
package/lean/luci-app-oscam/root/etc/oscam/oscam.user
Normal file
@ -0,0 +1,6 @@
|
||||
[account]
|
||||
user = 001
|
||||
pwd = 001
|
||||
group = 1
|
||||
keepalive = 1
|
||||
uniq = 0
|
14
package/lean/luci-app-oscam/root/etc/uci-defaults/luci-sattv
Normal file
14
package/lean/luci-app-oscam/root/etc/uci-defaults/luci-sattv
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
uci -q batch <<-EOF >/dev/null
|
||||
delete ucitrack.@epg[-1]
|
||||
add ucitrack epg
|
||||
set ucitrack.@epg[-1].init=epg
|
||||
delete ucitrack.@oscam[-1]
|
||||
add ucitrack oscam
|
||||
set ucitrack.@oscam[-1].init=oscam
|
||||
add_list ucitrack.@oscam[-1].affects=cron
|
||||
commit ucitrack
|
||||
EOF
|
||||
rm -f /tmp/luci-indexcache
|
||||
exit 0
|
199
package/lean/luci-app-oscam/root/usr/bin/epg
Executable file
199
package/lean/luci-app-oscam/root/usr/bin/epg
Executable file
@ -0,0 +1,199 @@
|
||||
#!/bin/sh
|
||||
# copyrights
|
||||
# (1)epg dowload Script VER 0.10for openwrt by zjhzzyf
|
||||
|
||||
|
||||
. /lib/functions.sh
|
||||
|
||||
|
||||
epg_down()
|
||||
{
|
||||
bsuc=1
|
||||
echo "File Path:"$path
|
||||
filename="epg.xml"
|
||||
echo "Setup FileName:"$filename
|
||||
sfullfilename=`echo $path$filename`
|
||||
echo "sFullFileName:"$sfullfilename
|
||||
|
||||
index=0
|
||||
echo "Try Times Max:"$trytimes
|
||||
while [ "$index" -lt "$trytimes" ]
|
||||
do
|
||||
echo "Try Times:"$index
|
||||
if wget -qO- -t3 $url > $sfullfilename;then
|
||||
break
|
||||
fi
|
||||
index=`expr $index + 1`
|
||||
done
|
||||
if [ "$index" -eq "$trytimes" ]; then
|
||||
ErrMsg=`date`
|
||||
ErrMsg=$ErrMsg" 下载配置文件失败"
|
||||
bsuc=0
|
||||
return
|
||||
fi
|
||||
echo "down $filename completed"
|
||||
mfullfilename=`echo ${path}store/${filename}.md5`
|
||||
echo "MD5 File Name:"$mfullfilename
|
||||
md5old=`cat $mfullfilename`
|
||||
md5old=`echo $md5old|awk '{print $1}'|tr "[a-z]" "[A-Z]"`
|
||||
echo "Old File MD5:"$md5old
|
||||
md5new=`/usr/bin/md5sum $sfullfilename`
|
||||
md5new=`echo $md5new|awk '{print $1}'|tr "[a-z]" "[A-Z]"`
|
||||
echo "New File MD5:"$md5new
|
||||
if [ "$md5old" = "$md5new" ]; then
|
||||
ErrMsg=`date`
|
||||
ErrMsg=$ErrMsg" 数据不需要更新"
|
||||
bsuc=1
|
||||
return
|
||||
else
|
||||
|
||||
counttimes=0
|
||||
suctimes=0
|
||||
counttimes=`expr $counttimes + 1`
|
||||
url=$(grep -m 1 "URL" $sfullfilename |awk -F "<URL>" '{print $2}'|awk -F "</URL>" '{print $1}')
|
||||
echo "Down Data URL:" $url
|
||||
|
||||
filename=`echo ${url##*/}`
|
||||
echo "Down File Name:"$filename
|
||||
|
||||
echo "====="
|
||||
echo $url
|
||||
replaces=`echo ${url%/*}`
|
||||
|
||||
replaces=`echo ${replaces#*//}`
|
||||
|
||||
echo replaces: $replaces
|
||||
echo -e `sed -e "s#$replaces#$replaced#g" $sfullfilename` > `echo $sfullfilename`
|
||||
echo "====="
|
||||
|
||||
dfullfilename=`echo $path$filename`
|
||||
echo "Down Data Save File Name:"$dfullfilename
|
||||
|
||||
index=0
|
||||
while [ "$index" -lt "$trytimes" ]
|
||||
do
|
||||
echo "Try Times:"$index
|
||||
if wget -t3 -T120 -qO- $url > $dfullfilename;then
|
||||
suctimes=`expr $suctimes + 1`
|
||||
|
||||
break
|
||||
fi
|
||||
index=`expr $index + 1`
|
||||
|
||||
done
|
||||
|
||||
if [ "$index" -eq "$trytimes" ]; then
|
||||
bsuc=0
|
||||
ErrMsg=`date`
|
||||
ErrMsg=$ErrMsg" 下载"$url"失败"
|
||||
|
||||
fi
|
||||
|
||||
|
||||
if [ "$counttimes" -eq "$suctimes" ]; then
|
||||
echo $md5new > `echo $mfullfilename`
|
||||
|
||||
mount -o bind /tmp/epg/ /www/atmosphere
|
||||
rm -rf ${path}/epg/*
|
||||
|
||||
cp ${path}$filename ${path}/epg
|
||||
cp ${path}epg.xml ${path}/epg
|
||||
rm -rf ${path}$filename
|
||||
rm -rf ${path}epg.xml
|
||||
ErrMsg=`date`
|
||||
ErrMsg=$ErrMsg" 下载EPG数据成功"
|
||||
echo $ErrMsg
|
||||
exit 0
|
||||
else
|
||||
ErrMsg=`date`
|
||||
ErrMsg= $ErrMsg " 未知原因失败"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
epg_start() {
|
||||
|
||||
config_get enable $1 enable
|
||||
config_get interval $1 interval
|
||||
[ "$enable" = "" ]&&enable=0
|
||||
|
||||
#make scheduler
|
||||
|
||||
epg_cron=`cat /etc/crontabs/root | grep "/usr/bin/epg scheduler"`
|
||||
if [ "$enable" == "1" -a "${interval}" != "0" ]; then
|
||||
mkdir -p /tmp/epg/
|
||||
mkdir -p /tmp/epg/store
|
||||
mkdir -p /tmp/epg/epg
|
||||
mkdir -p /www/atmosphere
|
||||
epg_new="*/${interval} * * * * /usr/bin/epg scheduler"
|
||||
if [ "z${epg_cron}" != "z${epg_new}" ] ; then
|
||||
cat /etc/crontabs/root | grep -v "/etc/init.d/epg scheduler" > /tmp/crontabs_epg
|
||||
echo "*/${interval} * * * * /etc/init.d/epg scheduler" >> /tmp/crontabs_epg
|
||||
echo "" >> /tmp/crontabs_epg
|
||||
cat /tmp/crontabs_epg | grep -v ^$ > /etc/crontabs/root
|
||||
/etc/init.d/cron restart
|
||||
fi
|
||||
else
|
||||
if [ "z${epg_cron}" != "z" ] ; then
|
||||
cat /etc/crontabs/root | grep -v "/etc/init.d/epg scheduler" > /tmp/crontabs_epg
|
||||
cat /tmp/crontabs_epg | grep -v ^$ > /etc/crontabs/root
|
||||
/etc/init.d/cron restart
|
||||
fi
|
||||
rm -f /tmp/crontabs_epg
|
||||
|
||||
fi
|
||||
|
||||
/etc/init.d/cron restart
|
||||
|
||||
}
|
||||
|
||||
|
||||
con_get_addr(){
|
||||
|
||||
config_get addr_enable $1 addr_enable
|
||||
config_get address $1 address
|
||||
|
||||
[ "$addr_enable" == "1" ]&&{
|
||||
url=$address
|
||||
echo $url
|
||||
ErrMsg=`date`
|
||||
ErrMsg=$ErrMsg" 开始从"$url"下载"
|
||||
echo $ErrMsg >> `echo /tmp/epglog.txt`
|
||||
rm `echo $path"*"`
|
||||
epg_down
|
||||
echo $ErrMsg >> `echo /tmp/epglog.txt`
|
||||
echo $bsuc
|
||||
echo "******************************************************************" >> `echo /tmp/epglog.txt`
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
epg_scheduler(){
|
||||
|
||||
path="/tmp/epg/"
|
||||
trytimes=3
|
||||
bsuc=1
|
||||
ErrMsg=""
|
||||
lan_ipaddr=$(uci get network.lan.ipaddr)
|
||||
replaced="${lan_ipaddr}/atmosphere/epg"
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
config_load epg
|
||||
case "$1" in
|
||||
start)
|
||||
config_foreach epg_start epg_set
|
||||
;;
|
||||
stop)
|
||||
echo "stop test "
|
||||
;;
|
||||
scheduler)
|
||||
epg_scheduler
|
||||
config_foreach con_get_addr downaddress
|
||||
;;
|
||||
esac
|
||||
|
37
package/lean/luci-app-oscam/root/usr/oscam/oscam.conf
Normal file
37
package/lean/luci-app-oscam/root/usr/oscam/oscam.conf
Normal file
@ -0,0 +1,37 @@
|
||||
[global]
|
||||
# Prozess
|
||||
nice = -10
|
||||
pidfile = /tmp/oscam.pid
|
||||
# Logging
|
||||
logfile = /tmp/oscam.log
|
||||
disablelog = 0
|
||||
maxlogsize = 256
|
||||
usrfile = /tmp/oscam_user.log
|
||||
disableuserfile = 0
|
||||
usrfileflag = 1
|
||||
# Timeouts - If you have problems adjust or remove rows!
|
||||
clienttimeout = 2000
|
||||
fallbacktimeout = 1000
|
||||
serialreadertimeout = 800
|
||||
# Sonstiges
|
||||
clientdyndns = 0
|
||||
unlockparental = 1
|
||||
saveinithistory = 1
|
||||
|
||||
[monitor]
|
||||
port = 15990
|
||||
nocrypt = 127.0.0.1,192.168.1.1-192.168.1.255 # "No entry for other IP's!"
|
||||
aulow = 30
|
||||
hideclient_to = 0
|
||||
monlevel = 4
|
||||
appendchaninfo = 0
|
||||
|
||||
[camd35]
|
||||
port = 15991
|
||||
|
||||
[webif]
|
||||
httpport = 16000
|
||||
httprefresh = 0
|
||||
httpallowed = 127.0.0.1,192.168.1.1-192.168.1.255 # "No entry for other IP's!"
|
||||
httphideidleclients = 0
|
||||
httpreadonly = 0
|
71
package/lean/oscam/Makefile
Normal file
71
package/lean/oscam/Makefile
Normal file
@ -0,0 +1,71 @@
|
||||
#
|
||||
# Copyright (C) 2010 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
# maz-1 <ohmygod19993 at gmail dot com>
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_BRANCH:=trunk
|
||||
PKG_SOURCE_URL:=http://www.streamboard.tv/svn/oscam/trunk
|
||||
#PKG_REV:=$(shell LC_ALL=C svn info ${PKG_SOURCE_URL} | sed -ne's/^Last Changed Rev: //p')
|
||||
PKG_REV:=10777
|
||||
|
||||
PKG_NAME:=oscam
|
||||
PKG_VERSION:=svn$(PKG_REV)
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
||||
PKG_SOURCE_PROTO:=svn
|
||||
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
|
||||
PKG_BUILD_DEPENDS:=
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)
|
||||
|
||||
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/oscam
|
||||
DEPENDS:=+libopenssl +libpthread +libusb-1.0
|
||||
TITLE:=Open Source Conditional Access Module software
|
||||
URL:=http://streamboard.gmc.to/oscam/
|
||||
SUBMENU:=
|
||||
endef
|
||||
|
||||
define Package/oscam/description
|
||||
An Open Source Conditional Access Module software,
|
||||
based on the very good MpCS version 0.9d created by dukat.
|
||||
endef
|
||||
|
||||
CONFIGURE_ARGS += --with-ssl=openssl
|
||||
|
||||
define Build/Prepare
|
||||
$(call Build/Prepare/Default)
|
||||
mkdir -p $(PKG_BUILD_DIR)/build
|
||||
cd $(PKG_BUILD_DIR)/build;
|
||||
endef
|
||||
|
||||
define Package/oscam/conffiles
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
echo 'set (OSCAM_SYSTEM_NAME wrt350nv2)' > $(PKG_BUILD_DIR)/toolchain.cmake
|
||||
echo 'set (CMAKE_SYSTEM_NAME Linux)' >> $(PKG_BUILD_DIR)/toolchain.cmake
|
||||
echo 'set (CMAKE_C_COMPILER $(TARGET_CROSS)gcc)' >> $(PKG_BUILD_DIR)/toolchain.cmake
|
||||
echo 'set (CMAKE_SYSTEM_PROCESSOR $(ARCH))' >> $(PKG_BUILD_DIR)/toolchain.cmake
|
||||
cd $(PKG_BUILD_DIR)/build;cmake -DCMAKE_TOOLCHAIN_FILE=$(PKG_BUILD_DIR)/toolchain.cmake ..;make
|
||||
endef
|
||||
|
||||
|
||||
define Package/oscam/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/build/oscam $(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,oscam))
|
Loading…
Reference in New Issue
Block a user