-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Menuconfig is not saved #79
Comments
Same problem. |
After discussion with @me-no-dev the propper way is to modify |
In that case, what's the point of the command: |
Maybe @me-no-dev can answer that. |
For some params you have default values, which will overwrite the values you set, but not all. The point is to have default values for espressif build make it easier. If you want to change some value which exist in default.xxx you just have to remove it or comment out in default.xxx file. It is rare case when users edit values in menuconfig, but its common case (CI) when its required to use default values. |
Seems like the rather sparse It's very counterintuitive to have to modify files in The real issue is that changes to |
|
Settings in menuconfig are not saved and will not take effect when built.
Steps to reproduce:
./build.sh -t esp32 -b menuconfig
Change any config and save.
./build.sh -t esp32 -b menuconfig
Observe that the previous setting is on the default value.
Optionally - build and observe that the setting did not take any effect, and is not mentioned in the built sdkconfig.
I have modified a section in sdkconfig and tried to build libs without menuconfig but it was built with the default log level set to error.
The next thing I tried (with the manual changes in sdkconfig) was that I have placed some debug outputs
sed -n "218 p" sdkconfig
around line 118 of thebuild.sh
and before therm -rf build sdkconfig
The simplified code looks like this:
And the output from the sed+menuconfig:
What is strange is that even though the sdkconfig is deleted before calling idf.py menuconfig, I can see the manual change in the menuconfig, but after saving it without change, the settings goes back to defaults.
The text was updated successfully, but these errors were encountered: