Digital Kaos

Guide: How to Create a DM500 Dreambox Image

How to build a complete image for your dreambox Choosing your Platform ...

 
Home FAQ Calendar Search Today's Posts Mark Forums Read Links


Navigation »Digital Kaos > Cable > Cable Dreambox > Dreambox Developement » Guide: How to Create a DM500 Dreambox Image

Welcome Header
Reply
 
LinkBack (6) Thread Tools Display Modes

 Old 14th March, 2008, 05:27 AM   6 links from elsewhere to this Post. Click to view. #1
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default Guide: How to Create a DM500 Dreambox Image


How to build a complete image for your dreambox

Choosing your Platform

First of all, you will need a platform to create your image. There are many versions of linux that you can use, I have used VMWare with Ubuntu and also a dedicated linux PC running Ubuntu. Both variations will work just as well.

If you want to use VMWare, you can download it at http://www.vmware.com/download/player.

If you want to use a dedicated PC, either with Ubuntu as the main OS or as a dual-boot system, you can download Ubuntu for free at http://www.ubuntu.com.

The VMWare method is probably easier if you are trying it out for the first time. You can always uninstall it if it's not for you.

Configuring your Ubuntu


The following packages need to be installed in your ubuntu before you start creating any images.

Click on System, Administration, Synaptic Package Manager.

You will need to search for the following packages and install them:

- cvs
- autoconf
- automake
- libtool
- gettext
- make
- makeinfo (texinfo)
- tar
- bunzip2 (bzip2)
- gunzip (gzip)
- patch
- infocmp (ncurses-bin / ncurses-devel)
- gcc
- g++
- flex
- bison
- pkg-config
- wget
- libpng2 or libpng3 (DirectFB)
- ftpd (or other ftp server)

The latest versions of these packages should work ok. Click Apply to install them.

There is a pre-configured environment that you can download from here:

http://rapidshare.com/files/19433800...art01.rar.html
http://rapidshare.com/files/19438947...art02.rar.html
http://rapidshare.com/files/19443643...art03.rar.html
http://rapidshare.com/files/19447782...art04.rar.html
http://rapidshare.com/files/19451240...art05.rar.html
http://rapidshare.com/files/19454408...art06.rar.html
http://rapidshare.com/files/19457852...art07.rar.html
http://rapidshare.com/files/19460565...art08.rar.html
http://rapidshare.com/files/19462848...art09.rar.html 
If you have installed the necessary packages, you don't need to download the pre-configured environment.

Compiling an Image

Now we'll move on to downloading and compiling our image. Most of this will be copy and paste but you'll get used to the commands.

Open a terminal window and paste the following commands:

Creating a working directory
mkdir tuxbox-cvs
Change into the working directory
cd tuxbox-cvs
The following can now be copied and pasted in, line by line. Wait for the command prompt to be displayed before pasting the next line.

export CVS_RSH=ssh
 cvs -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox -z3 co -P -rdreambox .
### Note the dot at the end of the command, this is important ###

cd cdk
chmod 755 prepare
Now we need to alter the 'prepare' file to personalise our image

Go to /tuxbox-cvs/cdk and open the 'prepare' file with the text editor. It should look like this:

#!/bin/bash
cd .. && CURRENT_PATH=`pwd`;
cd cdk
./autogen.sh;
# boxtype dm500 dm56x0 or dm7000
TYPE=$1
if test -z "$TYPE"; then
    TYPE=dm7000                   //change to box type
fi
./configure \
    --with-boxtype=$TYPE \
    --with-webif=standard \       //change to webif=expert
    --prefix=$CURRENT_PATH/root \
    --with-cvsdir=$CURRENT_PATH \
    --with-cpu=405 \
    --enable-maintainer-mode \
    --with-targetruleset=flash \
    --with-epg=private \          //change to -epg=standard
    --with-mhw-epg=no \           //change to -epg=yes
    --with-flashtool=standard \
    --with-reiserfs=no \
    --with-ext-flashtool=yes \
    --with-enigma-debug=yes
