siemens / kas

Setup tool for bitbake based projects
MIT License
353 stars 144 forks source link

Not able to send extra_bitbake_args to bitbake #37

Closed sathishvslabs closed 3 years ago

sathishvslabs commented 3 years ago

Hi, We want to create a download mirror as part of our kas build procedure. So we want to send --runonly=fetchbitbake argument as part of our kas build procedure. kas build <yml file> --runonly=fetch

But the command fails with kas: error: unrecognized arguments: --runonly=fetch So tried with just any args (ex: -n). This also fails. So, Are we doing something wrong? What is the proper command to send extra arguments to the bitbake command?

sathishvslabs commented 3 years ago

Ok... We could able to make it run using the command kas build <yml file> -- --runonly=fetch . Change was to add -- argument breaker before providing the bitbake extra argument.