summaryrefslogtreecommitdiff
path: root/apps/system/sudoku/Kconfig
blob: cdb28f4f35d190c1bdac94b949147af80a7c9640 (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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config SYSTEM_SUDOKU
	bool "Sudoku"
	default n
	select SYSTEM_READLINE
	---help---
		Enable the sudoku game.

if SYSTEM_SUDOKU

config SYSTEM_SUDOKU_STACKSIZE
	int "Sudoku stack size"
	default 1536
	---help---
		The size of stack allocated for the Sudoku task.

config SYSTEM_SUDOKU_PRIORITY
	int "Sudoku priority"
	default 100
	---help---
		The priority of the Sudoku task.

endif