[OE-core] [RFC] rawcopy.py: Copy source file in image creation build folder

Leonardo Sandoval leonardo.sandoval.gonzalez at linux.intel.com
Thu Oct 22 14:02:18 UTC 2015


> +        else:
> +            dst = os.path.join(cr_workdir, source_params['file'])
> +            dd_cmd = "cp src dst"
> +            exec_cmd(dd_cmd)
>

the constructed dst variable is not being included into the dd_cmd, is 
it? I would expect something like

dd_cmd = "cp %s %s" % (src, dst)



More information about the Openembedded-core mailing list