Page 1 of 1

COMPONENT_EMBED_FILES, which separator?

Posted: Sat May 06, 2017 8:55 pm
by kurtzweber
Hi

probably a stupid question but I cannot find the correct way to specify more than a file in the component.mk to be embedded...

if I add two lines:
COMPONENT_EMBED_FILES := a.bin
COMPONENT_EMBED_FILES := b.bin

it only embed the last, while if I try to do something like:

COMPONENT_EMBED_FILES := a.bin,b.bin
COMPONENT_EMBED_FILES := a.bin;b.bin
...

I always get an error...
Thanks!

Re: COMPONENT_EMBED_FILES, which separator?

Posted: Sat May 06, 2017 8:57 pm
by kurtzweber
well it was very easy... :oops:

SPACE is the answer:

COMPONENT_EMBED_FILES := a.bin b.bin
;)