aboutsummaryrefslogtreecommitdiff
path: root/apps/nshlib
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-08 02:10:56 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-09-08 02:10:56 +0000
commitddefd95e2889ca329155b3e51b1453dcea2fe85f (patch)
tree7b92632a73c33566e4e7c1bfc27cd0c6d93ea971 /apps/nshlib
parent5ac18ce1ae269e22de2515531b63b93b075dea3b (diff)
downloadpx4-firmware-ddefd95e2889ca329155b3e51b1453dcea2fe85f.tar.gz
px4-firmware-ddefd95e2889ca329155b3e51b1453dcea2fe85f.tar.bz2
px4-firmware-ddefd95e2889ca329155b3e51b1453dcea2fe85f.zip
More Shenzhou board logic
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@5111 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps/nshlib')
-rw-r--r--apps/nshlib/Kconfig9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/nshlib/Kconfig b/apps/nshlib/Kconfig
index b03dcdc90..fd1bb7cc8 100644
--- a/apps/nshlib/Kconfig
+++ b/apps/nshlib/Kconfig
@@ -242,9 +242,12 @@ config NSH_ROMFSSECTSIZE
increased if the ROMFS volume were to be become large. Any value
selected must be a power of 2.
+endif
+
config NSH_FATDEVNO
int "FAT block device minor number"
default 0
+ depends on FS_FAT
---help---
When the default rcS file used when NSH_ROMFSETC is selected, it
will mount a FAT FS under /tmp. This is the minor number of the FAT
@@ -253,6 +256,7 @@ config NSH_FATDEVNO
config NSH_FATSECTSIZE
int "FAT sector size"
default 512
+ depends on FS_FAT
---help---
When the default rcS file used when NSH_ROMFSETC is selected, it
will mount a FAT FS under /tmp. This is the sector size use with the
@@ -261,6 +265,7 @@ config NSH_FATSECTSIZE
config NSH_FATNSECTORS
int "FAT number of sectors"
default 1024
+ depends on FS_FAT
---help---
When the default rcS file used when NSH_ROMFSETC is selected, it
will mount a FAT FS under /tmp. This is the number of sectors to use
@@ -269,12 +274,12 @@ config NSH_FATNSECTORS
config NSH_FATMOUNTPT
string "FAT mount point"
- default 512
+ default "/tmp"
+ depends on FS_FAT
---help---
When the default rcS file used when NSH_ROMFSETC is selected, it
will mount a FAT FS under /tmp. This is the location where the FAT
FS will be mounted. Default is /tmp.
-endif
if NSH_LIBRARY
config NSH_CONSOLE