From dd6bca4b13853bacfce798d176a123e72f765437 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 11 Aug 2014 19:27:48 -0600 Subject: Add a Sudoku game --- apps/system/sudoku/Kconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 apps/system/sudoku/Kconfig (limited to 'apps/system/sudoku/Kconfig') diff --git a/apps/system/sudoku/Kconfig b/apps/system/sudoku/Kconfig new file mode 100644 index 000000000..cdb28f4f3 --- /dev/null +++ b/apps/system/sudoku/Kconfig @@ -0,0 +1,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 -- cgit v1.2.3