diff --git a/components/libc/newlib/libc.c b/components/libc/newlib/libc.c index 8f97e1c8b4f0602ee62a3829bc29e4e53ca007b5..96711784c266a21c9e4b4298f0ed8850e6257750 100644 --- a/components/libc/newlib/libc.c +++ b/components/libc/newlib/libc.c @@ -21,7 +21,6 @@ int libc_system_init(void) { #ifdef RT_USING_DFS - int fd; struct rt_device *console_dev; #ifndef RT_USING_DFS_DEVFS @@ -33,14 +32,6 @@ int libc_system_init(void) { /* initialize console device */ rt_console_init(console_dev->parent.name); - - /* open console as stdin/stdout/stderr */ - fd = open("/dev/console", O_RDONLY, 0); /* for stdin */ - fd = open("/dev/console", O_WRONLY, 0); /* for stdout */ - fd = open("/dev/console", O_WRONLY, 0); /* for stderr */ - - /* skip warning */ - fd = fd; } #endif diff --git a/components/libc/newlib/syscalls.c b/components/libc/newlib/syscalls.c index ff09a4fe80acb7ae8993d7cea6f864ec8e53f073..13c6a1ccefb7733dd1e3931a3d1f9bfa394f56f4 100644 --- a/components/libc/newlib/syscalls.c +++ b/components/libc/newlib/syscalls.c @@ -3,6 +3,8 @@ #include #include +#include + #ifdef RT_USING_DFS #include #endif @@ -12,6 +14,8 @@ #endif /* Reentrant versions of system calls. */ +static int __console_fd = -1; +int dump = 0; int _close_r(struct _reent *ptr, int fd) @@ -205,18 +209,14 @@ _wait_r(struct _reent *ptr, int *status) _ssize_t _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes) { - if (fd < 3) + if (fd == __console_fd) { -#ifdef RT_USING_CONSOLE rt_device_t console_device; extern rt_device_t rt_console_get_device(void); console_device = rt_console_get_device(); if (console_device != 0) rt_device_write(console_device, 0, buf, nbytes); return nbytes; -#else - return 0; -#endif } else { @@ -462,3 +462,24 @@ void abort(void) while (1); } + +int libc_console_init(void) +{ + /* open console as stdin/stdout/stderr */ + __console_fd = open("/dev/console", O_RDWR, 0); /* for stdin/stdout/stderr */ + + if (__console_fd >= 0) + { + _GLOBAL_REENT->_stdin = fdopen(__console_fd, "r"); + + _GLOBAL_REENT->_stdout = fdopen(__console_fd, "w"); + setvbuf(_GLOBAL_REENT->_stdout, NULL, _IONBF, 0); + _GLOBAL_REENT->_stderr = fdopen(__console_fd, "w"); + setvbuf(_GLOBAL_REENT->_stderr, NULL, _IONBF, 0); + + _GLOBAL_REENT->__sdidinit = 1; + } + + return 0; +} +INIT_APP_EXPORT(libc_console_init);