Messages in this thread Patch in this message |  | | Date | Sat, 19 Oct 2002 15:22:29 +0200 (CEST) | | From | Roman Zippel <> | | Subject | Re: [patch] Re: 2.5.44 - scripts/kconfig.tk error (xconfig fails) |
| |
Hi,
On Sat, 19 Oct 2002, Adrian Bunk wrote:
> A dep_bool without a dependency is wrong. The following patch fixes it:
It's not the only error. 'comment' doesn't accept dependencies (correct fix attached). (No, we have no new syntax yet. *sigh*)
bye, Roman Index: drivers/pnp/Config.in =================================================================== RCS file: /usr/src/cvsroot/linux-2.5/drivers/pnp/Config.in,v retrieving revision 1.1.1.3 diff -u -p -r1.1.1.3 Config.in --- drivers/pnp/Config.in 19 Oct 2002 11:36:15 -0000 1.1.1.3 +++ drivers/pnp/Config.in 19 Oct 2002 13:00:10 -0000 @@ -4,15 +4,17 @@ mainmenu_option next_comment comment 'Plug and Play configuration' -dep_bool 'Plug and Play support' CONFIG_PNP +bool 'Plug and Play support' CONFIG_PNP - dep_bool ' Plug and Play device name database' CONFIG_PNP_NAMES $CONFIG_PNP - dep_bool ' PnP Debug Messages' CONFIG_PNP_DEBUG $CONFIG_PNP +if [ "$CONFIG_PNP" = "y" ]; then + bool ' Plug and Play device name database' CONFIG_PNP_NAMES + bool ' PnP Debug Messages' CONFIG_PNP_DEBUG -comment 'Protocols' $CONFIG_PNP + comment 'Protocols' -if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then - dep_bool ' ISA Plug and Play support (EXPERIMENTAL)' CONFIG_ISAPNP $CONFIG_PNP - dep_bool ' Plug and Play BIOS support (EXPERIMENTAL)' CONFIG_PNPBIOS $CONFIG_PNP + if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then + bool ' ISA Plug and Play support (EXPERIMENTAL)' CONFIG_ISAPNP + bool ' Plug and Play BIOS support (EXPERIMENTAL)' CONFIG_PNPBIOS + fi fi endmenu |  |