Ich habe mal folgende Frage. Und zwar erstelle ich mit newmake ein Image.
Dazu checke ich aus, spiele ein diff ein und kompiliere.
Code: Alles auswählen
echo neu auschecken
export CVS_RSH=ssh
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox co -P .
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox co -r newmake -P cdk/newmake.files
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox co -f -r newmake `cat cdk/newmake.files`;;
###################################
########## configure ############
###################################
cd $IMAGE/tuxbox/head/cdk
./autogen.sh
./configure \
--prefix=$IMAGE/tuxbox \
--with-targetprefix=$TARGETPREFIX \
--with-cvsdir=$IMAGE/tuxbox/head \
--with-hostprefix=$HOSTPREFIX \
--with-flashprefix=$FLASHPREFIX \
--enable-flashrules \
--with-logosdir=$IMAGE/files/boot \
--with-ucodesdir=$IMAGE/files/ucodes \
--enable-ide \
--with-checkImage=rename \
--with-rootpartitionsize=$ROOTGROESSE \
--with-customizationsdir=$CONFIG \
--enable-lirc \
--enable-cdkVcInfo \
--enable-german-keymaps \
--enable-automount \
make flash-neutrino-squashfs-all
Update auschecken wollte ich so machen:
Code: Alles auswählen
echo updaten
export CVS_RSH=ssh
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox up -dP
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox co -r newmake -P cdk/newmake.files
cvs -z3 -d anoncvs@cvs.tuxbox.org:/cvs/tuxbox co -f -r newmake`cat cdk/newmake.files`
Ich hatte gedacht :
Code: Alles auswählen
make -C ~/newmake/tuxbox/head/apps/tuxbox/neutrino clean
make flash-semiclean
make depsclean
make flash-neutrino-squashfs-all
Ausserdem weiß ich dann ja noch nicht, ob eine Datei die ich vorher gedifft habe überschrieben wurde. Gibt es da nen log, der die geupdateten Datein listet ?
Danke schonmal für eure hilfe...
Grabber66