source: rtems/c/src/optman/no-filesystem.c @ 5129b24

4.104.114.84.95
Last change on this file since 5129b24 was 5129b24, checked in by Joel Sherrill <joel.sherrill@…>, on 06/20/07 at 22:19:38

2007-06-20 Ray Xu <rayx@…>

  • optman/Makefile.am, optman/preinstall.am: Add stubs for file system, console, and libio. This shrinks the memory requirements but Joel has not figured out how best to present this to application space.
  • optman/no-console.c, optman/no-filesystem.c, optman/no-libio.c: New files.
  • Property mode set to 100644
File size: 664 bytes
Line 
1/*
2 *  Stub Base file system initialization
3 *
4 *  COPYRIGHT (c) 1989-2007.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 */
12
13#if HAVE_CONFIG_H
14#include "config.h"
15#endif
16
17#include <rtems.h>
18#include <rtems/libio.h>
19#include <rtems/libio_.h>
20
21rtems_user_env_t  rtems_global_user_env;
22rtems_user_env_t *rtems_current_user_env;
23
24/*
25 *  rtems_filesystem_initialize
26 *
27 *  Initialize the foundation of the file system.  It is an empty function.
28 */
29
30void rtems_filesystem_initialize( void )
31{
32}
Note: See TracBrowser for help on using the repository browser.