diff options
author | Holger Waechtler <devnull@localhost> | 2002-11-11 14:28:49 +0000 |
---|---|---|
committer | Holger Waechtler <devnull@localhost> | 2002-11-11 14:28:49 +0000 |
commit | 125004f2a9ce266aeca2b2031d7eaf4e1b803a27 (patch) | |
tree | fb89bca837fa27534245dd6a8b1f935267aceb44 /linux/drivers/media/dvb/dvb-core | |
parent | a59f4e50b6d830aa252e8b7c360ff12f7f574fb7 (diff) | |
download | mediapointer-dvb-s2-125004f2a9ce266aeca2b2031d7eaf4e1b803a27.tar.gz mediapointer-dvb-s2-125004f2a9ce266aeca2b2031d7eaf4e1b803a27.tar.bz2 |
new 2.5 style KConfig files
Diffstat (limited to 'linux/drivers/media/dvb/dvb-core')
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/Config.help | 13 | ||||
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/Config.in | 7 | ||||
-rw-r--r-- | linux/drivers/media/dvb/dvb-core/Kconfig | 17 |
3 files changed, 17 insertions, 20 deletions
diff --git a/linux/drivers/media/dvb/dvb-core/Config.help b/linux/drivers/media/dvb/dvb-core/Config.help deleted file mode 100644 index ad3c23d74..000000000 --- a/linux/drivers/media/dvb/dvb-core/Config.help +++ /dev/null @@ -1,13 +0,0 @@ -CONFIG_DVB_CORE - DVB core utility functions for device handling, software fallbacks etc. - - Say Y when you have a DVB card and want to use it. If unsure say N. - - -CONFIG_DVB_DEVFS_ONLY - Drop support for old major/minor device scheme and support only devfs - systems. This saves some code. - - If unsure say N. - - diff --git a/linux/drivers/media/dvb/dvb-core/Config.in b/linux/drivers/media/dvb/dvb-core/Config.in deleted file mode 100644 index 9c43c6498..000000000 --- a/linux/drivers/media/dvb/dvb-core/Config.in +++ /dev/null @@ -1,7 +0,0 @@ - -dep_tristate ' DVB Core Support' CONFIG_DVB_CORE $CONFIG_DVB - -if [ "$CONFIG_DVB_CORE" != "n" ]; then - dep_bool ' devfs only' CONFIG_DVB_DEVFS_ONLY $CONFIG_DVB_CORE $CONFIG_DEVFS_FS -fi - diff --git a/linux/drivers/media/dvb/dvb-core/Kconfig b/linux/drivers/media/dvb/dvb-core/Kconfig new file mode 100644 index 000000000..c264b069c --- /dev/null +++ b/linux/drivers/media/dvb/dvb-core/Kconfig @@ -0,0 +1,17 @@ +config DVB_CORE + tristate "DVB Core Support" + depends on DVB + help + DVB core utility functions for device handling, software fallbacks etc. + + Say Y when you have a DVB card and want to use it. If unsure say N. + +config DVB_DEVFS_ONLY + bool "devfs only" + depends on DVB_CORE=y && DEVFS_FS + help + Drop support for old major/minor device scheme and support only devfs + systems. This saves some code. + + If unsure say N. + |