CardSharing-X

» Receivers « => VU+ => » HDTV « => VU+ Duo Images => Topic started by: antox on January 12, 2010, 11:57:13 PM

Title: VU+DUO HD Images
Post by: antox on January 12, 2010, 11:57:13 PM
Thx to Vu+ DUO Team.
Code: You are not allowed to view links. Register or Login
Version 2.2

Changes:
1. Support for HD Skin
2. Increase demux buffer size

Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.2/mbox-image-bm750-20100112143556.nfi
and here's the USB version:
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.2/usb_upgrade.zip
Title: Re: VU+DUO HD Images
Post by: elcardinal74 on January 13, 2010, 12:05:41 AM
Hier Barry Allen Multiboot für VUO+ Mit anleitung
Title: Re: VU+DUO HD Images
Post by: antox on January 14, 2010, 01:24:05 PM
Original Images For Vu+ DUO v.2.3
Thx to Vu+ DUO Team.
Code: You are not allowed to view links. Register or Login
Version 2.3

Changes:
1. Support for HD Skin
2. Increase demux buffer size

Images V2.3
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.3/mbox-image-bm750-20100114113136.nfiand here's the USB version:
Images V2.3USB
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.3/usb_upgrade.zip
Title: Re: VU+DUO HD Images
Post by: antox on January 14, 2010, 01:39:22 PM
Ver 2.3 Changes

1. Teletext bug fixed

mbox/mbox-dvb-modules.bb
mbox/mbox-dvb-modules/dvb-bcm7335.ko



Code: You are not allowed to view links. Register or Login
#!/usr/bin/make -f

# target platform:
MACHINE = bm750

# for a list of some other repositories have
/


# in case you want to send pull requests or generate patches
#GIT_AUTHOR_NAME ?= Your Name
#GIT_AUTHOR_EMAIL ?= [email][email protected][/email]

# uncomment this if you're upgrading an installation
# from monotone. this changes the directory layout
# to the old version without shared directories.
#UPGRADE_FROM_MONOTONE=1

# you should not need to change anything below
BB_VERSION = 1.4.2
SVN = svn
SVN_BITBAKE_PARENT = "svn://svn.berlios.de/bitbake/"

GIT = git
GIT_BRANCH = org.openembedded.dreambox

PWD := $(shell pwd)

ifeq ($(UPGRADE_FROM_MONOTONE),1)
OE_BASE = $(PWD)
else
OE_BASE = $(PWD)/$(MACHINE)
endif

all: initialize
@echo
@echo "Openembedded for the Vuplus environment has been initialized"
@echo "properly. Now you can either:"
@echo "make -f Makefile mimage"
@echo
@echo " - go into $(MACHINE)/build/, . ./env.source and start on your own!"
@echo

bb:
$(SVN) checkout $(SVN_BITBAKE_PARENT)/tags/bitbake-$(BB_VERSION) bb



.PHONY: image initialize openembedded-update openembedded-update-all


mimage: initialize openembedded-update
cd $(OE_BASE)/build; . ./env.source; bitbake mbox-image


initialize: $(OE_BASE)/local $(OE_BASE)/cache sources $(OE_BASE)/build $(OE_BASE)/build/conf \
$(OE_BASE)/build/tmp $(OE_BASE)/openembedded $(OE_BASE)/build/conf/local.conf \
$(OE_BASE)/build/env.source bb

openembedded-update: $(OE_BASE)/openembedded
cd $(OE_BASE)/openembedded && $(GIT) pull origin $(GIT_BRANCH)

openembedded-update-all:
@for dir in dm*/openembedded; do \
echo "running $(GIT) pull origin $(GIT_BRANCH) in $$dir"; \
cd $$dir && $(GIT) pull origin $(GIT_BRANCH) && cd -; \
done

$(OE_BASE)/local:
mkdir -p ./$(MACHINE)

tar -C ./$(MACHINE) -zxvf local.tar.gz

$(OE_BASE)/build $(OE_BASE)/build/conf $(OE_BASE)/build/tmp $(OE_BASE)/cache sources:
mkdir -p $@

$(OE_BASE)/build/conf/local.conf:
echo --------------------------------------------------------------local.conf
echo 'DL_DIR = "$(PWD)/sources"' > $@
echo 'OE_BASE = "$(OE_BASE)"' >> $@
echo 'BBFILES = "$${OE_BASE}/openembedded/packages/*/*.bb"' >> $@
echo 'BBFILES =+ "${OE_BASE}/local/packages/*/*.bb"' >> $@
echo 'BBMASK = "(nslu.*|.*-sdk.*)"' >> $@
echo 'PREFERRED_PROVIDERS += " virtual/$${TARGET_PREFIX}gcc-initial:gcc-cross-initial"' >> $@
echo 'PREFERRED_PROVIDERS += " virtual/$${TARGET_PREFIX}gcc:gcc-cross"' >> $@
echo 'PREFERRED_PROVIDERS += " virtual/$${TARGET_PREFIX}g++:gcc-cross"' >> $@
echo 'MACHINE = "$(MACHINE)"' >> $@
echo 'TARGET_OS = "linux"' >> $@
echo 'DISTRO = "mbox-1.0"' >> $@
echo 'CACHE = "$(OE_BASE)/cache/oe-cache.$${USER}"' >> $@
echo 'GNU_MIRROR = "[url]ftp://ftp.cw.net/pub/gnu/"'[/url] >> $@
echo 'IMAGE_FSTYPES = "jffs2 tar.bz2"' >> $@

$(OE_BASE)/build/env.source:
echo 'OE_BASE=$(OE_BASE)' > $@
echo 'export BBPATH="${OE_BASE}/local/:$${OE_BASE}/openembedded/:$(PWD)/bb/:$${OE_BASE}/build/"' >> $@
echo 'PATH=$${PATH}:$(PWD)/bb/bin:$${OE_BASE}/build/tmp/cross/bin' >> $@
echo 'export PATH' >> $@
echo 'export LD_LIBRARY_PATH=' >> $@
echo 'export LANG=C' >> $@
cat $@

