[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Config.in to Kconfig
I am having a problem porting Config.in in 2.4 to Kconfig in 2.6. I am
not sure of this syntax and I am making the chnage looking at stuff
already in Kconfig. Here are the lines from the
Config.in of 2.4 that need to be ported:-
###########################################
#My ext3cow support
tristate 'Ext3cow - journalling file system with copy-on-write
support' CONFIG_EXT3COW_FS
define_bool CONFIG_JBD $CONFIG_EXT3COW_FS
###########################################
I tried:-
config EXT3COW_FS
#My ext3cow support
tristate "Ext3cow - journalling file system with
copy-on-write support"
help
The ext3cow file system is a time-shifting file system
implemented with copy-on-write .....
config JBD
tristate
depends on EXT3_FS || EXT3COW_FS
help
This is a generic journaling layer for block devices. It is
currently ..........
And this is giving problems.
Does anyone spot a mistake in this??
Thanks,
Harsha Srinath
--
Kernelnewbies: Help each other learn about the Linux kernel.
Archive: http://mail.nl.linux.org/kernelnewbies/
FAQ: http://kernelnewbies.org/faq/