Hi,
Le Lundi 16 Octobre 2006 12:05, vous avez écrit :
I build a fr.ktl with more keys enabled. I send '--max-wait 600' option from isolinux.cfg this way: udpcparam=--max-wait_600 and my udpcfg_txt.sh rewrites it this way: echo "udpcparam=`echo $udpcparam | tr '_' ' '`" >> /udpcfg.txt so that I get udpcparam=--max-wait 600 in /udpcfg.txt
But it doesn't work.
You can normally specify long-options with an equals instead of a space. Have you tried udpcparam=--max-wait=600 in isolinux.cfg instead?
It works!
Thank you very much!