$(OE_BASE)/openembedded: $(OE_BASE)/openembedded/.git

$(OE_BASE)/openembedded/.git:
@if [ -d $(OE_BASE)/openembedded/_MTN ]; then echo "Please remove your old monotone repository from $(OE_BASE)/openembedded!"; exit 1; fi
$(GIT) clone -n $(GIT_URL) $(OE_BASE)/openembedded
cd $(OE_BASE)/openembedded && ( \
if [ -n "$(GIT_AUTHOR_EMAIL)" ]; then git config user.email "$(GIT_AUTHOR_EMAIL)"; fi; \
if [ -n "$(GIT_AUTHOR_NAME)" ]; then git config user.name "$(GIT_AUTHOR_NAME)"; fi; \
$(GIT) branch --track $(GIT_BRANCH) origin/$(GIT_BRANCH) || true; \
$(GIT) checkout -f $(GIT_BRANCH) \
Title: Re: VU+DUO HD Images
Post by: antox on January 15, 2010, 03:09:02 PM
{ 2010 01 15 }
New Image (V2.3) Released
Version 2.3 Image

Changes are as follows:

1.Teletext bug fixed
Ver 2.3 Changes

1. Teletext bug fixed

mbox/mbox-dvb-modules.bb
mbox/mbox-dvb-modules/dvb-bcm7335.ko

mbox-image-bm750-20100114113136.nfi
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.3/mbox-image-bm750-20100114113136.nfiusb upgrade
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.3/usb_upgrade.zip
Title: Re: VU+DUO HD Images
Post by: antox on January 18, 2010, 03:37:01 PM
 Original Images For Vu+ DUO v.2.4
Thx to Vu+ DUO Team.

Ver 2.4 Changes
Code: You are not allowed to view links. Register or Login
1. Recording enhancement.
2. Xcrypt bug fixed

mbox/mbox-vucamd/vucamd
mbox/mbox-vucamd.bb
mbox/mbox-dvb-modules.bb
mbox/mbox-dvb-modules/dvb-bcm7335.ko
images/mbox-image.bb

Images V2.4
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.4/mbox-image-bm750-20100118180632.nfiand here's the USB version:
Images V2.4USB
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.4/usb_upgrade.zip
Title: Re: VU+DUO HD Images
Post by: antox on January 21, 2010, 09:48:55 AM
Vu-duo OpenPLi unstable Image
OpenPLi unstable
Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100121
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25123977/668c7de/OpenPLi-unstable-vuduo-20100121_usb.zip.htmlOpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25124152/2b98bd4/OpenPLi-unstable-vuduo-20100121.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on January 22, 2010, 09:54:36 AM
OpenPLi unstable
Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100122

OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25255254/b60f833/OpenPLi-unstable-vuduo-20100122.zip.html[code]

OpenPLi vuduo usb
[code]http://hotfile.com/dl/25255256/783b136/OpenPLi-unstable-vuduo-20100122_usb.zip.html[code]
__________________


[/code][/code][/code]
Title: Re: VU+DUO HD Images
Post by: antox on January 23, 2010, 10:03:34 AM
OpenPLi unstable

Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100123

OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25405241/94a8888/OpenPLi-unstable-vuduo-20100123.zip.htmlOpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25405247/23d3b95/OpenPLi-unstable-vuduo-20100123_usb.zip.html__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 24, 2010, 09:01:38 AM
OpenPLi unstable
Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100124
OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25530244/3540938/OpenPLi-unstable-vuduo-20100124.zip.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25530283/1fa8f98/OpenPLi-unstable-vuduo-20100124_usb.zip.html__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 25, 2010, 09:05:11 AM
OpenPLi unstable

Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100125

OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25660323/137ca52/OpenPLi-unstable-vuduo-20100125.zip.html


OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25660352/081d2b6/OpenPLi-unstable-vuduo-20100125_usb.zip.html__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 25, 2010, 12:46:51 PM
 Original Images For Vu+ DUO v.2.5

Original Images For Vu+ DUO
Code: You are not allowed to view links. Register or Login
 
Description:
Ver 2.5 Changes 25.01.2010

1. Clean up build tree.
2. Video Information bug is fixed.
3. Separate the GPL part from proprietary driver.
4. Plugin update
5. After chaging skin, just restart enigma2


mbox/mbox-dvb-modules.bb
mbox/mbox-dvb-modules/dvb-bcm7335.ko
mbox/mbox-dvb-modules/brcmfb.ko
initscripts/initscripts-1.0/bm750/bootup
enigma2/enigma2-plugins_2.0.bb
enigma2/enigma2/enigma2.sh

Original 2.5 Flash
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_2.5/mbox-image-bm750-20100125084205.nfi
Original 2.5 USB

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25681397/cd43830/usb_upgrade.zip.html#

Thx Vu+ DUO Team
__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 26, 2010, 01:01:47 PM
 HDFreaks Image for VU+ Duo
HDFreaks Image for VU+ Duo
hdfreaks-vuduo 25/01/2010

In this Img. Solte the bug to be fixed with the disk.
In any case, it was immediately after the start of the box.

hdfreaks-vuduo-20100125182741.nfi
Code: You are not allowed to view links. Register or Login
http://www.multiupload.com/PAY55TU3XEhdfreaks-vuduo-20100125182741_usb.zip
Code: You are not allowed to view links. Register or Login
http://www.multiupload.com/XQF6GWBNGR__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 26, 2010, 01:23:35 PM
OpenPLi unstable

Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100126

OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100126.zipOpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100126_usb.zip__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 27, 2010, 08:10:14 AM
OpenPLi unstable
Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100127

OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25938157/158a214/OpenPLi-unstable-vuduo-20100127.zip.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/25938197/39f4c13/OpenPLi-unstable-vuduo-20100127_usb.zip.html__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 28, 2010, 08:27:26 AM
OpenPLi unstable
Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100128

OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26086373/71d2965/OpenPLi-unstable-vuduo-20100128.zip.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26086682/bef1e50/OpenPLi-unstable-vuduo-20100128_usb.zip.html__________________
Title: Re: VU+DUO HD Images
Post by: antox on January 31, 2010, 04:05:49 PM
OpenPLi unstable


Code: You are not allowed to view links. Register or Login


OpenPLi vuduo-20100130


OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26369978/f985444/OpenPLi-unstable-vuduo-20100129.zip.html

OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26370207/221d2e1/OpenPLi-unstable-vuduo-20100129_usb.zip.html__________________

OpenPLi unstable





OpenPLi vuduo-20100131



OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26511839/e9706e6/OpenPLi-unstable-vuduo-20100131.zip.html

OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26511930/134353b/OpenPLi-unstable-vuduo-20100131_usb.zip.htm__________________
Title: Re: VU+DUO HD Images
Post by: antox on February 01, 2010, 11:17:06 AM
OpenPLi unstable





OpenPLi vuduo-20100201



OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26652455/c1e50ee/OpenPLi-unstable-vuduo-20100201.zip.html


OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26652549/d5f6ec8/OpenPLi-unstable-vuduo-20100201_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 02, 2010, 08:37:36 AM
 OpenPLi unstable



Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100202



OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26812829/fff81a0/OpenPLi-unstable-vuduo-20100202.zip.html

OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/26812851/f56808a/OpenPLi-unstable-vuduo-20100202_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 03, 2010, 05:24:02 PM
Original Image Version 3.0


Ver 3.0 Release note

Quote
1. Fix HD skin Subtitle problem.
2. Support video event(autoresolution/resolution info.).
3. E2 upgrade(latest 2.6 revision).
4. Xcrypt driver optimization.
5. Section filter adjustment.
6. Support grab(screen capture).
7. Increate stack limit of application.



Changed Folder/Files.

bb/
Makefile-opendreambox-3.0

./local/packages/aio-grab/*
./local/packages/linux/linux-bm750/linux_resource.patch
./local/packages/linux/linux-bm750.bb

./local/packages/mbox/mbox-dvb-modules.bb
./local/packages/mbox/mbox-dvb-modules/dvb-bcm7335.ko
./local/packages/mbox/mbox-dvb-modules/dvb-core.ko

./local/packages/enigma2/enigma2-2.6git20091201
./local/packages/enigma2/enigma2_2.bb



VU+Duo-3.0 (http://hotfile.com/dl/26988478/10e4054/mbox-image-bm750-20100203093214.rar.html)

VU+ Duo 3.0/usb (http://hotfile.com/dl/26984852/8f9ff85/usb_upgrad.zip.html)
Title: Re: VU+DUO HD Images
Post by: antox on February 03, 2010, 05:25:30 PM
  OpenPLi unstable




Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100203


OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100203.zipOpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100203_usb.zip
Title: Re: VU+DUO HD Images
Post by: antox on February 05, 2010, 02:26:15 PM
 OpenPLi unstable


Code: You are not allowed to view links. Register or Login

OpenPLi vuduo-20100205



OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27241162/efbe874/OpenPLi-unstable-vuduo-20100205.rar.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27250301/b7bc9eb/OpenPLi-unstable-vuduo-20100205_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 05, 2010, 02:30:50 PM
 Neues VTI "Vu+ Team Image" - V0.3-04.02.2010 Experimental
Neues VTI "Vu+ Team Image" - V0.3-04.02.2010 Experimental


Also ist halt auch noch Beta. Aber einfach mal Testen und Berichten

Für die HD Skins muss ihr nach dem Insatllierens eines Skin die Fix skin.mxl ein spielen per FTP. Sieh Anhang.

Cams Bitte auch von unten nehmen und nicht vom Feed. Danke

Enigma vom 03.02.2010
Plugins vom 03.02.2010
Skins vom 03.02.2010
Treiber/Module vom 01.12.2009

Anderungen im Image:
Eigene Bootlogo's und neues Radiomode Logo.
diverse Anpassungen am Images und diffs, sowie Link von /usr/keys bzw. /var/keys im Image und andere kleinere Sachen.

WLAN funktioniert mit Ralink oder Zadas based WLAN-Dongles, standardmäßig funktionieren Ralinks ohne weitere Anpassung.
Das heap (Stack) Limit wurde reduziert, sodass insg. mehr freier RAM für die Box zur Verfügung steht.


New* Enigma vom 03.02.2010

New* VTI Panel

New* USB WLAN

New+ HD+ mit scam

New* Fixed mgcamd

New* Xcrypt Treiber Angepasst

New* Fixed HD Skin subtitle problem

New* Support aio-grab plugin.(screen capture)

New* Support Autoresolution

New* Subtitle problem fixed

vti-image-V0.3-04022010_USB
Code: You are not allowed to view links. Register or Login
http://www.multiupload.com/ZLHGAK1WBDvti-image-V0.3-04022010.nfi
Code: You are not allowed to view links. Register or Login
http://www.multiupload.com/MEUNK40W0S
Title: Re: VU+DUO HD Images
Post by: antox on February 06, 2010, 09:49:03 AM
 OpenPLi unstable







Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100206


OpenPLi vuduo

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27373174/2f4d713/OpenPLi-unstable-vuduo-20100206.zip.html
OpenPLi vuduo usb

Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27373191/dd6b0aa/OpenPLi-unstable-vuduo-20100206_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 08, 2010, 11:57:05 AM
OpenPLi unstable




Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100208


OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27663574/1d2ae88/OpenPLi-unstable-vuduo-20100208.zip.html


OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/27663598/3c3825d/OpenPLi-unstable-vuduo-20100208_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 08, 2010, 08:51:18 PM
 Original Image Version 3.1
Original Image Version 3.1





Ver 3.1 Release note

1. Driver update
- Fixed section filter problem at tuner-B
- Fixed reboot problem.
- Misc.

2. Changed default scart output to cvbs




Changed Folder/Files.

Makefile-vuplus-3.1


./local/packages/mbox/mbox-dvb-modules.bb
./local/packages/mbox/mbox-dvb-modules/dvb-bcm7335.ko
./local/packages/mbox/mbox-dvb-modules/dvb-core.ko

./local/packages/enigma2/enigma2-2.6git20091201/enigma2_vuplus_scart_cvbs.p
atch
./local/packages/enigma2/enigma2_2.bb


Thx Vu+ DUO Team




Images V3.1
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_3.1/mbox-image-bm750-20100208103820.nfi

Images V3.1USB
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_3.1/usb_upgrade.zip
Title: Re: VU+DUO HD Images
Post by: labud on February 09, 2010, 08:56:46 AM
OpenPLi unstable



Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100209

OpenPLi vuduo Download (http://hotfile.com/dl/27800154/b7f7112/OpenPLi-unstable-vuduo-20100209.zip.html)


OpenPLi vuduo usb Doenload (http://hotfile.com/dl/27800213/c477b8d/OpenPLi-unstable-vuduo-20100209_usb.zip.html)
Title: Re: VU+DUO HD Images
Post by: antox on February 11, 2010, 09:17:25 AM
OpenPLi unstable



Quote
OpenPLi vuduo-20100211


OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/28084637/3267661/OpenPLi-unstable-vuduo-20100211.zip.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/28084061/281cd6f/OpenPLi-unstable-vuduo-20100211_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: antox on February 12, 2010, 08:33:20 PM
 OpenPLi unstable



Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100212



OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/28223578/0b1a562/OpenPLi-unstable-vuduo-20100212.zip.html
OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://hotfile.com/dl/28223419/8f84475/OpenPLi-unstable-vuduo-20100212_usb.zip.html
Title: Re: VU+DUO HD Images
Post by: labud on February 13, 2010, 04:11:26 PM
OpenPLi unstable



Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100213

OpenPLi vuduo (http://depositfiles.com/files/31evngmc2)


OpenPLi vuduo usb (http://depositfiles.com/files/n28p8zycg)
Title: Re: VU+DUO HD Images
Post by: labud on February 15, 2010, 03:27:03 PM
OpenPLi unstable


Code: You are not allowed to view links. Register or Login
OpenPLi vuduo-20100215



Downloand OpenPLi vuduo (http://depositfiles.com/files/4i4skptem)


Downloand OpenPLi vuduo usb (http://depositfiles.com/files/3q5xl24s0)
Title: Re: VU+DUO HD Images
Post by: antox on February 16, 2010, 09:19:20 PM

OpenPLi unstable





OpenPLi vuduo-20100216



OpenPLi vuduo
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100216.zip

OpenPLi vuduo usb
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100216_usb.zip
Title: Re: VU+DUO HD Images
Post by: antox on February 16, 2010, 09:37:29 PM
 Original Image Version 3.2
Original Image Version 3.2


Code: You are not allowed to view links. Register or Login
Ver 3.2 Release note

1. DVB-CI Driver update
- Fix CAM recognition problem

2. Playback driver update
- Support more video codecs
- Support more audio streams

3. Demux dirver update
- Fix PES Filter problem.(Teletext, Subtitle)

4. HDMI dirver update
- Support AC3 Passthrough

Please previously non-functional CI-test modules.
And whether, via HDMI, the AC3 sound is transmitted.

And play the media player, DVD player and test video / audio codec CDs.

Autoreolsution with appropriately configured plug-in, whether in source material, which is available in 1080p, is also transmitted to 1080p on the HDMI output of the box to the TV.

Furthermore, DVB-subtitles are on channels that have not yet functioning, but also simple, for example, teletext

Version 3.2 NFI

Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_3.2/mbox-image-bm750-20100216054703.nfi
Version 3.2 USB
Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/download_3.2/usb_upgrade.zip

Thx Vu+ DUO Team
Title: Re: VU+DUO HD Images
Post by: dre@mer on February 18, 2010, 10:17:26 AM
 OpenPLi-unstable-vuduo-20100218

Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100218_usb.zip
Code: You are not allowed to view links. Register or Login
http://www.pli-images.org/modules/file_downloads/file_downloads.php?fd_id=1&dir=/vuduo&file=OpenPLi-unstable-vuduo-20100218.zip
Title: Re: VU+DUO HD Images
Post by: labud on February 19, 2010, 04:37:50 AM

HDfreaks-vuduo Image 17.02.2010

Aktuelles Build aus dem OpenPli mit unseren Anpassungen.


Changelog:
- Trunk 84 OpenPLi
- vuduo driver update
- Allow autorestore from USB and CF in addition to HDD
- amBX: Configuration for new grabber
- fixes in ipkg commands
- Don't bother to save epg.dat if it almost empty

hdfreaks-vuduo-20100217220138_usb



http://www.multiupload.com/4KXEIYS66O (http://www.multiupload.com/4KXEIYS66O)


hdfreaks-vuduo-20100217220138.nfi


http://www.multiupload.com/BAQM41JAB9 (http://www.multiupload.com/BAQM41JAB9)

Title: Re: VU+DUO HD Images
Post by: antox on February 19, 2010, 03:05:45 PM
VTI-image-V0.4 Experimental


(http://img220.imageshack.us/img220/5711/vti.jpg)


17.02.2010

Basis:

Enigma of 17.02.2010
Plug-ins (advanced) from 17.02.2010
Skins (with fixes) from 17.02.2010
Drivers / modules from 16.02.2010

Changes in the image:

- Own Boat Logo's new radio and fashion logo.
- VTI Panel
- Various adjustments to the image, kernel and various diffs, and link from / usr / keys and / var / keys in the smaller image and other things.

New Features:

- External USB DVD burners also work, it can be pure data CDs / DVDs () no audio, ie even DVDs are played directly as well as DVDs burned with DVDBurn.


Known bugs and fixes, if necessary:

- To keep the AC3 audio output when DVD player works, the file must liba52.so.0 under / usr / lib will be deleted.

Fixed bugs:

- When looping of tuner A / B there will be no more green screen.
- The HDMI handshake is working again, if the box is switched from the Idle to the operation mode.

WLAN:

- The WLAN now works directly with or Zydas Ralink-based wireless USB dongles, no further restrictions / adjustments, as you do in the VTI's previous releases were required.

Storage Management:

The-heap (stack) limit has been reduced so that total more free RAM for the box is available.



Detail improvements due to new drivers:


New * better support CI CAM
- Diablo 2 CI, Diablo Rev 2.3
- Aston dual (vs. 2.23)
- The Matrix Revolutions (with UCAS 3.1) support eg

Playback * New Driver Update
- Fixed DVD playback problem
- Support more video codecs
- Support more audio streams

* New demux driver update
- Fix PES filter problem (caching teletext, Subtitle)

* New HDMI driver update
- Support AC3 passthrough (no DTS Passtrough!)





http://hotfile.com/dl/29043734/e8c91b3/vti-image-V0.4-17022010.nfi.zip.html (http://hotfile.com/dl/29043734/e8c91b3/vti-image-V0.4-17022010.nfi.zip.html)

http://hotfile.com/dl/29043877/c69acf1/vti-image-V0.4-17022010_USB.zip.html (http://hotfile.com/dl/29043877/c69acf1/vti-image-V0.4-17022010_USB.zip.html)
Title: Re: VU+DUO HD Images
Post by: labud on February 25, 2010, 09:16:13 AM
Original Images 4.0



Code: You are not allowed to view links. Register or Login
Ver 4.0 Release note

1. Audio/HDMI Driver update
- Support stereo/mono selection
- Support DTS audio passthrough

2. Playback driver update
- Support E2 rev2.8 timeshift

3. Demux dirver update
- Fix PES Filter problem.(Teletext, Subtitle)
- Fix section filter problem

4. Video Driver update
- Support 1080p

5. Upgrade E2 to rev.2.8





Changed Folders/Files.

Makefile-vuplus-4.0

./local/conf/distro/mbox-1.0.conf

./local/packages/enigma2/enigma2-2.8git20100129
./local/packages/enigma2/enigma2_3.bb

./local/packages/mbox/mbox-dvb-modules.bb
./local/packages/mbox/mbox-dvb-modules/dvb-bcm7335.ko


Original Images 4.0 nfi (http://depositfiles.com/files/hvxiaigle)


Original Images 4.0 usb (http://depositfiles.com/files/hvc4htwbt)




Thx Vu+ DUO Team
Title: Re: VU+DUO HD Images
Post by: stafa on February 26, 2010, 01:47:14 PM
Dream-Elite Black Hole 1.0 Vu+ Duo
Quote
Dream-Elite Black Hole 1.0 Vu+ Duo is currently in testing.
Available in the next days.

This is a complete Dream-Elite Black Hole image all included.
Server Addons. Integrated Opentv-Epg, External Epg.dat servers...
All you have in Dream Elite Black Hole famous images is now available on Vu+ Duo.
Coder who separated from the Nabilo team, together with s afew other guys, also started writing for Vu+ Duo!!!

Let the games begin!!!
Code: You are not allowed to view links. Register or Login
http://eserver.org/philosophy/kant/w...ightenment.txt the jolly text on Enlightenment, at the basis of Modernity...
Title: Re: VU+DUO HD Images
Post by: antox on February 28, 2010, 05:45:37 PM
 Neues VTI "Vu+ Team Image" - V0.5-27.02.2010 Master

Basis:

- Enigma 2.8 by 27/02/2010
- Plug-ins (advanced) from 27.02.2010
- Skins (with fixes 750S - SKIN_750S-new.zip is no longer necessary etc / HD) from 27.02.2010
- Drivers / modules from 25.02.2010

Changes in the image [/ B]:

- Own Boat Logo's new radio and fashion logo.
- VTI Panel -> Updates the VTI Panels
- Smargo support
- Various adjustments to the image, kernel, cleaned up a feed - CAM IPKs rebuilt and several diffs and link from / usr / keys and / var / keys in the smaller image and other things.


New Features:

- External USB DVD burners also work, it can be pure data CDs / DVDs () no audio, ie even DVDs are played directly as well as DVDs burned with DVDBurn.


Known bugs and fixes, if necessary:

- No AC3 audio output when playing DVDs:

Solution:

Thus the AC3 audio output when DVD player works, the file must liba52.so.0 under / usr / lib will be deleted.

Or alternatively, run the following: ipkg remove-force-depends liba52-0

Fixed bugs:

- When looping of tuner A / B there will be no more green screen.
- The HDMI handshake is working again, if the box is switched from the Idle to the operation mode.
- Green screen when running the game ESAME resolved.
- The plug-in network browser is fixed.

WLAN:

- The WLAN now works directly with or Zydas Ralink-based wireless USB dongles, no further restrictions / adjustments, as you do in the VTI's previous releases were required.

Examples of supported wireless dongles: Wireless

Storage Management:

The-heap (stack) limit has been reduced so that total more free RAM for the box is available.


Detail improvements due to new drivers (compared to the previous release 0.4 VTI):

* New Audio / HDMI Driver update

- Support stereo / mono selection
- Support DTS audio pass-through (not fully fixed yet)

Playback * New Driver Update

- Support E2 rev2.8 timeshift

* New demux driver update

- Fix PES filter problem. (Teletext, Subtitle eg ORF HD, TotalTV Channels)
- Fix section filter problem

* New Video Driver update

- Support 1080p (not fully fixed yet)


Download USB version

http://www.speedyshare.com/files/21185551/vti-image-V0.5-27022010_USB_2.zip (http://www.speedyshare.com/files/21185551/vti-image-V0.5-27022010_USB_2.zip)

Title: Re: VU+DUO HD Images
Post by: labud on March 03, 2010, 02:35:00 AM
Dream-Elite Black Hole 1.0 VU+ Duo Multiboot

Based on Official release 4.0

Dvb drivers 2.6.18-6.6-r11

Enigma 2.8 git 20100129

Webif and GraphicMultiepg added

Automount of Usb pen added

Bootlogos: by Army

Meoboot version 0.94xVu+Duo

Skin: HD Army Base awesome HD skin with large size fonts and panels

This image is a final Black Hole serie, entirely rewrote and recoded to have maximum stability and performance.
We remember that black hole serie images have the best epg system available:
- Integrated Openepg for Sky-it Sky-uk Sky-Au
- Latest CVS enigma2 Epg features
- New external epg.dat system.
Therefore, each board or community can create its favourite EPG data files, and upload it to a web space. Community members can then download it from that server.
This feature offers additional benefits, such as:
EPG download increased speed
EPG download from any channel
EPG scheduled download also during standby
User set EPG Providers Add/Remove

Main Function Keys

Button 1xOK = Light Info Skin
Button 2xOK = Extra Info Skin
Button Blue = Dream ELite Blue Panel
Button 1x Blue + 1x Yellow = Dream Elite Epg Panel
Button 1x Blue + 1x Yellow = New System Monitor Panel
Button Blue-Long-Push = Extensions
Button Green = Dream Elite Green Panel
Button Green-Long-Push = Subservices
Button 1x Green + 1x Red = CCcam Info
Button Red = Start Record
Button Yellow = Time Shift

Addons

Dedicated Addons Server
Download and install additional packages from Dream Elite server

Infobar/OSD

Enigma2 Analogic Clock
Channel Orbital Position

Advanced Tuner Info: Sr Freq Pol Fec
Signal SNR, BER
Infobar Picons
LCD/OLED Picons
Advanced EMU information

Dream Elite Panels features

1) Blue Panel

Setup


Black Hole Cron Manager
OSD Settings
Kernel Modules Manager
Fast Plugin Settings
Inadyn Settings
Swap File Settings
Hard Disk Setup
Dream Elite Mount Wizard
OpenVPN Panel
Samba/Cifs Panel
NFS Server Panel
Telnet Panel
FTP Panel

System Monitor Panel

CCcam Info
Service Info
Enigma2 Settings
About

Memory
Space
CPU
Process

AutoCam

Select EMU by Channel

2) Green Panel

CCcam Info
Fast Plugin
Addons

Addons Download Manager
Manual Install Del packages
Manual Install IPK packages
Addons Uninstall Panel
Dream Elite Statistics

Scripts

Many thanks to the Beta Testers Team.
Many thanks to Rytec for all the epg servers providing precompiled Epg.dat for Dream Elite Image.


Image Credits
E2 Sky Epg loader integration by MaxZ4.
Army for the new HD Base Skin V15.
Many Thanks to lukkino (VDR-Italia) for opentv source code.
Many thanks to Reinh@rd for the satellites.xml file.

MeoBoot x Vu+Duo Credits:
Many Thanks to gutemine.
This version of MeoBoot could not exists without gutemine works and code in nfi extraction.



WARNING.

This image have to be installed in flash. Dream-Elite Team will not support images not installed in flash. .


This Images doesn't contain any keys nor softcams.
Backups or other modified Images are not supported!

INSTRUCTIONS FOR USB VERSION:

1) Unzip package
2) Copy the content of the package in a Usb Pen (fat32 formatted)
3) Insert Usb pen in Vu+ Duo front Panel and REMOVE ALL OTHER USB
4) Reboot your Vu+ duo and follow instructions.


(http://www.redimg.net/A/09/11/1/1sg52z.jpg)


(http://www.redimg.net/A/09/11/1/2uz68f.jpg)

(http://www.redimg.net/A/09/11/1/3fz64u.jpg)

(http://www.redimg.net/A/09/11/1/4it22t.jpg)


DreamEliteBH_VUDUO_10E_NFI.zip


Code: You are not allowed to view links. Register or Login
http://rapidshare.com/files/357901323/DreamEliteBH_VUDUO_10E_NFI.zip.html


DreamEliteBH_VUDUO_10E_USB.zip

Code: You are not allowed to view links. Register or Login
http://rapidshare.com/files/357901390/DreamEliteBH_VUDUO_10E_USB.zip.html
Title: Re: VU+DUO HD Images
Post by: bucek on March 12, 2010, 04:38:16 PM
VU+ original image 4.1



Ver 4.1 Release note

1. Linux Kernel update(2.6.18-7.3)
- Fix external HDD(ESATA) recognition problem.
- Update console driver
- Update Nand File system driver(address file system corruption due to sudden power loss)

2. Fix "no signal" problem at HDMI output.

3. Support multi language on VFD display.

4. Fix 1080p autoresolution problem.

5. Enhance remote control response time.

6. Fix E2 default channel setting.

7. Fix **deto CI module problem


Code: You are not allowed to view links. Register or Login
http://archive.vuplus.com/duo/download_4.1/
Title: Re: VU+DUO HD Images
Post by: antox on March 15, 2010, 06:41:05 PM
 Vu+ Team Image" - V0.6-12.03.2010
Vu+ Team Image" - V0.6-12.03.2010 Master


Enigma vom 12.03.2010
Plugins vom 27.02.2010
Skins vom 12.03.2010
Treiber/Module vom 25.02.2010

Anderungen im Image:
Eigene Bootlogo's und neues Radiomode Logo.
diverse Anpassungen am Images und diffs, sowie Link von /usr/keys bzw. /var/keys im Image und andere kleinere Sachen.

WLAN funktioniert mit Ralink oder Zadas based WLAN-Dongles, standardmäßig funktionieren Ralinks ohne weitere Anpassung.
Das heap (Stack) Limit wurde reduziert, sodass insg. mehr freier RAM für die Box zur Verfügung steht.



New* Linux Kernel update(2.6.18-7.3)
- Fix external HDD(ESATA) recognition problem.
- Update console driver
- Update Nand File system driver(address file system corruption due to sudden power loss)


New* Fix "no signal" problem at HDMI output.

New* Support multi language on VFD display

New* Fix 1080p autoresolution problem

New* Enhance remote control response time

New* Fix E2 default channel setting.

New* Diverse Skin Anpassungen

New* Fix 1rd3t0 CI module problem
(http://www.vuplus-support.com/vti.jpg)
http://rapidshare.com/files/363693773/vti-image-V0.6-12032010.zip (http://rapidshare.com/files/363693773/vti-image-V0.6-12032010.zip)
Title: Re: VU+DUO HD Images
Post by: antox on March 18, 2010, 05:53:35 PM
New Original Image (V4.2) Released
New Image (V4.2) Released


Ver 4.2 Release note

1. Driver memory usage optimization
- allocate more memory to user application.

2. Adjust DiseqC message timing

3. Fix media player skip function
- 1, 3 : 15 secs skip
- 4, 6 : 1 min. skip
- 7, 9 : 5 min. skip

4. Fix Radio channel audio problem

5. Support PIG

6. Fix "Box does not wake up after long inactivity" problem.(Fixed at 4.1)

7. Fix HD Skin VFD Display

8. Fix E2 skin cutlisteditor bug

Changed Folders/Files.

Makefile-vuplus-4.2

./local/packages/mbox/mbox-dvb-modules.bb
./local/packages/mbox/mbox-dvb-modules/dvb-bcm7335.ko

./local/packages/linux/linux-bm750.bb
./local/packages/linux/linux-bm750/linux_bm750_setup.patch

./local/packages/enigma2/enigma2_3.bb
./local/packages/enigma2/enigma2-2.8git20100129/enigma2_vuplus_duo_hd_vfd.patch

./local/packages/enigma2/enigma2-skins_3.bb
./local/packages/enigma2/enigma2-skin

USB VERSION
http://archive.vuplus.com/duo/download_4.2/usb_upgrade.zip (http://archive.vuplus.com/duo/download_4.2/usb_upgrade.zip)

NFI VERSION
http://archive.vuplus.com/duo/download_4.2/mbox-image-bm750-20100318071252.nfi (http://archive.vuplus.com/duo/download_4.2/mbox-image-bm750-20100318071252.nfi)
Title: Re: VU+DUO HD Images
Post by: antox on March 20, 2010, 06:59:48 PM
local.tar.gz
Title: Re: VU+DUO HD Images
Post by: labud on October 30, 2010, 02:26:33 AM
Persian HD Project For Vu+DuoHD (New Private Build)


USB & NFI


http://www.mediafire.com/?hn6hal0oqe09b (http://www.mediafire.com/?hn6hal0oqe09b)
Title: Re: VU+DUO HD Images
Post by: macro on November 15, 2010, 01:40:49 PM
SifTeam Exteme Edition rev.136 vuplus-vusolo

Changelog preso dagli update dell'svn sif su google

Enabled wlan in vuplus machines
Fixed missing **** packages dependencies
Added blacklist support in busybox for vuplus (needed by usb tuners)
Added support for tuner TDA18218
Added extuner as default in vuplus
Fixed bad a867 package in usb tuners panel
Added "depmod -a" in dvbusb init script
SifTeam Exteme Edition rev.136 vuplus-vusolo

Removed old v4l-dvb sources
Fixed missing patch in vuplus v4l-dvb Fixed bootlogo in vuplus Restored enigma2 swloop patch in vuplus-vusolo
Removed old a867 package and patch
Removed swloop patch from vuduo image
Merged a867 driver into v4l-dvb
Updated modules init script
Updated modprobe.conf (fixed a867 and as102 in blacklist)
Merged AF9035 into main v4l-dvb
Added support for A825
Fixed bad pid add/remove handling
Updated checksums.ini with new vusolo modules checksums

Code: You are not allowed to view links. Register or Login
http://www.sendspace.com/file/rjr9nd
Title: Re: VU+DUO HD Images
Post by: macro on November 15, 2010, 01:40:49 PM
SifTeam Exteme Edition rev.136 vuplus-vusolo

Changelog preso dagli update dell'svn sif su google

Enabled wlan in vuplus machines
Fixed missing **** packages dependencies
Added blacklist support in busybox for vuplus (needed by usb tuners)
Added support for tuner TDA18218
Added extuner as default in vuplus
Fixed bad a867 package in usb tuners panel
Added "depmod -a" in dvbusb init script
SifTeam Exteme Edition rev.136 vuplus-vusolo

Removed old v4l-dvb sources
Fixed missing patch in vuplus v4l-dvb Fixed bootlogo in vuplus Restored enigma2 swloop patch in vuplus-vusolo
Removed old a867 package and patch
Removed swloop patch from vuduo image
Merged a867 driver into v4l-dvb
Updated modules init script
Updated modprobe.conf (fixed a867 and as102 in blacklist)
Merged AF9035 into main v4l-dvb
Added support for A825
Fixed bad pid add/remove handling
Updated checksums.ini with new vusolo modules checksums

Code: You are not allowed to view links. Register or Login
http://www.sendspace.com/file/rjr9nd
Title: Re: VU+DUO HD Images
Post by: kargo.25 on February 02, 2011, 05:56:11 PM
BKP Pappaalfio SIF 188 SVN "Avatar" con DLNA


(http://img109.imageshack.us/img109/9176/avatarlwb.jpg)

(http://img684.imageshack.us/img684/5381/screenshot2dq.jpg)

(http://img573.imageshack.us/img573/9704/screenshot3i.jpg)

(http://img62.imageshack.us/img62/8569/screenshot4de.jpg)

(http://img80.imageshack.us/img80/8388/screenshot5ey.jpg)

(http://img824.imageshack.us/img824/694/screenshot6ew.jpg)

(http://img52.imageshack.us/img52/1272/screenshot7lk.jpg)

(http://img690.imageshack.us/img690/9161/screenshot8am.jpg)

(http://img141.imageshack.us/img141/5062/screenshot9x.jpg)


Configurazione

Rete: 192.168.1.99 subnet 255.255.255.0 DNS già configurati
(questi parametri di rete restano per tutti i miei BKP)
User = root nessuna Password
Tuner A: Hotbird-Astra  Tuner B: in cascata da tuner A
Setting VHannibal aggiornati al 22 Gen 2011
AV HDMI - Config Esperto

Installazione

Scollegare tutte le periferiche USB
Flashare
Prima del riavvio collegare le periferiche compresa la DTT USB (se compatibile con la lista) ed eventuali lettori Pcsc.

Configurare la rete, i dns vanno bene..

Montare eventuale HardDisk interno :
TastoBlu > Disks > Partition > Mount > Verifica ( ho tralasciato la formattazione che va fatta solo du HD nuovo)

Creare Area di Swap (utilissima per effettuare il Backup) :
come sopra opzione Swap > Attivare con tasto rosso OK

Ora configurate il Dtt :
Menu' > Configurazione > Ricerca Canali >Configurazione Tuner
Tuner C (se non compare non è supportato)
Selezionare la zona e OK
Il parametro dei 5V non ha alcun effetto sulle penne USB

Con exit ritornate sul Menu e selezionate Ricerca Manuale
Selezionate il Tuner C
Tipo ricerca Tutti i trasponder - Ricerca Rete si

Se volete usare il Plugin SVDownloader che è già installato per la prima volta usate un editor di Setting (io uso Dreamboxedit) e scaricate dal Vuduo i setting in dreamedit, passate la lista dei terrestri , riordinandola, nella lista Vhannibal ( o altra da voi usata) nel Bouquet Digitale terrestre e ripassate i setting così ordinati sul vostro Vuduo.

Ora potete avviare SVDownloader che legge la VS. configurazione, e la salvate.

Premendo il tasto giallo controllate gli aggio sul sito del fornitore di setting e se dovete aggiornare, premete il tasto scarica.
Vi comparirà la lista dei vostri Bouquets e scegliete Digitale Terrestre;
 il plugin si collegherà in automatico al sito e scaricherà i nuovi setting senza toccare Il Bouquet Digitale terrestre.

Alla fine il plugin lancia un comando E2 che vi evita il riavvio di E2. (comodissimo se si considera che la ricerca di canali terrestri non la si fa tutti i giorni).

Una nota , con i setting di Vhannibal (non conosco gli altri) , la numerazione dei canali del DTT parte da 201 quindi se volete richiamare il 1° canale del DTT (presumo avrete riordinato con Rai 1, potete digitare direttamente il canale in maniera mnemonica).

Ho installato inoltre un plugin appendice al CrossEpg, già installato nella immagine, che scarica i setting M7Premium oltre quelli di Cielo che ho già selezionato nella config.
Spero Vi torni utile.





Plugin

Font Magnifier
Lotto Enalotto
Filebrowser
OscamInfo (nuovo)
QuickButton (da configurare)
CccamInfo
CronManager
WebInterface
PicturePlayer
SVDownloader BY Dalraist
MediaScanner
TG24 Intercactive
Diretta Goal 12Finestre
CrossEpgDownloader
UPnP - DLNA ClientServer

Tutti i plugin installati sono funzionanti.

Ho testato ed installato il Player DVD che va benissimo.
Testato Mediaplayer collegato con server DLNa con musica e AVI

Sono già installati i drivers per il lettori PCSC.


Note

Pannello Sif Originale
Skin Concinnity HD con numerazione canali.

Pannello degli script raggiungibile da pannello Sif nel quale troverete tutti i comandi per rimuovere automaticamente quanto installato a mano ed alcuni comandi di sistema utili con aggiunta di ulteriori nuove utilità.

Attenzione: tutti gli script si avviano automaticamente con la selezione e quindi non richiedono conferme ulteriori. Una attenzione particolare agli script che iniziano con "Remove" !!

Ho installato dei plugin nuovi che vi torneranno sicuramente molto utili, uno in particolare lo troverete particolarmente utile : Oscam.info.
Ho tradotto tutto il plugin in italiano, prima di cominciare ad usarlo leggete (da opzione del menu) "configurazione".


Non effettuare aggiornamenti online se non quando una nuova Rel viene installata sul Repository.


Pappaalfio

http://rapidshare.com/files/445705001/188AvatarUSB.rar"]LINK (http://"[url) USB[/URL][/COLOR]

http://rapidshare.com/files/445704962/188avatar.nfi.rar"]LINK (http://"[url) NFI[/URL][/COLOR]
Title: VU+DUO HD Images
Post by: labud on June 24, 2011, 03:25:56 AM
LSK Plugin Free Memory v0.3 All Enigma2 Images                                                                        Clears the memory and improves overall performance

Version v0.3 compatible con todas las imagenes Enigma2

Para instalar la nueva version, antes teneis que quitaros la antigua v0.2, lanzar este comando desde telnet:


Si quereis saber si teneis paquetes sueltos perdidos, podeis enviar un:


Si sale algun nombre perdido, es el nombre completo el que teneis que desinstalar:





Multiupload.com - upload your files to multiple file hosting sites! (http://www.multiupload.com/24UX5T9AIV)
Title: VU+DUO HD Images
Post by: Predr@g on July 19, 2014, 02:15:11 PM
VTi "Vu+ Team Image Duo" - V 7.0.0 - 17.07.2014



DOWNLOAD VU+ Duo (http://www.mediafire.com/?e25eap3rgy66ad3)