28 lines
488 B
Plaintext
28 lines
488 B
Plaintext
|
#
|
||
|
# 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
|