summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/unix/posix/startup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-30 14:01:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-30 14:01:19 +0000
commit8f95b5f67b59eef4aa392b6be72f59af720d9ea2 (patch)
treeaf9b523e50efac2535bb4adc90d162f84ec78284 /c/src/lib/libbsp/unix/posix/startup
parentRenamed crt0.o to crt0_go32.o to avoid build problems. (diff)
downloadrtems-8f95b5f67b59eef4aa392b6be72f59af720d9ea2.tar.bz2
Moved bsp_postdriver_hook() to a shared file and made it a common
component.
Diffstat (limited to 'c/src/lib/libbsp/unix/posix/startup')
-rw-r--r--c/src/lib/libbsp/unix/posix/startup/bspstart.c26
1 files changed, 2 insertions, 24 deletions
diff --git a/c/src/lib/libbsp/unix/posix/startup/bspstart.c b/c/src/lib/libbsp/unix/posix/startup/bspstart.c
index c4d3a7937b..be3f9373fb 100644
--- a/c/src/lib/libbsp/unix/posix/startup/bspstart.c
+++ b/c/src/lib/libbsp/unix/posix/startup/bspstart.c
@@ -24,7 +24,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include <fcntl.h>
/* for sbrk prototype in linux */
#if defined(__linux__)
@@ -176,34 +175,13 @@ bsp_pretasking_hook(void)
}
/*
- * After drivers are setup, register some "filenames"
- * and open stdin, stdout, stderr files
- *
- * Newlib will automatically associate the files with these
- * (it hardcodes the numbers)
+ * DO NOT Use the shared bsp_postdriver_hook() implementation
*/
void
bsp_postdriver_hook(void)
{
-#if 0
- int stdin_fd, stdout_fd, stderr_fd;
- int error_code;
-
- error_code = 'S' << 24 | 'T' << 16;
-
- if ((stdin_fd = __rtems_open("/dev/console", O_RDONLY, 0)) == -1)
- rtems_fatal_error_occurred( error_code | 'D' << 8 | '0' );
-
- if ((stdout_fd = __rtems_open("/dev/console", O_WRONLY, 0)) == -1)
- rtems_fatal_error_occurred( error_code | 'D' << 8 | '1' );
-
- if ((stderr_fd = __rtems_open("/dev/console", O_WRONLY, 0)) == -1)
- rtems_fatal_error_occurred( error_code | 'D' << 8 | '2' );
-
- if ((stdin_fd != 0) || (stdout_fd != 1) || (stderr_fd != 2))
- rtems_fatal_error_occurred( error_code | 'I' << 8 | 'O' );
-#endif
+ return;
}
/*