Skip to content

Add "build" helper as replacement to the makefile

This helper is similar to "make IMAGENAME", where you just "./build IMAGENAME". However, the advantage is that you can then add any kind of automotive-image-builder argument, which is very nice when changing defines compared to the "DEFINES=..." syntax when using make, in particular when it comes to escaping, multiple defines, etc.

So, instead of: make cs9-qemu-minimal-ostree@gdb.x86_64.qcow2 DEFINES='extra_rpms=["gdb"]' You would do: ./build cs9-qemu-minimal-ostree@gdb.x86_64.qcow2 --define 'extra_rpms=["gdb"]'

Merge request reports