Building image builder with github workflow?

How can I automatically create the image builder for a target in the OpenWrt directory? I would like to add this to a GitHub workflow.

I thought I could do something like:

make CONFIG_TARGET_ath79=y CONFIG_IB=y CONFIG_ALL_KMODS=y IGNORE_ERRORS=y

However, this always just opens the imagebuilder window (make menuconfig).

You need to seed the config using something like this:

echo CONFIG_TARGET_ath79=y > .config
echo CONFIG_IB=y >> .config 
echo CONFIG_WHATEVER=y >> .config
make defconfig
make
1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.