From ea8d19e727e7dd4ccc0ddcd3a498dadad2a9747a Mon Sep 17 00:00:00 2001 From: Kate Feng Date: Wed, 16 May 2012 12:25:27 -0500 Subject: [PATCH] RTEMS: Make nfsMount() globally visible. --- src/RTEMS/base/rtems_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RTEMS/base/rtems_init.c b/src/RTEMS/base/rtems_init.c index ad2f3dbe2..65bbe39c7 100644 --- a/src/RTEMS/base/rtems_init.c +++ b/src/RTEMS/base/rtems_init.c @@ -173,7 +173,7 @@ initialize_local_filesystem(char **argv) #if __RTEMS_MAJOR__>4 || \ (__RTEMS_MAJOR__==4 && __RTEMS_MINOR__>9) || \ (__RTEMS_MAJOR__==4 && __RTEMS_MINOR__==9 && __RTEMS_REVISION__==99) -static int +int nfsMount(char *uidhost, char *path, char *mntpoint) { int devl = strlen(uidhost) + strlen(path) + 2;