Skip to content

Commit

Permalink
Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv
Browse files Browse the repository at this point in the history
  • Loading branch information
sraue committed Apr 23, 2012
2 parents 82c55cd + bd6d680 commit 94d3842
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 122 deletions.
2 changes: 1 addition & 1 deletion packages/addons/service/multimedia/hts-tvheadend/addon
Expand Up @@ -28,4 +28,4 @@ mkdir -p $ADDON_BUILD/$PKG_ADDON_ID
cp -PR $PKG_DIR/config/dvr-config $ADDON_BUILD/$PKG_ADDON_ID/dvr-config

mkdir -p $ADDON_BUILD/$PKG_ADDON_ID/bin
cp -P $PKG_BUILD/build.Linux/tvheadend $ADDON_BUILD/$PKG_ADDON_ID/bin
cp -P $PKG_BUILD/build.linux/tvheadend.bundle $ADDON_BUILD/$PKG_ADDON_ID/bin
1 change: 1 addition & 0 deletions packages/addons/service/multimedia/hts-tvheadend/build
Expand Up @@ -34,3 +34,4 @@ cd $PKG_BUILD
--release

make
make build.linux/tvheadend.bundle
@@ -1,3 +1,6 @@
2.1.3
- update to hts-tvheadend-78213a0

2.1.2
- add suspend/resume fixes
- use KILL signal to stop tvheadend
Expand Down
4 changes: 2 additions & 2 deletions packages/addons/service/multimedia/hts-tvheadend/meta
Expand Up @@ -19,8 +19,8 @@
################################################################################

PKG_NAME="hts-tvheadend"
PKG_VERSION="85e23bb"
PKG_REV="2"
PKG_VERSION="78213a0"
PKG_REV="3"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.lonelycoder.com/hts/tvheadend_overview.html"
Expand Down

This file was deleted.

This file was deleted.

4 changes: 4 additions & 0 deletions packages/addons/service/softcam/oscam/changelog.txt
@@ -1,3 +1,7 @@
2.1.4
- update to oscam-6626
* added bulcrypt cas support

2.1.3
- update to oscam-6596

Expand Down
4 changes: 2 additions & 2 deletions packages/addons/service/softcam/oscam/meta
Expand Up @@ -20,8 +20,8 @@
################################################################################

PKG_NAME="oscam"
PKG_VERSION="6596"
PKG_REV="3"
PKG_VERSION="6626"
PKG_REV="4"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://streamboard.gmc.to/wiki/index.php/OSCam/en"
Expand Down
37 changes: 37 additions & 0 deletions packages/linux-drivers/linux-tbs-drivers/init.d/63_tbs-ir
@@ -0,0 +1,37 @@
################################################################################
# Copyright (C) 2009-2010 OpenELEC.tv
# http://www.openelec.tv
#
# This Program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This Program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenELEC.tv; see the file COPYING. If not, write to
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
# http://www.gnu.org/copyleft/gpl.html
################################################################################

# initialize tbs ir
#
# runlevels: openelec

(
progress "initializing tbs ir"
while [ true ] ; do
if [ ! -e /dev/dvb/adapter*/frontend* ] ; then
sleep 1
continue
else
ir-keytable -c
ir-keytable -s rc0 -p NEC,RC6 -w /etc/rc_keymaps/rc6_mce
break
fi
done
)&

0 comments on commit 94d3842

Please sign in to comment.