2014-11-07 22:03:03 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_BASTEST
|
|
|
|
bool "Setup Test Files for BAS"
|
|
|
|
default n
|
|
|
|
depends on INTERPRETERS_BAS
|
2014-11-08 14:19:17 +01:00
|
|
|
select FS_ROMFS
|
2014-11-07 22:03:03 +01:00
|
|
|
---help---
|
2014-11-09 15:20:19 +01:00
|
|
|
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.
|
2014-11-07 22:03:03 +01:00
|
|
|
|
|
|
|
if EXAMPLES_BASTEST
|
|
|
|
|
|
|
|
config EXAMPLES_BASTEST_DEVMINOR
|
|
|
|
int "ROMFS Minor Device Number"
|
|
|
|
default 0
|
|
|
|
---help---
|
2014-11-09 15:20:19 +01:00
|
|
|
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
|
2014-11-07 22:03:03 +01:00
|
|
|
|
|
|
|
config EXAMPLES_BASTEST_DEVPATH
|
|
|
|
string "ROMFS Device Path"
|
|
|
|
default "/dev/ram0"
|
|
|
|
---help---
|
2014-11-09 15:20:19 +01:00
|
|
|
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"
|
2014-11-07 22:03:03 +01:00
|
|
|
|
|
|
|
endif
|