Change the lines in red. Save the file and return to the terminal window.

Back to the copy and pasting.

./prepare dm500
make checkout
make dreamboximage_root
The last command will take a long time to complete, depending on the speed of your PC and internet; up to about 2 hours.

The following command creates the folders that you normally see on your box, i.e. /bin, /etc, /var, /var_init, etc.
make rebuild-flash
The following command compresses all your folders into an .img file.
make flash-compress
If all has gone ok and you didn't get any errors, you should have a file called complete.img in /tuxbox-cvs/root/cdkflash. This is your actual image file that you flash to your box. There will be two other .img files but don't worry about them.

Now this will be a basic image, no addons or emu managers or anything. It will be like the dream original image only up-to-date.

Next you need to modify it to your needs.

Good luck!
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk

Last edited by Devilfish; 17th March, 2008 at 08:11 PM.
Devilfish is offline   Reply With Quote
The Following 16 Users Say Thank You to Devilfish For This Useful Post:
Aldormanndiobla (7th January, 2009), ALoGeNo (9th May, 2010), attack (26th November, 2008), autertip (23rd December, 2008), delboy13 (4th July, 2009), flatdish2 (28th October, 2009), Oxyd (14th October, 2008), pat28 (10th December, 2008), pornage (3rd September, 2008), portbhoy (7th July, 2009), sarikth (13th October, 2008), SatSearching (20th October, 2008), time2rest (8th June, 2008), uskuz (9th May, 2008), virus (12th May, 2008), zach (6th June, 2008)
 Old 14th March, 2008, 08:31 AM   #2
Dreambox Guru
 
osborne82's Avatar
 
Join Date: Mar 2008
Location: any dreambox development forum
Posts: 133
Thanks: 38
Thanked 60 Times in 46 Posts
Downloads: 45
Uploads: 0
osborne82 is on a distinguished road
Default

just to add about the prepare file

#!/bin/bash
cd .. && CURRENT_PATH=`pwd`;
cd cdk
./autogen.sh;
# boxtype dm500 dm56x0 or dm7000
TYPE=$1
if test -z "$TYPE"; then
    TYPE=dm7000                   //change to box type
fi
./configure \
    --with-boxtype=$TYPE \
    --with-webif=standard \       //change to webif=expert
    --prefix=$CURRENT_PATH/root \
    --with-cvsdir=$CURRENT_PATH \
    --with-cpu=405 \
    --enable-maintainer-mode \
    --with-targetruleset=flash \
    --with-epg=private \          //change to -epg=normal
    --with-mhw-epg=no \           //change to -epg=yes
    --with-flashtool=standard \
    --with-reiserfs=no \
    --with-ext-flashtool=yes \
    --with-enigma-debug=yes
not needed to change box type here as the ./prepare dmxxxx will sort it (defalut is dm7000)

also --with-epg=private \ again not really needed to change but can use either private OR standard

--with-reserfs=no if u change to yes it gives few more hard drive options (mainly for dm7000 and above)

cheers

osborne82
osborne82 is offline   Reply With Quote
The Following User Says Thank You to osborne82 For This Useful Post:
Aldormanndiobla (7th January, 2009)
 Old 14th March, 2008, 12:53 PM   #3
thommo
Guest
 
Posts: n/a
Downloads:
Uploads:
Default

ohh might have a play with this when ive got some time to sit down on it. always wanted a go but never knew how.


wonder if someones going to make a digital-kaos image
  Reply With Quote
The Following User Says Thank You to For This Useful Post:
Aldormanndiobla (7th January, 2009)
 Old 14th March, 2008, 01:31 PM   #4
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default

Thanks for the additional info osborne82, you always keep me right!

Get stuck in thommo.
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following User Says Thank You to Devilfish For This Useful Post:
Aldormanndiobla (7th January, 2009)
 Old 14th March, 2008, 02:12 PM   #5
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default

One other thing to note...

When you create an enigma image, all your files go in /var_init; /var is always empty.

The reason for this is, when the image boots for the first time, it copies everything from /var_init to /var. It only does this on first boot or if you have selected the 'factory reset' option.

You should be asked to select the language, timezone and PAL. This is the image configuring the /var/tuxbox/config/enigma/config file.

The config file is useful for setting default options.

When you select Menu > Setup > Expert Setup, you have a few options that you can 'tick'. These are defined in the config file. To find out what each line does by comparing the file before and after you change an option. Reboot to take effect.
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
 Old 2nd April, 2008, 02:09 PM   #6
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default UK Infobar 'Now and Next' EPG Modification

UK Infobar 'Now and Next' EPG Modification

UK cable doesn't conform to the dvb-c standard. So we need to modify the source code so that it displays the now and next program information on the infobar. Without this mod, there will be no now and next epg.

Download the attached txt file and extract the contents to your 'tuxbox-cvs' directory.

In a terminal window, change into the tuxbox-cvs directory.

cd tuxbox-cvs
Copy and past this command:

patch -p1 < infopmt.diff
If it patches ok you shouldn't get any errors and you should see a prompt again.

Now you need to copy and paste the following commands:

cd cdk
 rm .enigma
 make .enigma
 make rebuild-flash
 make flash-compress
The image will compile into .img as in the first post. Now and next epg should now work.
Attached Files
File Type: zip infopmt.diff.zip (2.5 KB, 66 views)
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following User Says Thank You to Devilfish For This Useful Post:
*ADD* (20th September, 2008)
 Old 3rd April, 2008, 06:52 PM   #7
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default Creating your own boot logo

How to create your own startup, shutdown, radio, scan and mp3 logos
The dimension of these pictures must be 720×576 pixels in PAL format.

Path where the boot image is stored is /root/platform/kernel and is called bild.
Path where the other pictures are stored is /var/tuxbox/config/enigma/pictures.

The program we will use to create the pictures is called TMPGEnc.
  1. Download TMPGEnc from official site
  2. Unzip the file to your chosen destination.
  3. Double click the ‘TPMGEnc.exe MPEG Encoder’ file and click ‘OK’ on the small pop up window. Then click ‘Cancel’ on the ‘Project Wizard (1/5)’ window that appears.
  4. Next screen, bottom right…’Stream type’, check the box ‘ES (Video only)’.
  5. Next, bottom left…’Video source:’ click on ‘Browse’ and select the background/photo that you want as your new logo.
  6. Next, bottom left… ‘Output file name:’ click on browse and choose the path for your finished ‘new’ boot background/photo and edit the name to ‘bild’ (minus the ‘….’ and in lower case) ie: the line that apperars in the ‘Output file name:’ should read similar to C:\Documents and Settings\Whatever\My Documents\bild ( the actual name of the photo does NOT appear).
  7. Next, bottom right…click on ‘Setting’ and check that the value settings are:
…..’Stream type:’ = MPEG-1 Video
…..’Size’ = 720 x576 pixels
…..’Aspect ratio:’ = 1:1 (VGA)
…..’Frame rate:’ = 25 fps
…..’Rate control mode:’ = Constant bitrate (CBR)
…..’Bitrate:’ = 12000
…..’Motion search precision:’ = Normal

When checked, click ‘OK’ to exit the screen.

Top left click ‘Start’, if all is goes well, the ‘100%’ bar appears and your completed ‘bild’ file is in your chosen ‘Output…’ location.

*** If You want to change the boot picture before compressing the image (after the ‘make rebuild-flash’ command ) , just copy it into /tuxbox-cvs/root/cdkflash/boot/root/platform/kernel before executing the ‘make flash-compress’ command.

Thanks to Fergy for initial guide
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following User Says Thank You to Devilfish For This Useful Post:
attack (26th November, 2008)
 Old 12th May, 2008, 12:13 AM   #8
