Saturday, January 28th 2012, 6:15am UTC
You are not logged in.
Dear visitor, welcome to Linux VDR/DVB форум. If this is your first visit here, please read the Help. It explains how this page works. You must be registered before you can use all the page's features. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
deb http://de.archive.ubuntu.com/ubuntu/ hardy main restricted deb-src http://de.archive.ubuntu.com/ubuntu/ hardy main restricted deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted deb http://de.archive.ubuntu.com/ubuntu/ hardy universe deb-src http://de.archive.ubuntu.com/ubuntu/ hardy universe deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe deb http://de.archive.ubuntu.com/ubuntu/ hardy multiverse deb-src http://de.archive.ubuntu.com/ubuntu/ hardy multiverse deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse deb http://security.ubuntu.com/ubuntu hardy-security main restricted deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted deb http://security.ubuntu.com/ubuntu hardy-security universe deb-src http://security.ubuntu.com/ubuntu hardy-security universe deb http://security.ubuntu.com/ubuntu hardy-security multiverse deb-src http://security.ubuntu.com/ubuntu hardy-security multiverse |
|
|
Source code |
1 |
apt-get update && apt-get dist-upgrade |
|
|
Source code |
1 2 3 |
apt-get install build-essential linux-headers-generic mercurial subversion libncurses-dev apt-get install libpng12-dev apt-get install screen |
|
|
Source code |
1 2 3 4 5 |
cd /usr/src hg clone http://mercurial.intuxication.org/hg/s2-liplianin/ cd s2-liplianin make menuconfig make && make install |
|
|
Source code |
1 2 3 4 5 6 7 |
lspci -v
00:09.0 Multimedia controller: Micronas USA, Inc. Unknown device 8100
Subsystem: Micronas USA, Inc. Unknown device 8100
Flags: bus master, medium devsel, latency 32, IRQ 12
Memory at e5000000 (32-bit, non-prefetchable) [size=4K]
Memory at d8000000 (32-bit, non-prefetchable) [size=128M]
Capabilities: [40] Power Management version 2
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 |
mkdir /usr/src/reel cd /usr/src/reel svn co svn://reelbox.org/testing svn co svn://reelbox.org/precompiled cd testing/src/utils/hdshm3 make x86 cd x86/driver mkdir /lib/modules/$(uname -r)/misc cp hdshm_host.ko hdshm.ko /lib/modules/$(uname -r)/misc depmod -a |
|
|
Source code |
1 2 3 4 |
cp hdboot/hdboot hdctrld/hdctrld hdfbctl/hdfbctl hdfbshot/hdfbshot shmnetd/shmnetd /usr/local/sbin/ cp /usr/src/reel/precompiled/linux.bin.gz /lib/firmware cd /lib/firmware gunzip linux.bin.gz |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
$modprobe hdshm
$hdboot -i /lib/firmware/linux.bin
Decypher PCI BAR1: d8000000
Uploading /lib/firmware/linux.bin, Length 5946611, virtual 0xb1e54000, MIPS 0x2001000
Detected kernel entry 802ad000
memcpy done
Start CPU#0 at 802ad000
Set MTRR @ d8000000
$screen -d -m /usr/local/sbin/shmnetd
$ifconfig tun0
tun0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00
inet addr:192.168.99.130 P-t-P:192.168.99.130 Mask:255.255.255.252
UP POINTOPOINT RUNNING NOARP MULTICAST MTU:8300 Metric:1
RX packets:32 errors:0 dropped:0 overruns:0 frame:0
TX packets:31 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:1760 (1.7 KB) TX bytes:2573 (2.5 KB)
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
$ ping 192.168.99.129 PING 192.168.99.129 (192.168.99.129) 56(84) bytes of data. 64 bytes from 192.168.99.129: icmp_seq=1 ttl=64 time=8.08 ms 64 bytes from 192.168.99.129: icmp_seq=2 ttl=64 time=4.04 ms 64 bytes from 192.168.99.129: icmp_seq=3 ttl=64 time=4.04 ms --- 192.168.99.129 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2000ms rtt min/avg/max/mdev = 4.040/5.389/8.086/1.907 ms $telnet 192.168.99.129 Trying 192.168.99.129... Connected to 192.168.99.129. Escape character is '^]'. BusyBox v1.2.2 (2008.09.08-11:57+0000) Built-in shell (ash) Enter 'help' for a list of built-in commands. Welcome to extensionHD This image is based on SDK V1.7. It was built @ Mo 17. Nov 10:21:36 CET 2008 on RCsReelbox. hdext # ls /tmp/ hdplayer hdext # top ctrl+d |
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#!/bin/sh
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/sbin
case "$1" in
start)
modprobe hdshm
/usr/local/sbin/hdboot -i /lib/firmware/linux.bin
/usr/bin/screen -d -m /usr/local/sbin/shmnetd
;;
stop)
;;
*)
echo "Usage: /etc/init.d/eHD {start|stop}"
exit 1
esac
exit 0
|
|
|
Source code |
1 2 3 4 5 6 7 8 9 |
# update-rc.d eHD defaults 30 Adding system startup for /etc/init.d/eHD ... /etc/rc0.d/K30eHD -> ../init.d/eHD /etc/rc1.d/K30eHD -> ../init.d/eHD /etc/rc6.d/K30eHD -> ../init.d/eHD /etc/rc2.d/S30eHD -> ../init.d/eHD /etc/rc3.d/S30eHD -> ../init.d/eHD /etc/rc4.d/S30eHD -> ../init.d/eHD /etc/rc5.d/S30eHD -> ../init.d/eHD |
|
|
Source code |
1 2 3 4 5 |
cd /usr/src wget ftp://ftp.tvdr.de/vdr/Developer/vdr-1.7.15.tar.bz2 tar xjf vdr-1.7.15.tar.bz2 ln -sf vdr-1.7.15 VDR cd /usr/src/VDR |
|
|
Source code |
1 |
apt-get install libfreetype6-dev libfontconfig1-dev libjpeg62-dev libcap-dev libncurses5-dev libncursesw5-dev libmad0-dev libasound2-dev gettext libswscale-dev libavcodec-dev |
|
|
Source code |
1 2 3 4 5 6 7 8 9 |
cd PLUGINS/src cp -a /usr/src/reel/testing/src/vdr-plugins/src/reelbox* . cd reelbox mkdir patches cd patches wget "http://www.vdr-portal.de/board/attachment.php?attachmentid=25878" -O reelbox-svn14835-v4-vdr.diff cd .. cat patches/reelbox-svn14835-v4-vdr.diff | patch -p1 ln -s /usr/src/reel/testing/src/utils . |
|
|
Source code |
1 2 |
cd /usr/src/VDR cp Make.config.template Make.config |
|
|
Source code |
1 |
DVBDIR = /usr/src/s2-liplianin/linux |
|
|
Source code |
1 |
root@privoz:/usr/src/VDR# cp /usr/src/linux-headers-$(uname -r)/include/linux/compiler.h /usr/src/s2-liplianin/linux/include/linux/ |
|
|
Source code |
1 2 |
root@privoz:/usr/src/VDR# make root@privoz:/usr/src/VDR# make plugins |
|
|
Source code |
1 2 3 4 5 6 |
mkdir -p /etc/vdr/plugins cp /usr/src/VDR/*.conf /etc/vdr chmod 2775 /etc/vdr chmod 2775 /etc/vdr/plugins find /etc/vdr -type f | xargs chmod 664 chgrp -R video /etc/vdr |
|
|
Source code |
1 2 3 |
mkdir /video chmod 2775 /video chgrp video /video |
|
|
Source code |
1 2 |
cd /usr/src/VDR ./vdr -c /etc/vdr -P"reelbox" |
погите плиз!|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
root@arvdr-0175:/usr/src/vdr-1.7.5# make plugins Plugin reelbox: make[1]: Betrete Verzeichnis '/usr/src/vdr-1.7.5/PLUGINS/src/reelbox' g++ -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses -fPIC -c -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DNOT_THEME_LIKE -DPLAYER_VERSION=\"\" -D__LINUX__ -DNOT_THEME_LIKE -D_GNU_SOURCE -D_LARGEFILE_SOURCE -DPLUGIN_NAME='"reelbox"' -DPLUGIN_NAME_I18N='"reelbox"' -I../s2-liplianin/linux/include -I../../../../temp/docimage/libs/alsa-lib/include -I/usr/src/reel/testing/src/utils/bspshm -I/usr/src/reel/testing/src/utils/bspshm/include -I/usr/src/reel/testing/src/utils/hdshm3/src -I/usr/src/reel/testing/src/utils/hdshm3/src/include -I../../../../temp/docimage/libs/libmad `freetype-config --cflags` -I../../../include -I../s2-liplianin/linux/include -o fs453settings.o fs453settings.c fs453settings.c: In constructor б╩cFs453Settings::cFs453Settings(cPlugin*)б╚: fs453settings.c:43: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:44: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:45: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:46: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:47: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:48: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:72: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:73: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c:74: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c: In member function б╩virtual void cFs453Settings::Show()б╚: fs453settings.c:191: Fehler: б╩NewTrueColorOsdб╚ ist kein Element von б╩cOsdProviderб╚ make[1]: *** [fs453settings.o] Fehler 1 make[1]: Verlasse Verzeichnis '/usr/src/vdr-1.7.5/PLUGINS/src/reelbox' |
|
|
Source code |
1 2 3 4 5 |
-g -O2 -Wall -Woverloaded-virtual -Wno-parentheses -fPIC -c -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -DNOT_THEME_LIKE -DPLAYER_VERSION=\"\" -D__LINUX__ -DNOT_THEME_LIKE -D_GNU_SOURCE -D_LARGEFILE_SOURCE -DPLUGIN_NAME='"reelbox"' -DPLUGIN_NAME_I18N='"reelbox"' -I../s2-liplianin/linux/include |

обновил и есть ошибки в описании!обновленно:
VDR-1.7.7 + VDR Extension 72
|
|
Source code |
1 |
-I../../../include -I../s2-liplianin/linux/include -o fs453settings.o |
|
|
Source code |
1 2 3 |
fs453settings.c:74: Warnung: veraltete Konvertierung von Zeichenkettenkonstante in б╩char*б╚ fs453settings.c: In member function б╩virtual void cFs453Settings::Show()б╚: fs453settings.c:191: Fehler: б╩NewTrueColorOsdб╚ ist kein Element von б╩cOsdProviderб╚ |
|
|
Source code |
1 |
NewTrueColorOsd ist kein Element von OsdProvider |
|
|
Source code |
1 |
static cOsd *NewTrueColorOsd(int Left, int Top, int Random, uint Level = OSD_LEVEL_DEFAULT, bool dontHide = false); // GT: True color osd support |
This post has been edited 1 times, last edit by "Yuri" (May 28th 2009, 9:18pm)