summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/Kconfig
blob: 2d22255942e40de02cfacfdb5f81e20c190b98b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# 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 FS_ROMFS && INTERPRETERS_BAS
	---help---
		Mount the ROMFS file system containing the BAS test files at
		/mnt/romfs.  This selection depends both on INTERPRETER_BAS to provide
		the BASIC interpreter and and upon FS_ROMFS to provide support for the
		ROMFS file system.

		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

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

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"

endif