Zepp-Hanzj opened a new pull request, #18963:
URL: https://github.com/apache/nuttx/pull/18963
## Summary
- Document the `tee` system command page that was previously blank.
- Add configuration, usage, options, arguments, examples, and notes backed
by `apps/system/tee/tee.c` and `apps/system/tee/Kconfig`.
## Impact
- Documentation only.
- No runtime behavior changes.
## Testing
- Verified source behavior in `apps/system/tee/tee.c` and configuration in
`apps/system/tee/Kconfig`.
- Ran focused RST parse:
```bash
python3 - <<'PY'
from pathlib import Path
from docutils.core import publish_doctree
path = Path('Documentation/applications/system/tee/index.rst')
publish_doctree(path.read_text(), source_path=str(path),
settings_overrides={'halt_level': 2, 'report_level': 2})
print('docutils OK')
PY
```
- Ran full documentation dummy build:
```bash
cd Documentation
PYTHONPATH=_extensions python3 -m sphinx -W -b dummy .
/tmp/nuttx-docs-build-tee
```
## PR verification Self-Check
- [x] The change is limited to documentation.
- [x] The documented behavior is source-backed.
- [x] The documentation build completed without warnings.
- [x] No external dependency or board-specific setup is required.
Refs #11081
--
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]