Newbie
 
Join Date: Apr 2008
Posts: 13
Thanks: 11
Thanked 0 Times in 0 Posts
Downloads: 5
Uploads: 0
virus is on a distinguished road
Default

I am here again, I would like to know a good and simple way of getting a skin as default and delet those that come from home, I think that only lack here in this same section of development

virus is offline   Reply With Quote
 Old 12th May, 2008, 10:57 AM   #9
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default

To make a certain skin default, you can edit the setup_skin.cpp file to reflect this.

Or add this line to the bottom of the /var_init/tuxbox/config/enigma/config file.

s:/ezap/ui/skin=/share/tuxbox/enigma/skins/SKIN_NAME.esml
You can also remove any skins you don't want from /share/tuxbox/enigma. Remember to remove the skins and pictures files.
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following User Says Thank You to Devilfish For This Useful Post:
virus (12th May, 2008)
 Old 12th May, 2008, 12:37 PM   #10
Newbie
 
Join Date: Apr 2008
Posts: 13
Thanks: 11
Thanked 0 Times in 0 Posts
Downloads: 5
Uploads: 0
virus is on a distinguished road
Default

Originally Posted by Devilfish View Post
To make a certain skin default, you can edit the setup_skin.cpp file to reflect this.

Or add this line to the bottom of the /var_init/tuxbox/config/enigma/config file.

s:/ezap/ui/skin=/share/tuxbox/enigma/skins/SKIN_NAME.esml
You can also remove any skins you don't want from /share/tuxbox/enigma. Remember to remove the skins and pictures files.

thankd for reply


I get to another skin as the default file setupskin.cpp

I must add here?

CONFIGDIR "/enigma/skins/virus.esml",
TUXBOXDATADIR "/enigma/skins/virus.esml",

after adding a skin that commands can I do for the skin is in the picture???

make rebuild-flash
make flash-compress
????????


very grateful for your help
virus is offline   Reply With Quote
 Old 12th May, 2008, 02:56 PM   #11
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default

After you adjust any src files you need to remake enigma.

rm .enigma
make .enigma
make rebuild-flash
make flash-compress
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following 3 Users Say Thank You to Devilfish For This Useful Post:
lonas (26th March, 2010), mbouzguenda (5th June, 2008), virus (12th May, 2008)
 Old 17th July, 2008, 05:32 PM   #12
Newbie
 
Join Date: Jul 2008
Posts: 15
Thanks: 8
Thanked 1 Time in 1 Post
Downloads: 2
Uploads: 0
rolks is on a distinguished road
Default

