Jump to content


nobody9

Member Since 29 Sep 2011
Offline Last Active 08 Jan 2012 18:33
*****

Posts I've Made

In Topic: OpenWebif [E2OpenPlugins]

8 January 2012 - 18:33

Bad News,
After a power fault my Harddisk is dammaged. So the next Time i have to setup a New Desktop pc to work.
So in the next i can't answer Mails or develop Anythink.


Regards




(null)

In Topic: OpenWebif [E2OpenPlugins]

7 January 2012 - 13:33

@all,

it is possible to add the build Version information into the plugin or a file at the build-process ?
So that we can show it in the about screen.

I can get it on runtime with:
http://box-ip/ipkg?command=info&package=enigma2-plugin-extensions-openwebif

That is to slow for the about screen.

Package: enigma2-plugin-extensions-openwebif
Version: 0.1+git259+111666c-r0.7
Depends: python-cheetah, python-json, python-unixadmin
Provides:
Status: install user installed
Section: base
Architecture: mipsel
Maintainer: OpenEmbedded Team
MD5Sum: f9b04136dc5281e066a8d23785ead929
Size: 1093280
Filename: enigma2-plugin-extensions-openwebif_0.1+git259+111666c-r0.7_mipsel.ipk
Source: git://github.com/E2OpenPlugins/e2openplugin-OpenWebif.git;protocol=git
Description: Control your receiver with a browser
Installed-Time: 1325936471

In Topic: OpenWebif [E2OpenPlugins]

7 January 2012 - 12:56

can you try http://ip of the box/web/movielist

The pop-up for added timers will be implemented when the timer edit function is ready.


Thanks nobody9 for your additions in OpenWebif.
Just updated my Vu+ Duo and I noticed that there is no Movies page displayed when I choose Movies at the left side.

Addition for later: when you put a timer to record something you don't know if this timeraction will happen. Maybe a text balloon that will show a message that the timer is added.


In Topic: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit

7 January 2012 - 12:10

the hole changed makefile it must more changed then only remove DREAMBOX_HARDWARE

ARCH=mipsel
-include ../../Make.config
 
CC=$(CC-$(ARCH))
CXX=$(CXX-$(ARCH))
CFLAGS=-fpic -DHAVE_DVB_API_VERSION=5  $(INCLUDE-$(ARCH)) $(DBGFLAGS)
LDFLAGS=-lpthread -lrt
DRIVER=vtuner-dvb-3
 
all: ../../dist/$(ARCH)/vtunerd.$(ARCH) ../../dist/$(ARCH)/vtunerc.$(ARCH)
 
-include ../../Make.rules
 
vtuner-dvb-3.o: ../../vtuner-dvb-3.c ../../vtuner-dvb-3.h
	$(CC) $(CFLAGS) -c -o vtuner-dvb-3.o ../../vtuner-dvb-3.c
 
vtunerd-plugin.o: ../../vtunerd-plugin.c ../../vtunerd-service.h ../../vtuner-utils.h
	$(CXX) $(CFLAGS) $(PLUGIN_CFLAGS-$(ARCH)) -c -o vtunerd-plugin.o ../../vtunerd-plugin.c

can´t be removed

it use the vtuner-dmm-3.c not the vtuner-dvb-3.c

vtunerd: [14078 ../../vtuner-dmm-3.c:152]  info: FE_SET_FRONTEND parameters: freq:1699000 inversion:34 SR:27500000 FEC:21
vtunerd: [14078 ../../vtuner-dmm-3.c:144]  warn: FE_GET_FRONTEND failed
vtunerd: [14078 ../../vtunerd-service.c:449]  warn: vtuner call failed, type:2 reason:-1

vtunerd-services.h
#ifndef _VTUNERDSERVICE_H_
#define _VTUNEDRSERVICE_H_
 
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
 
#include "vtuner-network.h"
 
#if HAVE_DVB_API_VERSION < 3
  #include "vtuner-dmm-2.h"
#else
  #ifdef HAVE_DREAMBOX_HARDWARE
	#include "vtuner-dmm-3.h"
  #else
	#include "vtuner-dvb-3.h"
  #endif
#endif
 
#define DEBUGSRV(msg, ...) DEBUG(MSG_SRV, msg, ## __VA_ARGS__)
 
typedef enum vtuner_session_status {
	SST_IDLE,
	SST_BUSY
} vtuner_session_status_t;
 
int fetch_request(struct sockaddr_in*, int*, int*, int*);
int run_worker(int, int, int, int, struct sockaddr_in*);
 
#endif


In Topic: Build Script for Openpli Enigma2 on Ubuntu 10.4 32 Bit

7 January 2012 - 11:57

can´t be removed

it use the vtuner-dmm-3.c not the vtuner-dvb-3.c

vtunerd: [14078 ../../vtuner-dmm-3.c:152]  info: FE_SET_FRONTEND parameters: freq:1699000 inversion:34 SR:27500000 FEC:21
vtunerd: [14078 ../../vtuner-dmm-3.c:144]  warn: FE_GET_FRONTEND failed
vtunerd: [14078 ../../vtunerd-service.c:449]  warn: vtuner call failed, type:2 reason:-1

vtunerd-services.h
#ifndef _VTUNERDSERVICE_H_
#define _VTUNEDRSERVICE_H_

#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>

#include "vtuner-network.h"

#if HAVE_DVB_API_VERSION < 3
  #include "vtuner-dmm-2.h"
#else
  #ifdef HAVE_DREAMBOX_HARDWARE
    #include "vtuner-dmm-3.h"
  #else
    #include "vtuner-dvb-3.h"
  #endif
#endif

#define DEBUGSRV(msg, ...) DEBUG(MSG_SRV, msg, ## __VA_ARGS__)

typedef enum vtuner_session_status {
    SST_IDLE,
    SST_BUSY
} vtuner_session_status_t;

int fetch_request(struct sockaddr_in*, int*, int*, int*);
int run_worker(int, int, int, int, struct sockaddr_in*);

#endif