Forum Discussion

Altera_Forum's avatar
Altera_Forum
Icon for Honored Contributor rankHonored Contributor
21 years ago

USB support in uClinux 2.6

Hello,

I'm trying to compile version 2.6 of the Microtronix uClinux kernel to include support for USB. I'm working with the Microtronix Stratix development board which has a Cypress SL811 device on it. I can see the driver code for the SL811 down in the linux/drivers/usb source tree; however I don't see the options to enable these drivers in the kernel configuration screens. The only option available under USB support is "USB Gadget Support".

How do I enable support for the SL811 drivers in the kernel configuration?

Thanks.

Terry

1 Reply

  • Altera_Forum's avatar
    Altera_Forum
    Icon for Honored Contributor rankHonored Contributor

    I found the problem.

    Line 11 of the <linux-src>/drivers/usb/Kconfig file should be:

    depends on PCI || SA1111 || ARCH_OMAP1510 || ARCH_OMAP1610 || NIOS || NIOS2

    instead of

    depends on PCI || SA1111 || ARCH_OMAP1510 || ARCH_OMAP1610 || NIOS

    Also, line 75 of <linux-src>/drivers/usb/host/Kconfig should be:

    depends on (ARM && USB) || ((NIOS || NIOS2) && USB)

    instead of

    depends on (ARM && USB) || (NIOS && USB)

    --

    Terry