yamt opened a new pull request, #7563:
URL: https://github.com/apache/incubator-nuttx/pull/7563
## Summary
group_setupidlefiles: fall back to /dev/null if /dev/console is disabled
## Impact
The warning may bother some users.
## Testing
Tested with a modified nsh on esp32-devkitc.
```
int main(int argc, FAR char *argv[])
{
+ int fd = open("/dev/null", O_RDWR);
+ _info("hey _info %d\n", fd);
+ write(1, "hey stdout\n", 11);
+ write(2, "hey stderr\n", 11);
```
--
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]