pietroalbini opened a new pull request, #13086: URL: https://github.com/apache/nuttx/pull/13086
## Summary The [Fast configuration changes](https://nuttx.apache.org/docs/latest/quickstart/configuring.html#fast-configuration-changes) section of the documentation mentions the need to run `make oldconfig` and `make olddefconfig` after changing the configuration with `kconfig-tweak`, but those commands are not exposed through CMake. This PR adds them, and adds a note in the documentation pointing users to it. ## Impact This will allow users compiling with CMake to properly use `kconfig-tweak`. ## Testing ```bash cmake -Bbuild -GNinja -DBOARD_CONFIG=fvp-armv8r-aarch32:nsh cd build cat .config | grep MKFATFS # Doesn't show anything :( kconfig-tweak --enable CONFIG_FS_FAT cat .config | grep MKFATFS # Doesn't show anything :( cmake --build . -t olddefconfig cat .config | grep MKFATFS # Show the newly available option! ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
