You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using make br/menuconfig
saved to default config file workspaces/$workspace/.config
does not override any buildroot config options contained in any of the packages.
The text was updated successfully, but these errors were encountered:
@realnedsanders the changes you make with menuconfig are not persisted and will be overridden the next time "make configure" runs.
Instead, add a file at ./overrides/buildroot/myconfig and add the configuration options there. BR2_PACKAGE_NANO=y for example.
Then run "make configure" and it will apply the overrides.
I'll rename this issue because I've been thinking of a way to detect what was changed in menuconfig and automatically store it under overrides. Please use the approach above in the meantime.
paralin
changed the title
Workspace buildroot config does not override packages
persist changes made with menuconfig to overrides/
Feb 24, 2023
Ahhh, that makes sense, I feel foolish.
Persisting the menuconfig options to overrides/ would be very convenient. diff <(sort workspaces/.config_$workspace/final/buildroot) <(sort workspaces/$workspace/.config)
after the user exits menuconfig might be useful.
Using
make br/menuconfig
saved to default config file
workspaces/$workspace/.config
does not override any buildroot config options contained in any of the packages.
The text was updated successfully, but these errors were encountered: