Correct spelling: MOUNTPOINT not MOUNTPOUNT. Numerous places. Some are problems. From Woohan Lee

This commit is contained in:
Gregory Nutt 2014-12-01 06:41:30 -06:00
parent 9edbc5a8f5
commit 76906110b0
10 changed files with 17 additions and 17 deletions

View File

@ -859,7 +859,7 @@ done
<li> <li>
By default, the contents of rcS script are: By default, the contents of rcS script are:
<ul><pre> <ul><pre>
# Create a RAMDISK and mount it at XXXRDMOUNTPOUNTXXX # Create a RAMDISK and mount it at XXXRDMOUNTPOINTXXX
mkrd -m 1 -s 512 1024 mkrd -m 1 -s 512 1024
mkfatfs /dev/ram1 mkfatfs /dev/ram1
@ -3425,11 +3425,11 @@ set FOOBAR ABC_${FOO}_${BAR}
By default, this <code>rcS</code> start-up script contains the following logic: By default, this <code>rcS</code> start-up script contains the following logic:
</p> </p>
<ul><pre> <ul><pre>
# Create a RAMDISK and mount it at XXXRDMOUNTPOUNTXXX # Create a RAMDISK and mount it at XXXRDMOUNTPOINTXXX
mkrd -m XXXMKRDMINORXXX -s XXMKRDSECTORSIZEXXX XXMKRDBLOCKSXXX mkrd -m XXXMKRDMINORXXX -s XXMKRDSECTORSIZEXXX XXMKRDBLOCKSXXX
mkfatfs /dev/ramXXXMKRDMINORXXX mkfatfs /dev/ramXXXMKRDMINORXXX
mount -t vfat /dev/ramXXXMKRDMINORXXX XXXRDMOUNTPOUNTXXX mount -t vfat /dev/ramXXXMKRDMINORXXX XXXRDMOUNTPOINTXXX
</pre></ul> </pre></ul>
<p> <p>
@ -3451,7 +3451,7 @@ mount -t vfat /dev/ramXXXMKRDMINORXXX XXXRDMOUNTPOUNTXXX
</p> </p>
<li> <li>
<p> <p>
<code>XXXRDMOUNTPOUNTXXX</code> will become the configured mount point. <code>XXXRDMOUNTPOINTXXX</code> will become the configured mount point.
Default: <code>/etc</code> Default: <code>/etc</code>
</p> </p>
</ul> </ul>

View File

@ -695,7 +695,7 @@ CONFIG_NSH_BUILTIN_APPS=y
CONFIG_NSH_CMDOPT_DF_H=y CONFIG_NSH_CMDOPT_DF_H=y
CONFIG_NSH_CODECS_BUFSIZE=128 CONFIG_NSH_CODECS_BUFSIZE=128
CONFIG_NSH_CMDOPT_HEXDUMP=y CONFIG_NSH_CMDOPT_HEXDUMP=y
CONFIG_NSH_PROC_MOUNTPOUNT="/proc" CONFIG_NSH_PROC_MOUNTPOINT="/proc"
CONFIG_NSH_FILEIOSIZE=512 CONFIG_NSH_FILEIOSIZE=512
# #

View File

@ -904,7 +904,7 @@ CONFIG_NSH_DISABLE_LOSETUP=y
CONFIG_NSH_CMDOPT_DF_H=y CONFIG_NSH_CMDOPT_DF_H=y
CONFIG_NSH_CODECS_BUFSIZE=128 CONFIG_NSH_CODECS_BUFSIZE=128
CONFIG_NSH_CMDOPT_HEXDUMP=y CONFIG_NSH_CMDOPT_HEXDUMP=y
CONFIG_NSH_PROC_MOUNTPOUNT="/proc" CONFIG_NSH_PROC_MOUNTPOINT="/proc"
CONFIG_NSH_FILEIOSIZE=2048 CONFIG_NSH_FILEIOSIZE=2048
CONFIG_NSH_STRERROR=y CONFIG_NSH_STRERROR=y

View File

@ -1284,7 +1284,7 @@ CONFIG_NSH_BUILTIN_APPS=y
# CONFIG_NSH_CMDOPT_DF_H is not set # CONFIG_NSH_CMDOPT_DF_H is not set
CONFIG_NSH_CODECS_BUFSIZE=128 CONFIG_NSH_CODECS_BUFSIZE=128
# CONFIG_NSH_CMDOPT_HEXDUMP is not set # CONFIG_NSH_CMDOPT_HEXDUMP is not set
CONFIG_NSH_PROC_MOUNTPOUNT="/proc" CONFIG_NSH_PROC_MOUNTPOINT="/proc"
CONFIG_NSH_FILEIOSIZE=512 CONFIG_NSH_FILEIOSIZE=512
# #

View File

@ -1261,7 +1261,7 @@ CONFIG_NSH_BUILTIN_APPS=y
# CONFIG_NSH_CMDOPT_DF_H is not set # CONFIG_NSH_CMDOPT_DF_H is not set
CONFIG_NSH_CODECS_BUFSIZE=128 CONFIG_NSH_CODECS_BUFSIZE=128
# CONFIG_NSH_CMDOPT_HEXDUMP is not set # CONFIG_NSH_CMDOPT_HEXDUMP is not set
CONFIG_NSH_PROC_MOUNTPOUNT="/proc" CONFIG_NSH_PROC_MOUNTPOINT="/proc"
CONFIG_NSH_FILEIOSIZE=512 CONFIG_NSH_FILEIOSIZE=512
# #

