Hi,

Under arch/cris/arch-v10/drivers we have a range of drivers 
e.g. an Ethernet driver and an IDE driver. When a user 
enables e.g. the Ethernet driver in the configuration we
also like the overall Ethernet support to be enabled 
automatically. This looks like this in Kconfig:

config ETRAX_ETHERNET
        bool "Ethernet support"
        depends on ETRAX_ARCH_V10
        help
          This option enables the ETRAX 100LX built-in 10/100Mbit Ethernet
          controller.

config NET_ETHERNET
        bool
        depends on ETRAX_ETHERNET
        default y

This works fine. But for some reason the same thing doesn't work
for CONFIG_IDE.

config ETRAX_IDE
        bool "ATA/IDE support"
        help 
          Enable this to get support for ATA/IDE.
          You can't use parallell ports or SCSI ports
          at the same time.

config IDE
        tristate
        depends on ETRAX_IDE
        default y

config BLK_DEV_IDE
        tristate
        depends on ETRAX_IDE
        default y

CONFIG_BLK_DEV_IDE gets defined but not CONFIG_IDE.

Does anyone has any ideas at all why this doesn't work?

Best Regards
/Mikael Starvik



-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
kbuild-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/kbuild-devel

Reply via email to