Development: howto build complete image dm500..(Detail and photos)

We know howto build complete image dm500s Cvs enigma
First, we need special programs for linux I used ubuntu
The programs are

Code:
- 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)
Now we install the program and how easy..go to systeme Then Gesttionnaire paquets synaptic and Used feature recharch example to install eautomak look the pic




look now eautomak is ok




Now we are starting to build the image go to Applications—>Accessories—>Terminal And type the following command to create file

Code:
mkdir dreambox
look the pic




now following command

Code:
cd dreambox
Code:
export CVS_RSH=ssh
Now the building of enigma Cvs

Code:
cvs -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox -z3 co -P -rdreambox .
not: It very well to the point




following command

Code:
cd cdk
Code:
chmod 755 prepare
look


COLOR="Blue"]Now we will change the file prepare To choose the type of body image go to dreambox/cdk look pic [/color]




open the file prepare




Change your settings for the red

Code:
#!/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 dm500
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
look the pic