| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 | 
							- # Kconfig - Actions input menager
 
- #
 
- # Copyright (c) 2016 Actions Corporation
 
- #
 
- # SPDX-License-Identifier: Apache-2.0
 
- #
 
- menuconfig INPUT
 
- 	bool
 
- 	prompt "Input"
 
- 	select INPUT_MANAGER
 
- 	default n
 
- 	help
 
- 	This option enables actions input 
 
- 	
 
- config INPUT_MANAGER
 
- 	bool
 
- 	prompt "INPUT manager Support"
 
- 	depends on INPUT
 
- 	select KEY
 
- 	default n
 
- 	help
 
- 	This option enables actions input manager.
 
- config INPUT_MUTIPLE_CLICK
 
- 	bool
 
- 	prompt "INPUT mutiple click Support"
 
- 	depends on INPUT_MANAGER
 
- 	default n
 
- 	help
 
- 	This option enables actions input manager.
 
- config INPUT_POINTER
 
- 	bool
 
- 	prompt "INPUT Pointer Support"
 
- 	depends on INPUT_MANAGER
 
- 	default n
 
- 	help
 
- 	This option enables actions input pointer.
 
- config INPUT_KEYPAD
 
- 	bool
 
- 	prompt "INPUT KEYPAD Support"
 
- 	depends on INPUT_MANAGER
 
- 	default n
 
- 	help
 
- 	This option enables actions input keypad.
 
- config INPUT_ENCODER
 
- 	bool
 
- 	prompt "INPUT ENCODER Support"
 
- 	depends on INPUT_MANAGER
 
- 	default n
 
- 	help
 
- 	This option enables actions input encoder.
 
 
  |