# samples/Kconfig

menuconfig SAMPLES
	bool "Sample kernel code"
	help
	  You can build and test sample kernel code here.

if SAMPLES

config SAMPLE_KPROBES
	tristate "Build kprobes examples -- loadable modules only"
	depends on KPROBES && m
	default m if KPROBES=y
	help
	  This support if enabled, will be used to test the kprobes support.

	  To compile this kprobe test support as a module, choose M here: the
	  module will be called k-00x(x will be any number in 1,2,....9).
	  If in doubt, say "N"

	help
	  This builds sample kprobes modules.
config SAMPLE_RMM_PPGSTAT
       tristate "Build RMM ppgstat examples -- loadable modules only"
       depends on PROC_PPGSTAT  && m
       default m if PROC_PPGSTAT=y
       help
         This support if enabled, will be used to test the RMM ppgstat support.
         If in doubt, say "N"

       help
         This builds sample rmm modules.

config SAMPLE_MARKERS
	tristate "Build markers examples -- loadable modules only"
	depends on MARKERS && m
	help
	  This build markers example modules.

endif # SAMPLES
