On Wednesday 11 June 2008, Randy Dunlap wrote:
quoted hunk
quoted
quoted
when CONFIG_INPUT=n and
# CONFIG_NEW_LEDS is not set
CONFIG_LEDS_CLASS=y
Does below patch help?
Nope, sorry, same build errors.
Ok this is odd, there is something very strange happening,
the relevant options in your config are:
CONFIG_RFKILL=y
CONFIG_RFKILL_INPUT=y
# CONFIG_INPUT is not set
CONFIG_INPUT_POLLDEV=y
CONFIG_RT2X00_LIB_RFKILL=y
From net/rfkill/Kconfig:
config RFKILL_INPUT
tristate "Input layer to RF switch connector"
depends on RFKILL && INPUT
So RFKILL_INPUT shouldn't not be enabled because it has
a clear dependency on the CONFIG_INPUT option.
From drivers/net/wireless/rt2x00/Kconfig
config RT2X00_LIB_RFKILL
boolean
depends on RT2X00_LIB
select RFKILL
select INPUT_POLLDEV
This doesn't mean that the rt2x00 behavior of selecting
CONFIG_INPUT_POLLDEV without dependencies on
CONFIG_INPUT was correct. But more that there is
a secondary bug elsewhere as well, and that is the one
which is causing the build failure now.. :S
Anybody with additional ideas? :)
Ivo