diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-06 08:31:39 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-06 08:31:39 -0300 |
commit | 706b9e26b99f3461c34fd3a397d73e0a0d60aafb (patch) | |
tree | a727bfd4dc73dc9f427647c97e8f9a9c495997c4 /linux | |
parent | 3ab3e879ca4a6d8a00f98d751af7890688b4aee4 (diff) | |
download | mediapointer-dvb-s2-706b9e26b99f3461c34fd3a397d73e0a0d60aafb.tar.gz mediapointer-dvb-s2-706b9e26b99f3461c34fd3a397d73e0a0d60aafb.tar.bz2 |
Kconfig: only open the customise menu if selected
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Instead of asking a lot of questions for the poor users, let's just hide
the frontend customise menu, if the user doesn't want to customise.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/frontends/Kconfig | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/linux/drivers/media/dvb/frontends/Kconfig b/linux/drivers/media/dvb/frontends/Kconfig index 4059d22a1..3205e302d 100644 --- a/linux/drivers/media/dvb/frontends/Kconfig +++ b/linux/drivers/media/dvb/frontends/Kconfig @@ -1,17 +1,21 @@ -menu "Customise DVB Frontends" - depends on DVB_CORE - config DVB_FE_CUSTOMISE bool "Customise the frontend modules to build" + depends on DVB_CORE default N help - This allows the user to deselect frontend drivers unnecessary - for their hardware from the build. Use this option with care - as deselecting frontends which are in fact necessary will result - in DVB devices which cannot be tuned due to lack of driver support. + This allows the user to select/deselect frontend drivers for their + hardware from the build. + + Use this option with care as deselecting frontends which are in fact + necessary will result in DVB devices which cannot be tuned due to lack + of driver support. If unsure say N. +if DVB_FE_CUSTOMISE + +menu "Customise DVB Frontends" + comment "Multistandard (satellite) frontends" depends on DVB_CORE @@ -507,3 +511,5 @@ config DVB_AF9013 help Say Y when you want to support this frontend. endmenu + +endif |