newbe here. tryed different linuxes to use for copile but result allways same:
nable different security models (SECURITY) [N/y/?] n
*
* Cryptographic options
*
Cryptographic API (CRYPTO) [N/y/?] n
make[2]: Leaving directory `/tuxbox-cvs/cdk/linux-2.6.9'
make -C linux-2.6.9 include/linux/version.h \
ARCH=ppc
/tuxbox-cvs/cdk/linux-2.6.9/scripts/gcc-version.sh: line 11: powerpc-tuxbox-linux-gnu-gcc: command not found
/tuxbox-cvs/cdk/linux-2.6.9/scripts/gcc-version.sh: line 12: powerpc-tuxbox-linux-gnu-gcc: command not found
make[2]: Entering directory `/tuxbox-cvs/cdk/linux-2.6.9'
CHK include/linux/version.h
UPD include/linux/version.h
make[2]: Leaving directory `/tuxbox-cvs/cdk/linux-2.6.9'
ln -sf /tuxbox-cvs/cdk/linux/include/asm-ppc /tuxbox-cvs/cdk/linux/include/asm
touch .linuxdir
make[1]: Leaving directory `/tuxbox-cvs/cdk'
( rm -rf binutils-2.15.91.0.2 || /bin/true ) && bunzip2 -cd Archive/binutils-2.15.91.0.2.tar.bz2 | tar -x && ( rm -rf build || /bin/true ) && mkdir build
cd build && \
CC=gcc \
CFLAGS="-g -O2" \
../binutils-2.15.91.0.2/configure \
--target=powerpc-tuxbox-linux-gnu \
--prefix=/tuxbox-cvs/root/cdk \
--disable-nls \
--nfp && \
make all all-gprof && \
make install
creating cache ./config.cache
checking host system type... i686-pc-linux-gnu
checking target system type... config.sub: invalid option --targetpowerpc-tuxbox-linux-gnu
Try `config.sub --help' for more information.
checking build system type... i686-pc-linux-gnu
checking for a BSD compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for gcc... gcc
checking whether the C compiler (gcc -g -O2 ) works... yes
checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking for gnatbind... no
checking whether compiler driver understands Ada... no
checking how to compare bootstrapped objects... cmp --ignore-initial=16 $$f1 $$f2
checking for correct version of gmp.h... no
checking for bison... bison
checking for bison... bison -y
checking for gm4... no
checking for gnum4... no
checking for m4... m4
checking for flex... flex
checking for flex... flex
checking for makeinfo... makeinfo
checking for i686-pc-linux-gnu-ar... no
checking for ar... ar
checking for i686-pc-linux-gnu-as... no
checking for as... as
checking for i686-pc-linux-gnu-dlltool... no
checking for dlltool... dlltool
checking for i686-pc-linux-gnu-ld... no
checking for ld... ld
checking for i686-pc-linux-gnu-nm... no
checking for nm... nm
checking for i686-pc-linux-gnu-ranlib... no
checking for ranlib... ranlib
checking for i686-pc-linux-gnu-windres... no
checking for windres... windres
checking for i686-pc-linux-gnu-objcopy... no
checking for objcopy... objcopy
checking for i686-pc-linux-gnu-objdump... no
checking for objdump... objdump
checking for --targetpowerpc-tuxbox-linux-gnu-ar... no
../binutils-2.15.91.0.2/configure: line 4183: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-as... no
../binutils-2.15.91.0.2/configure: line 4255: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-dlltool... no
../binutils-2.15.91.0.2/configure: line 4327: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-ld... no
../binutils-2.15.91.0.2/configure: line 4399: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-nm... no
../binutils-2.15.91.0.2/configure: line 4471: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-ranlib... no
../binutils-2.15.91.0.2/configure: line 4543: test: too many arguments
checking for --targetpowerpc-tuxbox-linux-gnu-windres... no
../binutils-2.15.91.0.2/configure: line 4615: test: too many arguments
checking whether to enable maintainer-specific portions of Makefiles... no
checking if symbolic links between directories work... yes
updating cache ./config.cache
creating ./config.status
creating Makefile
sed: file conftest.s1 line 64: unterminated `s' command
make[1]: Entering directory `/tuxbox-cvs/cdk/build'
make[1]: *** No rule to make target `all'. Stop.
make[1]: Leaving directory `/tuxbox-cvs/cdk/build'
make: *** [.binutils] Error 2
[root@localhost cdk]#

maybe some know what i did wrong or what packages i missed. thank you
rolks is offline   Reply With Quote
 Old 26th July, 2008, 12:05 PM   #13
Newbie
 
Join Date: Jul 2008
Posts: 15
Thanks: 8
Thanked 1 Time in 1 Post
Downloads: 2
Uploads: 0
rolks is on a distinguished road
Default

tried with english interface and endup with another error:
Location: http://switch.dl.sourceforge.net/sou...-4.1.3.tar.bz2 [following]
--2008-07-26 12:46:30-- http://switch.dl.sourceforge.net/sou...-4.1.3.tar.bz2
Connecting to switch.dl.sourceforge.net|130.59.138.20|:80... connected.
HTTP request sent, awaiting response... 302 Found
Location: http://prdownloads.sourceforge.net/l...ourceforge.net [following]
20 redirections exceeded.
--2008-07-26 12:46:30-- http://tuxbox.berlios.de/pub/tuxbox/...-4.1.3.tar.bz2
Resolving tuxbox.berlios.de... 195.37.77.138
Connecting to tuxbox.berlios.de|195.37.77.138|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2008-07-26 12:46:30 ERROR 404: Not Found.

make: *** [Archive/libungif-4.1.3.tar.bz2] Error 1
[root@localhost cdk]# make dreamboximage_root
rolks is offline   Reply With Quote
 Old 26th July, 2008, 01:45 PM   #14
Administrator
 
Devilfish's Avatar
 
Join Date: Feb 2008
Location: /cdk
Receivers: Sky+ HD
Posts: 9,007
Thanks: 1,038
Thanked 8,538 Times in 1,848 Posts
Recipes: 2
Downloads: 270
Uploads: 112
Devilfish has a spectacular aura aboutDevilfish has a spectacular aura about
Default

It looks like libungif-4.1.3.tar.bz2 file is missing.

You can download it from here...

http://downloads.sourceforge.net/gif...0&big_mirror=0

..put it int he Archive folder along with all the other .tar.bz files and do a make dreamboximage_root again.
__________________
Don't really care for some of the sections on Digital Kaos?
Would you prefer if they were hidden from your view?
Exclude them in your UserCP Options (at the bottom) and they'll be gone forever!

### Selective Forum Filter ###


--------------------

Get Digital Kaos on your iPhone with Tapatalk
Devilfish is offline   Reply With Quote
The Following User Says Thank You to Devilfish For This Useful Post:
rolks (26th July, 2008)
 Old 26th July, 2008, 01:51 PM   #15
Newbie
 
Join Date: Jul 2008
Posts: 15
Thanks: 8
Thanked 1 Time in 1 Post
Downloads: 2
Uploads: 0
rolks is on a distinguished road
Default

how to tell to "make dreambox_image" to get it from what mirror or it can be indalled before? thanks
rolks is offline   Reply With Quote
Reply
» Digital Kaos > Cable > Cable Dreambox > Dreambox Developement


Bookmarks

Tags
create, dm500, dreambox, guide, image

Thread Tools
Display Modes


LinkBacks (?)
LinkBack to this Thread: http://www.digital-kaos.co.uk/forums/f70/guide-how-create-dm500-dreambox-image-488/
Posted By For Type Date
To Nabilo This thread Refback 19th July, 2009 12:12 AM
To Nabilo This thread Refback 16th June, 2009 09:59 PM
To Nabilo This thread Refback 14th June, 2009 07:23 AM
SAT2YOU FORUM > Guide: How to Create a DM500 Dreambox Image This thread Refback 24th April, 2009 08:09 AM
Guide: How to Create a DM500 Dreambox Image - SAT2YOU FORUM This thread Refback 2nd April, 2009 11:31 AM
compiling dreambox dm500 image under ubuntu linux | tipok.org.ua This thread Refback 15th February, 2009 03:34 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
DM500 ### Digital Kaos v1 Dreambox Image for DM500 C/S/T ### Devilfish Cable Dreambox 550 31st July, 2010 10:30 PM
Guide: How to Create a DM500+ or DM600-PVR Image Devilfish Dreambox Developement 39 24th March, 2010 05:52 PM
dm500 image create rolks Sat Dreambox 2 13th January, 2009 09:18 AM
How to Create your own Dbox image?? rabby Dbox2 11 23rd August, 2008 09:01 PM


All times are GMT +1. The time now is 09:51 AM.

This forum is best viewed with
Spreadfirefox Affiliate Button

Powered by vBulletin® Version 3.8.5
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.1

Digital Kaos does not condone any illegal operations, including obtaining premium tv for free. Digital Kaos does not accept responsibilty for the loss of any equipment used.
Everything discussed on this forum is for experimental and educational purposes only. Use the information at your own risk.