usrNetNfsMount.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrNetNfsMount.c - Does the NFS mount */
  2. /* Copyright 1992 - 1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,05dec97,spm  added DHCP code review modifications
  7. */
  8. /*
  9. DESCRIPTION
  10. This file gets included when INCLUDE_NFS_MOUNT_ALL is defined. It makes a call 
  11. to nfsMountAll().
  12. NOMANUAL
  13. */
  14. void usrNetNfsMountAll ()
  15.     {
  16.     printf ("Mounting NFS file systems from host %s", sysBootParams.hostName);
  17.     if (sysBootParams.targetName[0] != EOS)
  18.        printf (" for target %s:n", sysBootParams.targetName);
  19.     else 
  20.        printf (":n"); 
  21.     nfsMountAll (sysBootParams.hostName, sysBootParams.targetName, FALSE); 
  22.     printf ("...donen"); 
  23.     }
  24.