Component named problem for CMI Command line Tool

  • Thread starter Thread starter best6553
  • Start date Start date
B

best6553

Hi , everyone.

I'm trying to use the Command line Tool to build the XP Embedded
Image ,
but this recently , I have a problem when I need to add a special
components named :
"Realtek AC'97 Audio for VIA (R) Audio Controller"

such as this kind of components, the name with $B!J(B'$B!K(Bsymbol
when I add this components I type :

cfg.Instances.Add 'inst:Realtek AC'97 Audio for VIA (R) Audio
Controller'

but It's seems doesn't accept by CMI command line tool because of the
name with the $B!J(B'$B!K(Bsymbol .

if I don't want to change my components name , how can I do ?

I had try to use as follow
--------------------------------------------------------------------------
cfg.Instances.Add 'inst:Realtek AC\'97 Audio for VIA (R) Audio
Controller'
cfg.Instances.Add "inst:Realtek AC'97 Audio for VIA (R) Audio
Controller"
cfg.Instances.Add `inst:Realtek AC\'97 Audio for VIA (R) Audio
Controller`
 
Have you tried the following:

cfg.Instances.Add 'inst:"Realtek AC'97 Audio for VIA (R) Audio Controller"'

Yes , Thank you for reply , I try to use the following

cfg.Instances.Add 'inst:"Realtek AC'97 Audio for VIA (R) Audio
Controller"'

but it doesn't work .
 
Back
Top