Commit 39c330aa authored by Greg Banks's avatar Greg Banks Committed by Linus Torvalds

[PATCH] PATCH 2.5: kconfig spurious bool default value (2_3)

 Some CML1 rule contributors seem to think that the "bool" statement
 takes a third argument which is the default value.  It doesn't.
parent b16db7a3
...@@ -24,14 +24,14 @@ bool 'Kernel Debugger support' CONFIG_KWDB ...@@ -24,14 +24,14 @@ bool 'Kernel Debugger support' CONFIG_KWDB
# bool 'GSC/Gecko bus support' CONFIG_GSC y # bool 'GSC/Gecko bus support' CONFIG_GSC y
define_bool CONFIG_GSC y define_bool CONFIG_GSC y
bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO y bool 'U2/Uturn I/O MMU' CONFIG_IOMMU_CCIO
bool 'LASI I/O support' CONFIG_GSC_LASI y bool 'LASI I/O support' CONFIG_GSC_LASI
bool 'PCI support' CONFIG_PCI y bool 'PCI support' CONFIG_PCI
if [ "$CONFIG_PCI" = "y" ]; then if [ "$CONFIG_PCI" = "y" ]; then
bool 'GSCtoPCI/DINO PCI support' CONFIG_GSC_DINO y bool 'GSCtoPCI/DINO PCI support' CONFIG_GSC_DINO
bool 'LBA/Elroy PCI support' CONFIG_PCI_LBA n bool 'LBA/Elroy PCI support' CONFIG_PCI_LBA
fi fi
if [ "$CONFIG_PCI_LBA" = "y" ]; then if [ "$CONFIG_PCI_LBA" = "y" ]; then
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment