1config DM_FUZZING_ENGINE
2	bool "Driver support for fuzzing engine devices"
3	depends on DM
4	help
5	  Enable driver model for fuzzing engine devices. This interface is
6	  used to get fuzzing inputs from a fuzzing engine.
7
8if DM_FUZZING_ENGINE
9
10config FUZZING_ENGINE_SANDBOX
11	bool "Sanbox fuzzing engine"
12	depends on SANDBOX
13	default y
14	help
15	  Enable fuzzing engine for sandbox.
16
17endif
18