xiaoxiang781216 opened a new pull request, #3566: URL: https://github.com/apache/nuttx-apps/pull/3566
## Summary The non-standard `O_RDOK`/`O_WROK` aliases are being removed from NuttX's `include/fcntl.h` (separate nuttx PR). They were simply aliases for `O_RDONLY`/`O_WRONLY`. This change replaces all remaining `O_RDOK` usage in the apps repository with the standard `O_RDONLY`. Affected files: - `examples/configdata/configdata_main.c` - `nshlib/nsh_script.c` - `platform/mikroe-stm32f4/mikroe_configdata.c` ## Impact No functional change. `O_RDOK` was defined as `O_RDONLY`, so this is a pure text substitution that keeps the same behavior while using the standard POSIX flag name. Safe to merge independently — `O_RDONLY` is and remains defined in upstream nuttx. ## Testing - `tools/checkpatch.sh -f` passes on all three changed files. - Builds cleanly against apache/nuttx master. -- 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]
