summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bastest/Kconfig')
-rw-r--r--apps/examples/bastest/Kconfig20
1 files changed, 13 insertions, 7 deletions
diff --git a/apps/examples/bastest/Kconfig b/apps/examples/bastest/Kconfig
index 9685ae012..f6c49e4a8 100644
--- a/apps/examples/bastest/Kconfig
+++ b/apps/examples/bastest/Kconfig
@@ -9,7 +9,11 @@ config EXAMPLES_BASTEST
depends on INTERPRETERS_BAS
select FS_ROMFS
---help---
- Mount the ROMFS file system containing the BAS test files at /mnt/romfs.
+ Mount the ROMFS file system containing the BAS test files at
+ /mnt/romfs.
+
+ The logic in certain tests (test33.bas and test36.bas will also fail
+ if there is no writable file system mount at /tmp.
if EXAMPLES_BASTEST
@@ -17,16 +21,18 @@ config EXAMPLES_BASTEST_DEVMINOR
int "ROMFS Minor Device Number"
default 0
---help---
- The minor device number of the ROMFS block. For example, the N in /dev/ramN.
- Used for registering the RAM block driver that will hold the ROMFS file system
- containing the BASIC files to be tested. Default: 0
+ The minor device number of the ROMFS block. For example, the N in
+ /dev/ramN. Used for registering the RAM block driver that will hold
+ the ROMFS file system containing the BASIC files to be tested.
+ Default: 0
config EXAMPLES_BASTEST_DEVPATH
string "ROMFS Device Path"
default "/dev/ram0"
---help---
- The path to the ROMFS block driver device. This must match EXAMPLES_BASTEST_DEVMINOR.
- Used for registering the RAM block driver that will hold the ROMFS file system
- containing the BASIC files to be tested. Default: "/dev/ram0"
+ The path to the ROMFS block driver device. This must match
+ EXAMPLES_BASTEST_DEVMINOR. Used for registering the RAM block driver
+ that will hold the ROMFS file system containing the BASIC files to
+ be tested. Default: "/dev/ram0"
endif