Hi,
maybe you should use a "standard colour-test" picture, as the "DQ-Tool" Image
42
maybe you should use a "standard colour-test" picture, as the "DQ-Tool" Image
42
Latest versions:
Server plugin: 0.5.1
MVP dongle: 0.5.2
Raspberry Pi client: 0.5.2
Windows client: 0.5.2-1
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: rdoac on November 24, 2007, 08:35:02
Is there a CVS command to pull in upto a certain date? If so, what would be that date to have pretty much everything working?
eventdispatcher.cc: In member function `bool EventDispatcher::edFindAndCall(void*)':
eventdispatcher.cc:43: warning: 'edr' might be used uninitialized in this function
make: *** [eventdispatcher.o] Fehler 1
vivian:/usr/local/src/VoMP/client#
Quote from: GTRDRIVER on May 30, 2007, 20:59:55
I thinks there runs something wrong:
[..]
Don't run all.sh or crosstool.sh as root, it's dangerous
can you tell me what´s wrong here ?
Sample [info.vdr]:
C S19.2E-...
E 36313 111...
T Deep Blue
S Dokumentation Großbritannien / Deutschland 2003
D "Deep Blue", ein brilliant...
X 1 03 deu 16:9
X 2 03 deu stereo
Quote from: hondansx on February 20, 2007, 18:21:47
is there any posibility to add the MAC Adress hardcoded.
If I turn off the TV, the MVP gets powerless.
Quote from: Chris on February 13, 2007, 02:59:23
It is done and posted on the website. Could you report if it works on your system, and what your system is?
crosstool-0.43/x86_64-static.dat
++ pwd
+ TARBALLS_DIR=/usr/local/src/VoMP/crosstool/downloads
++ pwd
+ RESULT_TOP=/usr/local/src/VoMP/crosstool
+ export TARBALLS_DIR RESULT_TOP
+ GCC_LANGUAGES=c,c++
+ export GCC_LANGUAGES
+ cd crosstool-0.43
++ cat powerpc-405.dat gcc-3.4.5-glibc-2.2.5.dat
+ eval TARGET=powerpc-405-linux-gnu 'TARGET_CFLAGS="-O' '-mcpu=405"' 'GCC_EXTRA_CONFIG="--with-cpu=405' '--enable-cxx-flags=-mcpu=405"' 'GLIBC_EXTRA_CONFIG="$GLIBC_EXTRA_CONFIG' '--without-fp"' BINUTILS_DIR=binutils-2.15 GCC_DIR=gcc-3.4.5 GLIBC_DIR=glibc-2.2.5 LINUX_DIR=linux-2.6.8 GLIBCTHREADS_FILENAME=glibc-linuxthreads-2.2.5 'EXTRA_TARGET_CFLAGS="-fno-unit-at-a-time"' sh all.sh --notest
++ TARGET=powerpc-405-linux-gnu
++ TARGET_CFLAGS=-O -mcpu=405
++ GCC_EXTRA_CONFIG=--with-cpu=405 --enable-cxx-flags=-mcpu=405
++ GLIBC_EXTRA_CONFIG= --without-fp
++ BINUTILS_DIR=binutils-2.15
++ GCC_DIR=gcc-3.4.5
++ GLIBC_DIR=glibc-2.2.5
++ LINUX_DIR=linux-2.6.8
++ GLIBCTHREADS_FILENAME=glibc-linuxthreads-2.2.5
++ EXTRA_TARGET_CFLAGS=-fno-unit-at-a-time
++ sh all.sh --notest
DEJAGNU not set, so not running any regression tests
GLIBC_ADDON_OPTIONS not set, so building all glibc add-on's
KERNELCONFIG not set, so not configuring linux kernel
+ TOOLCOMBO=gcc-3.4.5-glibc-2.2.5
++ pwd
+ BUILD_DIR=/usr/local/src/VoMP/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5
++ pwd
+ TOP_DIR=/usr/local/src/VoMP/crosstool/crosstool-0.43
+ test -z ''
+ SRC_DIR=/usr/local/src/VoMP/crosstool/crosstool-0.43/build/powerpc-405-linux-gnu/gcc-3.4.5-glibc-2.2.5
+ echo 'SRC_DIR not set, so source tarballs will be unpacked in the build directory'
SRC_DIR not set, so source tarballs will be unpacked in the build directory
+ abort 'Don'\''t run all.sh or crosstool.sh as root, it'\''s dangerous'
+ echo 'Don'\''t' run all.sh or crosstool.sh as root, 'it'\''s' dangerous
Don't run all.sh or crosstool.sh as root, it's dangerous
+ exec false
Quote from: petric on November 27, 2006, 10:53:21
For others who want to test it i attach a patch file.
Quote from: meando on October 13, 2006, 09:15:48
any chance that you could make your dongle.bin available for the people that are less gifted in the use of compilers?
I also have a H3 that doesn't boot the current VOMP.
Could you maybe post it here or put it somewhere to download?
Quote from: MartenR on October 09, 2006, 07:34:46
Well, the recordings menu problem can be connected with the issue, that Chris is working on the protocoll for the recordings information (in cvs is writen that this is not finished) and you have at least to update also your server code, but
Quote from: sirwio on October 07, 2006, 01:30:30
Instead of using the newer hauppauge dongles I downloaded an old one and have no problems with the rest of the build. Would be nice though if someone could actually come out with a way to extract the kernel modules from a newer kernel!
#include <stdio.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <endian.h>
#include <stdlib.h>
#include <errno.h>
#ifndef BYTE_ORDER
#error "byte order not defined"
#endif
static void usage(name)
char name[];
{
fprintf(stderr,"Usage: %s kernel.image\n",name);
exit(1);
}
int main(argc,argv)
int argc;
char **argv;
{
FILE *fd;
long size, count;
uint32_t *start,*point;
/* start signature of squashfs */
#if BYTE_ORDER != LITTLE_ENDIAN
uint32_t search = 0x73717368;
#else
uint32_t search = 0x68737173;
#endif
if ( argc != 2 )
usage(argv[0]);
fd = fopen(argv[1],"r");
if ( fd == NULL )
{
fprintf(stderr,"Unable to open <%s> errno: %d\n",argv[1],errno);
usage(argv[0]);
}
/* get size */
size=fseek(fd, 0L, SEEK_END);
size=ftell(fd);
fprintf(stderr,"The size of <%s> is %ld\n",argv[1],size);
fseek(fd, 0L, SEEK_SET);
start=(uint32_t *)malloc(size);
fread(start,size,1,fd);
fclose(fd);
for ( count=0,point=start; count < size; count+=sizeof(uint32_t),++point)
{
if ( *point == search )
{
fprintf(stderr,"Squashfs signature found at %ld\n",count);
break;
}
}
if ( count < size )
{
fd=fopen("kernel.raw","w");
if ( fd == NULL )
{
fprintf(stderr,"Create kernel.raw: errno %d\n",errno);
exit(99);
}
fwrite(start,1,count,fd);
fclose(fd);
fprintf(stderr,"kernel.raw created\n");
fd=fopen("kernelsquashfs.raw","w");
if ( fd == NULL )
{
fprintf(stderr,"Create kernelsquashfs.raw: errno %d\n",errno);
exit(99);
}
fwrite(point,1,size-count,fd);
fclose(fd);
fprintf(stderr,"kernelsquashfs.raw created\n");
}
else
{
fprintf(stderr,"Strange, no squashfs signature found...\n");
exit(99);
}
free(start);
exit(0);
}
CC = gcc
LD = ld
CFLAGS = -W -Wall -O2
PROGS = find-squashfs
OBJS += find-squashfs.o
all: $(OBJS)
$(CC) -o find-squashfs $(OBJS)
clean:
rm -f $(PROGS) $(OBJS)
.PHONY: all clean
Major/Minor mismatch, filesystem on sqsh.fs is (2:1)
I only support Squashfs 3.0 filesystems! Later releases will support older Squashfs filesystems