Kconfig 383 B

1234567891011121314151617
  1. config 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. if DM_FUZZING_ENGINE
  8. config FUZZING_ENGINE_SANDBOX
  9. bool "Sanbox fuzzing engine"
  10. depends on SANDBOX
  11. default y
  12. help
  13. Enable fuzzing engine for sandbox.
  14. endif