Ticket #1543: pr1543-1.diff

File pr1543-1.diff, 1000 bytes (added by Chris Johns, on 06/02/10 at 21:40:11)

Change the default mount table entries.

  • cpukit/sapi/include/confdefs.h

    RCS file: /usr1/CVS/rtems/cpukit/sapi/include/confdefs.h,v
    retrieving revision 1.134
    diff -p -u -r1.134 confdefs.h
    rtems_fs_init_functions_t rtems_fs_in 
    447447
    448448  #ifndef CONFIGURE_HAS_OWN_MOUNT_TABLE
    449449    const rtems_filesystem_mount_table_t configuration_mount_table = {
    450       #ifdef CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
    451         "imfs",
    452       #elif defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
     450      #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
    453451        "devfs",
    454       #else  /* using miniIMFS as base filesystem */
     452      #elif defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
    455453        "mimfs",
     454      #else  /* using IMFS as base filesystem */
     455        "imfs",
    456456      #endif
    457457      RTEMS_FILESYSTEM_READ_WRITE,
    458458      NULL,