diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-02-03 03:04:00 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-03 08:32:03 -0800 |
commit | 3636641bb2c7a806c1099ca092ec8cd180063f9b (patch) | |
tree | cea6933f946da514169009e5e3b02c48de60aab1 /init | |
parent | 145046d31ecf9f4f1ba80c8d21225158f6d1738c (diff) | |
download | linux-stable-3636641bb2c7a806c1099ca092ec8cd180063f9b.tar.gz linux-stable-3636641bb2c7a806c1099ca092ec8cd180063f9b.tar.bz2 linux-stable-3636641bb2c7a806c1099ca092ec8cd180063f9b.zip |
[PATCH] don't allow users to set CONFIG_BROKEN=y
Do not allow people to create configurations with CONFIG_BROKEN=y.
The sole reason for CONFIG_BROKEN=y would be if you are working on fixing a
broken driver, but in this case editing the Kconfig file is trivial.
Never ever should a user enable CONFIG_BROKEN.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/init/Kconfig b/init/Kconfig index b9923b1434a2..8b7abae87bf9 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -31,19 +31,8 @@ config EXPERIMENTAL you say Y here, you will be offered the choice of using features or drivers that are currently considered to be in the alpha-test phase. -config CLEAN_COMPILE - bool "Select only drivers expected to compile cleanly" if EXPERIMENTAL - default y - help - Select this option if you don't even want to see the option - to configure known-broken drivers. - - If unsure, say Y - config BROKEN bool - depends on !CLEAN_COMPILE - default y config BROKEN_ON_SMP bool |