Hello Rogério, (I include your message that didn't make it to the BTS because of a typo in the address) >Well, I tried your patch with mindi from testing (etch) and it worked >fine for creation and verification of the backups. I think that a new >version could be uploaded to the repository. >The patch I'm referring to is at the following address: ><http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324302;msg=25>. Did you try do make a CD with a FAILSAFE kernel while using a 2.6 kernel on your system ? As I explained, it doesn't work for me with this patch. >OTOH, I couldn't apply the patch suggested by Thierry, because it didn't >apply cleanly... :-( Sorry, I had made the diff against an older version of mindi (the patch applies, though, with an offset of 9 lines, so I had thought it was OK.) If it has to apply perfectly (which is definitely cleaner), here it is again... >I think, BTW, that we could merge the bugs 324302 and 329246. Is there >anyone opposed to that? It's OK for me. >Thanks for all efforts, Rogério Brito.
------------ ALICE HAUT DEBIT A 29,95 EUR/MOIS ------------ ALICEBOX, l'offre Internet tout en 1 : ADSL, téléphonie, modem Wi-Fi et en exclusivité la hotline gratuite 24h/24 ! Soumis à conditions. Pour en profiter cliquez ici http://abonnement.aliceadsl.fr
--- mindi.orig 2005-10-10 16:00:01.000000000 +0200 +++ mindi_patched 2005-10-10 16:03:14.000000000 +0200 @@ -2265,18 +2265,14 @@ main_fname=$1 read incoming while [ "$incoming" != "" ] ; do - incoming=`echo "$incoming" | tr -s ' ' '\t'` - i=`echo "$incoming" | cut -f2` - if [ "$i" = "=>" ] ; then -# was cut -f1,3 - for fname in `echo "$incoming" | cut -f1,3` ; do - fname=`LocateFile $fname` - for f in $fname ; do - [ -e "$f" ] && echo $f - done - done - fi - read incoming + incoming=`echo "$incoming" |sed 's/(.*)//; s/[[:blank:]]//g; /=>$/d; s/=>/ /'` + for fname in `echo "$incoming"` ; do + fname=`LocateFile $fname` + for f in $fname ; do + [ -e "$f" ] && echo $f + done + done + read incoming done }