#
# My kernel configuration
#

# menu "My kernel modules"

config MYKERNEL
	bool "My kernel modules"
	default y
	help
	This is my kernel modules

if MYKERNEL

config MYKERNEL_SAYHELLO
	bool "sayHello() function"
	default y
	help
	Simple function sayHello() that say "Hello, world".

config MYKERNEL_TASKINFO
	tristate "Display information about process"
	default m
	help
	This module display main informtion about process init or you want.

config MYKERNEL_LINFS
	bool "Simple filesystem called LinFS"
	default y
	help
	Add simple filesystem called LinFS.
	You can mount it by command "mount -t linfs none /linfs/"

config MYKERNEL_PROCFILES
	bool "Procfiles"
	default y
	help
	Create files in /proc/mykernel_test/:
	foo
	jiffies
	jiffies2
	seconds
	success

endif   # if MYKERNEL

# endmenu # MYKERNEL modules