View File

@ -892,7 +892,7 @@ CONFIG_NSH_BUILTIN_APPS=y
CONFIG_NSH_CMDOPT_DF_H=y CONFIG_NSH_CMDOPT_DF_H=y
CONFIG_NSH_CODECS_BUFSIZE=128 CONFIG_NSH_CODECS_BUFSIZE=128
CONFIG_NSH_CMDOPT_HEXDUMP=y CONFIG_NSH_CMDOPT_HEXDUMP=y
CONFIG_NSH_PROC_MOUNTPOUNT="/proc" CONFIG_NSH_PROC_MOUNTPOINT="/proc"
CONFIG_NSH_FILEIOSIZE=512 CONFIG_NSH_FILEIOSIZE=512
CONFIG_NSH_LINELEN=64 CONFIG_NSH_LINELEN=64
# CONFIG_NSH_DISABLE_SEMICOLON is not set # CONFIG_NSH_DISABLE_SEMICOLON is not set

View File

@ -1,9 +1,9 @@
echo "Versatile Sensor Node V1.2, www.netClamps.com" echo "Versatile Sensor Node V1.2, www.netClamps.com"
# Create a RAMDISK and mount it at XXXRDMOUNTPOUNTXXX # Create a RAMDISK and mount it at XXXRDMOUNTPOINTXXX
#mkrd -m XXXMKRDMINORXXX -s XXMKRDSECTORSIZEXXX XXMKRDBLOCKSXXX #mkrd -m XXXMKRDMINORXXX -s XXMKRDSECTORSIZEXXX XXMKRDBLOCKSXXX
#mkfatfs /dev/ramXXXMKRDMINORXXX #mkfatfs /dev/ramXXXMKRDMINORXXX
#mount -t vfat /dev/ramXXXMKRDMINORXXX XXXRDMOUNTPOUNTXXX #mount -t vfat /dev/ramXXXMKRDMINORXXX XXXRDMOUNTPOINTXXX
mount -t binfs /dev/ram0 /sbin mount -t binfs /dev/ram0 /sbin

View File

@ -51,7 +51,7 @@
#include "inode/inode.h" #include "inode/inode.h"
#ifndef CONFIG_DISABLE_MOUNTPOUNT #ifndef CONFIG_DISABLE_MOUNTPOINT
/**************************************************************************** /****************************************************************************
* Pre-processor Definitions * Pre-processor Definitions

View File

@ -205,7 +205,7 @@ struct mountpt_operations
* stats file stat(), file attributes, file truncation, etc. * stats file stat(), file attributes, file truncation, etc.
*/ */
}; };
#endif /* CONFIG_DISABLE_MOUNTPOUNT */ #endif /* CONFIG_DISABLE_MOUNTPOINT */
/* Named OS resources are also maintained by the VFS. This includes: /* Named OS resources are also maintained by the VFS. This includes:
* *
@ -224,7 +224,7 @@ struct mountpt_operations
union inode_ops_u union inode_ops_u
{ {
FAR const struct file_operations *i_ops; /* Driver operations for inode */ FAR const struct file_operations *i_ops; /* Driver operations for inode */
#ifndef CONFIG_DISABLE_MOUNTPOUNT #ifndef CONFIG_DISABLE_MOUNTPOINT
FAR const struct block_operations *i_bops; /* Block driver operations */ FAR const struct block_operations *i_bops; /* Block driver operations */
FAR const struct mountpt_operations *i_mops; /* Operations on a mountpoint */ FAR const struct mountpt_operations *i_mops; /* Operations on a mountpoint */
#endif #endif
@ -335,7 +335,7 @@ struct streamlist
* pseudo-file system. * pseudo-file system.
*/ */
#ifndef CONFIG_DISABLE_MOUNTPOUNT #ifndef CONFIG_DISABLE_MOUNTPOINT
struct statfs; /* Forward reference */ struct statfs; /* Forward reference */
typedef int (*foreach_mountpoint_t)(FAR const char *mountpoint, typedef int (*foreach_mountpoint_t)(FAR const char *mountpoint,
FAR struct statfs *statbuf, FAR struct statfs *statbuf,
@ -388,7 +388,7 @@ void fs_initialize(void);
* *
****************************************************************************/ ****************************************************************************/
#ifndef CONFIG_DISABLE_MOUNTPOUNT #ifndef CONFIG_DISABLE_MOUNTPOINT
int foreach_mountpoint(foreach_mountpoint_t handler, FAR void *arg); int foreach_mountpoint(foreach_mountpoint_t handler, FAR void *arg);
#endif #endif

View File

@ -242,7 +242,7 @@ cat $rcstemplate | \
sed -e "s,XXXMKRDMINORXXX,$fatdevno,g" | \ sed -e "s,XXXMKRDMINORXXX,$fatdevno,g" | \
sed -e "s,XXMKRDSECTORSIZEXXX,$fatsectsize,g" | \ sed -e "s,XXMKRDSECTORSIZEXXX,$fatsectsize,g" | \
sed -e "s,XXMKRDBLOCKSXXX,$fatnsectors,g" | \ sed -e "s,XXMKRDBLOCKSXXX,$fatnsectors,g" | \
sed -e "s,XXXRDMOUNTPOUNTXXX,$fatmpt,g" >$rcsfile sed -e "s,XXXRDMOUNTPOINTXXX,$fatmpt,g" >$rcsfile
# And install it at the specified relative location # And install it at the specified relative location