2011-10-08 21:02:22 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include "libc.h"
|
|
|
|
|
2013-04-05 02:12:35 +08:00
|
|
|
#ifdef RT_USING_PTHREADS
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2014-12-06 15:26:19 +08:00
|
|
|
#ifdef RT_USING_DFS
|
|
|
|
#include <dfs_posix.h>
|
|
|
|
|
|
|
|
#ifdef RT_USING_DFS_DEVFS
|
|
|
|
#include <devfs.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-03-26 19:58:05 +08:00
|
|
|
int libc_system_init(void)
|
2011-10-08 21:02:22 +08:00
|
|
|
{
|
2013-04-05 02:12:35 +08:00
|
|
|
#ifdef RT_USING_DFS
|
2015-03-26 19:58:05 +08:00
|
|
|
int fd;
|
|
|
|
struct rt_device *console_dev;
|
2011-10-08 21:02:22 +08:00
|
|
|
|
|
|
|
#ifndef RT_USING_DFS_DEVFS
|
|
|
|
#error Please enable devfs by defining RT_USING_DFS_DEVFS in rtconfig.h
|
|
|
|
#endif
|
|
|
|
|
2015-03-26 19:58:05 +08:00
|
|
|
console_dev = rt_console_get_device();
|
|
|
|
if (console_dev)
|
|
|
|
{
|
|
|
|
/* initialize console device */
|
|
|
|
rt_console_init(console_dev->parent.name);
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2015-03-26 19:58:05 +08:00
|
|
|
/* 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;
|
|
|
|
}
|
2012-02-18 00:26:49 +08:00
|
|
|
#endif
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2015-03-26 19:58:05 +08:00
|
|
|
/* set PATH and HOME */
|
|
|
|
putenv("PATH=/bin");
|
|
|
|
putenv("HOME=/home");
|
2011-10-08 21:02:22 +08:00
|
|
|
|
|
|
|
#ifdef RT_USING_PTHREADS
|
2015-03-26 19:58:05 +08:00
|
|
|
pthread_system_init();
|
2011-10-08 21:02:22 +08:00
|
|
|
#endif
|
|
|
|
}
|
2015-03-26 19:58:05 +08:00
|
|
|
INIT_COMPONENT_EXPORT(libc_system_init);
|